当前位置: 技术问答>linux和unix
添加代理的问题
来源: 互联网 发布时间:2015-11-13
本文导语: 我运行下面命令添加代理,但是提示"SIOCADDRT: 网络不可达",而那个IP可以ping通,是怎么回事呢? 192.168.51.200是网关,我想把192.168.2.20这个代理加上,下面是我的操作: [root@localhost root]# route add -net 0.0.0.0 netmask 0.0...
我运行下面命令添加代理,但是提示"SIOCADDRT: 网络不可达",而那个IP可以ping通,是怎么回事呢?
192.168.51.200是网关,我想把192.168.2.20这个代理加上,下面是我的操作:
[root@localhost root]# route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.2.20
SIOCADDRT: 网络不可达
[root@localhost root]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.51.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 192.168.51.200 0.0.0.0 UG 0 0 0 eth1
谢谢大家
192.168.51.200是网关,我想把192.168.2.20这个代理加上,下面是我的操作:
[root@localhost root]# route add -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.2.20
SIOCADDRT: 网络不可达
[root@localhost root]# netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
192.168.51.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 192.168.51.200 0.0.0.0 UG 0 0 0 eth1
谢谢大家
|
没有到192.168.2.20的路由。
|
(如果是 HTTP 代理服务器)
# export http_proxy="192.168.2.20:8080"
(如果是 FTP 代理服务器)
# export ftp_proxy="ftp://proxy.gentoo.org:8080"
路由和代理是不同的设置
# export http_proxy="192.168.2.20:8080"
(如果是 FTP 代理服务器)
# export ftp_proxy="ftp://proxy.gentoo.org:8080"
路由和代理是不同的设置