Reference
@IT:Samba 3.0の全貌 改訂版[後編](1/3) - Active Directoryへの参加http://www.atmarkit.co.jp/flinux/special/samba3b/samba04.html
http_proxy = http://proxy.example.com:8080/
ftp_proxy = http://proxy.example.com:8080/
Acquire::http::Proxy "http://proxy.example.com:8080/";
Acquire::ftp::Proxy "ftp://proxy.example.com:8080/";
又は
Acquire {
Retries "0";
http {
Proxy "http://proxy.example.com:8080/";
}
ftp {
Proxy "ftp://proxy.example.com:8080/";
}
// comment
}
Acquire::http::Proxy "http://username:password@proxy.example.com:8080/";
Acquire::ftp::Proxy "ftp://username:password@proxy.example.com:8080/";
又は
Acquire {
Retries "0";
http {
Proxy "http://username:password@proxy.example.jp:8080/";
}
ftp {
Proxy "ftp://username:password@proxy.example.jp:8080/";
}
// comment
}