Created
April 2, 2013 17:03
-
-
Save efeminella/5294016 to your computer and use it in GitHub Desktop.
Kill Cisco VPN process (useful for which would otherwise require a system restart).
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
function killvpn() { | |
ps -ef | grep racoon | grep -v grep | awk '{print $2}' | xargs kill -9 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment