我们的ifconfig现在看起来像这样:
eth0 link encap:Ethernet HarDWare Adresse 00:0c:29:1b:ab:6c inet Adresse:999.999.999.39 Bcast:999.999.999.63 Maske:255.255.255.192 inet6-Adresse: (...)/64 Gültigkeitsbereich:Verbindung UP broADCAST RUNNING MulTICAST MTU:1500 Metrik:1 RX packets:219336884 errors:0 dropped:0 overruns:0 frame:0 TX packets:223169420 errors:0 dropped:0 overruns:0 carrIEr:0 Kollisionen:0 Sendewarteschlangenlänge:1000 RX bytes:1971307659 (1.8 GiB) TX bytes:713489565 (680.4 MiB)eth0:1 link encap:Ethernet HarDWare Adresse (...) inet Adresse:999.999.999.40 Bcast:999.999.999.63 Maske:255.255.255.192 UP broADCAST RUNNING MulTICAST MTU:1500 Metrik:1
问题:所有传出流量(MysqL连接到外部数据库服务器,来自后缀的传出SMTP连接)现在似乎通过eth0:1,因此第二个(新)IP 999.999.999.40.
我们如何通过eth0,IP-adress 999.999.999.39强制所有传出流量离开?
路线输出:
[n1 ~ #] routeKernel-IP-RoutentabelleZIEl Router Genmask Flags Metric Ref Use Ifacelocalnet * 255.255.255.192 U 0 0 0 eth010.10.10.0 * 255.255.255.0 U 0 0 0 eth1default gateway4.XXX 0.0.0.0 UG 0 0 0 eth0default gateway4.XXX 0.0.0.0 UG 0 0 0 eth0
找到解决方案
谢谢你的提示,ip route是要走的路,现在它按照需要工作.
ip rule add from 999.999.999.39 table t1ip rule add from 999.999.999.40 table t2ip route del default via 999.999.999.1ip route add default 999.999.999.1 dev eth0 table t1ip route flush cache解决方法 我想你必须使用 route命令告诉系统如何路由数据包.
就像是 :
route add -net APACHE_VHOST_IP netmask 255.255.255.0 dev eth0:1
强制APACHE_VHOST_IP目的地的数据包使用eth0:1接口.
和
route add -net MysqL_SERVER_IP netmask 255.255.255.0 dev eth0
强制MysqL_SERVER_IP目标中的数据包使用eth0接口.
总结以上是内存溢出为你收集整理的linux – 将传出流量绑定到eth0而不是eth0:1全部内容,希望文章能够帮你解决linux – 将传出流量绑定到eth0而不是eth0:1所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)