手动设置服务器的路由
route add -net 192.168.4.0/24 gw 192.168.4.1 dev eth0
注意:手动添加的路由,服务器重启后不生效;可以把上面的语句添加到开机自启动文件中/etc/rc.local;
vim /etc/network/interfaces
auto eth0
iface eth0 inet static
address 61.129.111.222
netmask 255.255.255.248
gateway 61.129.111.221
auto eth1
iface eth1 inet static
address 192.168.10.144
netmask 255.255.255.0
gateway 192.168.10.254
本文详细介绍了如何手动设置服务器路由,包括使用routeadd命令添加静态路由,并将其添加到开机自启动文件中以确保服务器重启后仍能生效。同时,展示了如何通过编辑network interfaces文件来配置不同接口的静态IP地址。
2000

被折叠的 条评论
为什么被折叠?



