export http_proxy=http://proxy.hostname.com:9999/ export http_proxy=http://192.168.0.10:9999/
[main] proxy=http://192.168.0.10:9999/
[main] proxy=http://xx.xx.xx.xx:8080 proxy_username=username proxy_password=password
rpm --httpproxy http://proxy.example.com --httpport 8080 -ivh http://xxxxxxx/xxxx.rpm
# curl --proxy http://proxy.example.com:8080 http://example.com/ # curl -U user01:password01 --proxy http://proxy.example.com:8080 http://example.com/
# curl -I --ntlm --user example.local\user01:password https://example.com/ # curl -u 'example.local\user01':password --ntlm https://example.com/
#proxy-user = "user:password" proxy = "http://proxy.example.com:8080"
export http_proxy=http://192.168.0.10:9999/ export https_proxy=http://192.168.0.10:9999/ wget http://www.yahoo.co.jp
export http_proxy="http://username:password@proxy.example.com:8080/" export ftp_proxy="http://username:password@proxy.example.com:8080/"
wget -e http_proxy=xx.xx.xx.xx:8080 http://example.com/ wget -e https_proxy=xx.xx.xx.xx:8080 https://example.com/
http_proxy=http://192.168.0.10:9999/ https_proxy=http://192.168.0.10:9999/
use_proxy = on proxy_user = test-user proxy_passwd = password http_proxy = http://192.168.0.5:8080 https_proxy = http://192.168.0.5:8080 ftp_proxy = http://192.168.0.5:8080
[global] http-proxy-host = 192.168.0.10 http-proxy-port = 8080
$ export http_proxy=http://xx.xx.xx.xx:8080 $ export https_proxy=$http_proxy
# git config --global http.proxy http://xx.xx.xx.xx:8080 # git config --global https.proxy http://xx.xx.xx.xx:8080 # cat ~/.gitconfig [http] proxy=http://192.168.0.10:8080 [https] proxy=http://192.168.0.10:8080
# perl -MCPAN -e shell cpan> o conf http_proxy <- check cpan> o conf ftp_proxy <- check cpan> o conf http_proxy http://xx.xx.xx.xx:9999 cpan> o conf ftp_proxy http://xx.xx.xx.xx:9999 cpan> o conf http_proxy <- check cpan> o conf ftp_proxy <- check cpan> o conf commit
appendix