Linux中如何配置双网卡双网关路由表
在Linux中配置双网卡双网关路由表,需要编辑/etc/network/interfaces文件,并添加以下内容:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
gateway 192.168.0.1
auto eth1
iface eth1 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
然后使用命令“route add -net 192.168.1.0 netmask 255.255.255.0 gw 192.168.1.1”将网关192.168.1.1添加到路由表中,使用命令“route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.0.1”将网关192.168.0.1添加到路由表中。
最后,使用命令“/etc/init.d/networking restart”重启网络服务,使配置生效。
相关文章