Set the following
proxy environment variables in CentOS server to use a proxy on the Linux
command-line if the internet connection is behind a proxy:
 
 
 
| 
[root@linuxcnf
  ~]# export {http,https,ftp}_proxy=http://<username>:<password>@<Proxy-Server-IP-Address>:<Proxy-Port> | 
For example:
| 
[root@linuxcnf
  ~]# export {http,https,ftp}_proxy=http://<username>:<password>@192.168.43.12:8080/ | 
Run the following
command to verify the variables:
| 
[root@linuxcnf
  ~]# env|grep proxy 
http_proxy=http://<username>:<password>@192.168.43.12:8080/ 
ftp_proxy=http://<username>:<password>@192.168.43.12:8080/ 
https_proxy=http://<username>:<password>@192.168.43.12:8080/ 
[root@linuxcnf
  ~]# | 
Now the proxy
configured!!!
 
 
This comment has been removed by the author.
ReplyDelete