|
发表于 2002-11-28 12:02:08
|
显示全部楼层
用route 命令向内核路由表添加缺省路由
例如..我的计算机有两块网卡..一块是连入宿舍自己的ADSL share(192.168.1.3)上网,另一块是接入学校的网络(172.18.1.2)我配置这两块网卡的命令是如下的:
ifconfig eth0 192.168.1.3 up
ifconfig eth1 172.18.1.2 netmask 255.255.192.0 up (这掩码是学校的垃圾网管干的鸟事)
route add -net default gw 192.168.1.1 netmask 0.0.0.0 metric 1
(我是用宿舍的adsl share 上网...所以adsl modem(192.168.1.1)是我的缺省网关)
route add -net 172.17.0.0 netmask 255.255.0.0 gw 172.18.0.254
(学校的另一个子网是172.18.0.0(因为我是在172.18.0.0)要通过学校的网关172.18.0.254)
这些东西我都是放到启动脚本里的..这都是旧的配置方式了....现在都统一用ip这个命令配置..可惜我还不熟悉.....
[root@sleeve etc]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 0 0 0 eth0
172.18.0.0 * 255.255.192.0 U 0 0 0 eth1
172.17.0.0 172.18.0.254 255.255.0.0 UG 0 0 0 eth1
127.0.0.0 * 255.0.0.0 U 0 0 0 lo
default 192.168.1.1 0.0.0.0 UG 0 0 0 eth0 |
|