Hallo,
Die libwww von Perl kann das nicht.
Hmm, nach
<cite src="perldoc lwpcook">
Some proxies also require that you send it a username/password in order to let requests through. You should be able to add the required header, with something like this:
use LWP::UserAgent;
$ua = LWP::UserAgent->new;
$ua->proxy(['http', 'ftp'] => 'http://proxy.myorg.com');
$req = HTTP::Request->new('GET',"http://www.perl.com";);
$req->proxy_authorization_basic("proxy_user", "proxy_password");
$res = $ua->request($req);
print $res->content if $res->is_success;
</cite>
sollte es schon funktionieren. Und ich habe das auch schon ab und zu gebraucht, um an einem Squid vorbei zu kommen.
Grüße
Klaus