Tag Archives: yum

Setting Proxy in Linux

Through command line export http_proxy=http://proxyhost:port export https_proxy=http://proxyhost:port export ftp_proxy=http://127.0.0.1:3128 With authentication export http_proxy=http://user:password@host:port/ export https_proxy=http://user:password@host:port/ If the password is having special characters use the hex key code instead. Eg: If password is P@ssword use P%40ssword. %40 is the hex keycode … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment