Ajit Bhanot, Gurgaon wrote:
I am trying to use the wget function on Cygwin. The internet access is through a proxy server. Can I configure cygwin to access the internet through the proxy to download the ecos installation files?
You can configure wget by setting following parameters in your ~/.wgetrc file
# You can set the default proxies for Wget to use for http and ftp. # They will override the value in the environment. http_proxy = http://proxy:3128/ ftp_proxy = http://proxy:3128/ proxy_user=usrename proxy_passwd=password
# If you do not want to use proxy at all, set this to off. use_proxy = on
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

