Skip to content

Instantly share code, notes, and snippets.

@donalod
Last active September 9, 2017 19:12
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save donalod/3e0885dcc5c786b8538e to your computer and use it in GitHub Desktop.
Save donalod/3e0885dcc5c786b8538e to your computer and use it in GitHub Desktop.
OSXRoamingKnobs
# Via @srynearson tweet https://twitter.com/Srynearson/status/534421250261942272 #kudos Bill Mullady
# Re: http://community.arubanetworks.com/t5/Unified-Wired-Wireless-Access/Mac-OS-X-Lion-MacBook-Air-issue/m-p/113885#M24396
sudo defaults read /Library/Preferences/com.apple.airport.opproam
Password:
{
deltaRSSI = 10;
disabled = 0;
useBonjour = 0;
useBroadcastBSSID = 1;
}
# Then disable the aggressive roaming if need be i.e. if client stationary etc. (be careful if roaming required!):
sudo defaults write /Library/Preferences/com.apple.airport.opproam disabled -bool true
sudo defaults read /Library/Preferences/com.apple.airport.opproam
{
deltaRSSI = 10;
disabled = 1;
useBonjour = 0;
useBroadcastBSSID = 1;
}
# And/or change the delta RSSI (after re-enabling opportunistic roaming):
sudo defaults write /Library/Preferences/com.apple.airport.opproam disabled -bool false
sudo defaults write /Library/Preferences/com.apple.airport.opproam deltaRSSI -integer 15
sudo defaults read /Library/Preferences/com.apple.airport.opproam
{
deltaRSSI = 15;
disabled = 0;
useBonjour = 0;
useBroadcastBSSID = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment