Skip to content

Instantly share code, notes, and snippets.

@TimJDFletcher
Forked from donalod/OSXRoamingKnobs
Created October 30, 2016 15:51
Show Gist options
  • Save TimJDFletcher/54ad21e01773d71c14a45f105338d107 to your computer and use it in GitHub Desktop.
Save TimJDFletcher/54ad21e01773d71c14a45f105338d107 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