Created
July 4, 2011 15:45
-
-
Save maciej/1063510 to your computer and use it in GitHub Desktop.
Reloads tun and tap kernel extensions on OSX
This file contains hidden or 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
#!/bin/bash | |
# Reloads tun and tap kernel extensions on OSX | |
# Sometimes helps with VPN not being able to connect | |
kextunload -b foo.tun | |
kextunload -b foo.tap | |
kextload /Library/Extensions/tun.kext | |
kextload /Library/Extensions/tap.kext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment