Last active
September 9, 2017 19:12
-
-
Save donalod/3e0885dcc5c786b8538e to your computer and use it in GitHub Desktop.
OSXRoamingKnobs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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