博客文章除注明转载外,均为原创。转载请注明出处。
本文链接地址:http://blog.chinaunix.net/uid-31396856-id-5752460.html
简要Linux 静态路由的方法记录如下,以备查询:
1、添加默认网关,作为默认路由。
/etc/sysconfig/network里添加到末尾
方法:GATEWAY=
比如:
vi /etc/sysconfig/network-scripts/route-eth0
添加如下信息:
192.168.56.200/24 via 192.168.56.10
检查路由
route -n
2、配置静态路由文件
在/etc/rc.d/init.d/network配置文件中有这么几行:
# 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
也就是说,可以将静态路由加到/etc/sysconfig/static-routes 文件中。
如加入:
route add -net 10.1.1.0 netmask 255.255.255.0 gw 10.1.1.1
则static-routes的格式为
any net 10.1.1.0 netmask 255.255.255.0 gw 10.1.1.1
---the end
阅读(3157) | 评论(0) | 转发(0) |