主要是想配置下, 流量从哪个网卡进, 从哪个网卡出, 现在发现:
同网段内的服务器互ping, TTL=63, 中间跳了一下,
64 bytes from 192.168.1.6: icmp_seq=2 ttl=63 time=0.597 ms
然后用traceroute看了下, 流量是先跑到网关, 再跑到目标主机的,
traceroute to 192.168.1.6 (xxx.xx.xx.6), 30 hops max, 60 byte packets
1 * * gateway (192.168.1.1) 3.238 ms
2 192.168.1.6 (192.168.1.6) 1.053 ms 1.021 ms *
配置是这样的:
本机运行centos7系统, 有两张网卡, 分别是:
192.168.1.5, 走电信出口, 网关192.168.1.1
10.2.1.5, 走移动出口, 网关10.2.1.1
策略路由部分:
ip route flush table chinatelcom
ip route flush table chinamobile
ip route add default via 192.168.1.1 dev enp2s0f0 src 192.168.1.5 table chinatelcom
ip rule add from 192.168.1.5 table chinatelcom
ip route add default via 10.2.1.1 dev enp7s0f1 src 10.2.1.5 table chinamobile
ip rule add from 10.2.1.5 table chinamobile
请问, 怎样让通网段的服务器间的通信, 不经过网关呢?
认证高级PHP讲师