Linux route 学习

[文章作者:行动者 本文版本:v1.0 最后修改:2007.11.29 转载请注明出处:http://yehaozi.cublog.cn]

一台主机想设个浮动ip的,最近刚学了启动脚本,嘿嘿,就写个吧。

[root@linux ~]# route [-nee] #查看主机路由
[root@linux ~]# route add [-net|-host] [网络或主机] netmask [mask] [gw|dev]
[root@linux ~]# route del [-net|-host] [网络或主机] netmask [mask] [gw|dev]
[root@linux ~]# route add default gw 192.168.10.30 #添加默认网关

——————————————————70network.sh
#!/bin/bash
# chkconfig: 35 99 15
# description: 70network
case "$1" in
start)
ifconfig eth0:1 192.168.70.154 netmask 255.255.255.0 up
    route add -net 10.10.10.0 netmask 255.255.255.0 gw 192.168.70.254
exit 0
;;
stop)
    route del -net 10.10.10.0 netmask 255.255.255.0 gw 192.168.70.254
    ifconfig eth0:1 down
;;
*)
echo $"Usage: $0 {start|stop}"
exit 1
esac
exit 0