1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| export http_proxy=http://127.0.0.1:7890 export https_proxy=http://127.0.0.1:7890 export all_proxy=socks5://127.0.0.1:7891 export no_proxy="127.0.0.1,localhost,*.local.com"
export http_proxy=http://[::]:7890 export https_proxy=http://[::]:7890 export all_proxy=socks5://[::]:7891 export no_proxy="127.0.0.1,localhost"
export no_proxy="localhost,127.0.0.0/8,*.local" export NO_PROXY="localhost,127.0.0.0/8,*.local" export all_proxy=socks://127.0.0.1:7891/ export ALL_PROXY=socks://127.0.0.1:7891/ export http_proxy=http://127.0.0.1:7890/ export HTTP_PROXY=http://127.0.0.1:7890/ export ftp_proxy=http://127.0.0.1:7890/ export FTP_PROXY=http://127.0.0.1:7890/ export https_proxy=http://127.0.0.1:7890/ export HTTPS_PROXY=http://127.0.0.1:7890/
env | grep proxy
unset no_proxy unset NO_PROXY unset all_proxy unset ALL_PROXY unset http_proxy unset HTTP_PROXY unset ftp_proxy unset FTP_PROXY unset https_proxy unset HTTPS_PROXY
|