LinuxUsing ProxyThis guide demonstrates how to set environment variables to route network traffic through HTTP and SOCKS5 proxies using specific IP addresses and ports. It includes instructions for both direct and SOCKS5 proxy configurations.1 2 export http_proxy=http://127.0.0.1:1080 export https_proxy=http://127.0.0.1:1080 1 2 export http_proxy="socks5://127.0.0.1:1080" export https_proxy="socks5://127.0.0.1:1080" 1 export ALL_PROXY=socks5://127.0.0.1:1080