Skip to content

Instantly share code, notes, and snippets.

@lovejavaee
Created September 6, 2018 13:42
Show Gist options
  • Save lovejavaee/91085af9c0f20416e16b1c11c29ab0f3 to your computer and use it in GitHub Desktop.
Save lovejavaee/91085af9c0f20416e16b1c11c29ab0f3 to your computer and use it in GitHub Desktop.
function proxy_off(){
unset http_proxy
unset https_proxy
unset socket_proxy
echo -e "Proxy Closed!"
}
function proxy_on() {
export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
export http_proxy="http://127.0.0.1:1080"
export https_proxy=$http_proxy
export socket_proxy="socks5://127.0.0.1:1080"
echo -e "Proxy Open!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment