多个网络接口 ubuntu

多个网络接口 ubuntu

我有一台Ubuntu服务器,并且安装了Apache Web服务器,以及两个物理网卡,我想用两个固定IP从外部连接到Web服务器,但在默认模式下,网卡对来自外部的一个请求做出一个响应,这个问题在路由表中得到了解决,但是通过关闭和打开服务器或网卡,设置被清除了,谢谢你的帮助。

route static ok
echo 700 adsl1 >> /etc/iproute2/rt_tables
 echo 600 adsl2 >> /etc/iproute2/rt_tables
 ip route add 192.168.1.0/24 dev enp1s0 src 192.168.1.130 table adsl1
 ip route add default via 192.168.1.1 table adsl1
 ip route add 192.168.0.0/24 dev wlp2s0 src 192.168.0.189 table adsl2
 ip route add default via 192.168.0.1 table adsl2
 ip route add 192.168.1.0/24 dev enp1s0 src 192.168.1.130
 ip route add 192.168.0.0/24 dev wlp2s0 src 192.168.0.189
 ip rule add from 192.168.1.130 table adsl1
 ip rule add from 192.168.0.189 table adsl2

相关内容