为了让linux保存我们手动添加的静态路由,通常我们是编辑/etc/rc.local这个文件实现的,在这个文件末尾输入
route add -net|-host *.*.*.* netmask *.*.*.* gw *.*.*.*
在系统启动后自动去执行/etc/rc.local里的指令/脚本
这样做也许会出现系统莫名其妙的问题,所以给出以下保存静态路由的方法
1、针对Red Hat,Centos的方法:
编辑文件/etc/sysconfig/static-routes(若没有这个文件,在/etc/sysconfig/下vi static-routes或者touch static-routes后再编辑)
添加静态路由的格式为 any -net|-host *.*.*.* netmask *.*.*.* gw *.*.*.*
保存退出
service network restart
2、针对debian,ubuntu的方法
编辑文件/etc/network/interfaces,在文件末尾添加
up route add -net|-host *.*.*.* netmask *.*.*.* gw *.*.*.*
保存退出
/etc/init.d/networking restart
PS:也可以将需要添加路由的命令写入一个脚本,用chkconfig或者update-rc来添加到rc*.d目录实现开机自动添加所需静态路由
路由添加也可通过iproute2的工具实现,在此不做举例