所谓永久路由就是在重启服务器设备或者网卡,路由表都一直存在
1.window:
eg:
route add -p 192.168.0.0 mask 255.255.0.0 192.168.31.254
批量方式,新建文本并修改后缀为bat,然后双击运行
2.centos
eg:
route add -net 1.12.0.0/14 gw x.x.x.x
批量方式,在 /etc/sysconfig/新建名为“static-routes” 文件,文件内容为:
#add non interface-specific static-routes.
if [ -f /etc/sysconfig/static-routes ]; then
grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
/sbin/route add -$args
done
fi
any net 1.12.0.0/14 gw x.x.x.x
any net 1.24.0.0/13 gw x.x.x.x
3.debian
eg:
sudo vim /etc/network/interfaces 末尾追加以下:
route add -net 1.12.0.0/14 gw x.x.x.x
批量方式就是在/etc/network/interfaces文件末尾累加就行
附件是全国网通路由表,把网关(x.x.x.x)修改为自己的网关就可以直接使用
windows 修改文件名为windows.bat并双击运行
centos 把文件复制到/etc/sysconfig/目录下,并修改文件名为static-routes
debian copy文件的内容并编辑/etc/network/interfaces 末尾追加
本文转自viong 51CTO博客,原文链接:http://blog.51cto.com/viong/1183853,如需转载请自行联系原作者