FreeBSD 上 proxy 的使用

因為每週固定要在 Firewall 後面躲一天,因此對外都要經過 proxy。如果你是使用 FreeBSD 要編 ports ,那麼你必需為 fetch 指令設定 proxy

HTTP_PROXY=xxx.xxx.xxx.xxx:ppp
export HTTP_PROXY

xxx 是 IP,而 ppp 是 port number。

如果要使用 mercurial/hg 或 git,那麼請設定

http_proxy=http://xxx.xxx.xxx.xxx:ppp/
export http_proxy

注意! 是小寫。其它用 Python httplib 的軟體都是這樣設。