On Feb 9, 2008 1:53 PM, Mehul Ved mehul.n.ved@gmail.com wrote:
Maybe this http://www.fedoraforum.org/forum/showthread.php?s=&threadid=742 ?
Thanks! This reply (#3) seems to have a workable solution: http://www.fedoraforum.org/forum/showpost.php?s=75534c851d3b94ed670ede251e80...
Reproduced here:
Better answer - use /etc/profile.d/proxy.[csh,sh] ________________________________
create the following files in /etc/profile.d, and then this will work in *any* shell for *any* user of the system
#proxy.sh export http_proxy=http://host.com:port/ export ftp_proxy=http://host.com:port/ export no_proxy=.domain.com export HTTP_PROXY=http://host.com:port/ export FTP_PROXY=http://host.com:port/
#proxy.csh setenv http_proxy http://host.com:port/ setenv ftp_proxy http://host.com:port/ setenv no_proxy .domain.com setenv HTTP_PROXY http://host.com:port/ setenv FTP_PROXY http://host.com:port/