Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 6934 - Proxy authentication
Summary: Proxy authentication
Status: RESOLVED INVALID
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Unclassified (show other bugs)
Hardware: All Linux
: High normal
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-23 09:34 UTC by Cory Watson
Modified: 2011-10-30 22:21 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Cory Watson 2002-08-23 09:34:26 UTC
The proxy I'm forced to reside behind at work _requires_ authentication.  I've 
seen proggies like lynx support this by adding a 
'username:password@proxy_host:port', or something to that effect.  I can't 
rsync without it! ;)
Comment 1 Martin Holzer (RETIRED) gentoo-dev 2002-08-26 08:27:51 UTC
i've this problem too.
i've solved this as follown

set up a box, installed squid on it
here's the config (squid 2.4.6)
cache_peer 192.168.1.1 parent 8080 0 login=netzxy:oidzuxe default no-query no-
digest no-digest proxy-only

(192.168.1.1 = ip of proxy
8080 = port of proxy
netzxy:oidzuxe = nt User:password

acl gentoo src 10.70.3.251/255.255.255.255
http_access allow gentoo
miss_access allow all
never_direct allow all
prefer_direct off

and added the proxy in the wgetrc 
http_proxy = http://10.70.3.203:3128/
ftp_proxy = http://10.70.3.203:3128/

works fine for me!

Comment 2 Cory Watson 2002-08-26 08:48:35 UTC
It's a microsoft proxy.  The proxy auth works with Moz, Konq, and Links, but 
ermerge (wget actually, I guess) spews: 
 
connecting to inphna-proxy1.inphact.com[192.168.10.171]:80... connected. 
Proxy request sent, awaiting response... 407 Proxy authentication required 
08:42:07 ERROR 407: Proxy authentication required. 
 
 
Comment 3 Martin Holzer (RETIRED) gentoo-dev 2002-08-26 08:54:29 UTC
install squid and go through localhost over squid to the parentproxy (your nt)
Comment 4 SpanKY gentoo-dev 2002-10-21 00:38:39 UTC
whats the status ?