当前位置: 技术问答>linux和unix
linux路由的设计?
来源: 互联网 发布时间:2016-09-18
本文导语: 我的本机的ip 地址:43.82.127.47 我在虚拟机上设计:route add -net 43.82.0.0 netmask 255.255.0.0 dev eth0 我再ping 43.82.127.47 from 192.168.24.128 icmp_seq=0 Destination Host Unreachable from 192.168.24.128 icmp_seq=1 Destination Host Unreachab...
我的本机的ip 地址:43.82.127.47
我在虚拟机上设计:route add -net 43.82.0.0 netmask 255.255.0.0 dev eth0
我再ping 43.82.127.47
from 192.168.24.128 icmp_seq=0 Destination Host Unreachable
from 192.168.24.128 icmp_seq=1 Destination Host Unreachable
from 192.168.24.128 icmp_seq=2 Destination Host Unreachable
from 192.168.24.128 icmp_seq=3 Destination Host Unreachable
......
不知道啥原因阿?
我在虚拟机上设计:route add -net 43.82.0.0 netmask 255.255.0.0 dev eth0
我再ping 43.82.127.47
from 192.168.24.128 icmp_seq=0 Destination Host Unreachable
from 192.168.24.128 icmp_seq=1 Destination Host Unreachable
from 192.168.24.128 icmp_seq=2 Destination Host Unreachable
from 192.168.24.128 icmp_seq=3 Destination Host Unreachable
......
不知道啥原因阿?
|
如果和你同一个网段的 没必要添加路由。
如果不同网段 你需要添加到那个网段的gateway
route add -net xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx dev eth0
route add -net xxx.xxx.xxx.xxx gw xxx.xxx.xxx.xxx
如果不同网段 你需要添加到那个网段的gateway
route add -net xxx.xxx.xxx.xxx netmask xxx.xxx.xxx.xxx dev eth0
route add -net xxx.xxx.xxx.xxx gw xxx.xxx.xxx.xxx
|
只听过可以使用openVPN之类的实现外网访问内网,供参考。