码迷,mamicode.com
首页 > 其他好文 > 详细

阿里云 经典网络使用ClassicLink连接到专用网络后,192.168网段需要添加路由

时间:2017-09-14 21:32:39      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:5.0   专用   des   路由表   ace   gate   net   gateway   使用   

配置后,专用网络中的机器Ping不通经典网络,

查帮助说192.168网段需要手动添加路由表。

抓包能在经典网络中收到专用网络中过来的数据包,但回复的数据包不能正确发出去。

 

先用 route -n 查看当前路由,

10.0.0.0        10.116.207.247  255.0.0.0       UG    0      0        0 eth0
10.116.200.0    0.0.0.0         255.255.248.0   U     0      0        0 eth0
100.64.0.0      10.116.207.247  255.192.0.0     UG    0      0        0 eth0
172.16.0.0      10.116.207.247  255.240.0.0     UG    0      0        0 eth0

根据示例添加一条

route add -net 192.168.0.0/16 gw 10.116.207.247

再用 route -n 查看

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
10.0.0.0        10.116.207.247  255.0.0.0       UG    0      0        0 eth0
10.116.200.0    0.0.0.0         255.255.248.0   U     0      0        0 eth0
100.64.0.0      10.116.207.247  255.192.0.0     UG    0      0        0 eth0
172.16.0.0      10.116.207.247  255.240.0.0     UG    0      0        0 eth0
192.168.0.0     10.116.207.247  255.255.0.0     UG    0      0        0 eth0

然后专用网络中的机器就可以Ping通经典网络中的机器了。

阿里云 经典网络使用ClassicLink连接到专用网络后,192.168网段需要添加路由

标签:5.0   专用   des   路由表   ace   gate   net   gateway   使用   

原文地址:http://www.cnblogs.com/aozima/p/7522379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!