在linux里对多个MAC使用同一subnet的方法

在linux里对多个MAC使用同一subnet的方法,第1张

 

 

本文作者赛灵思工程师 Davis Zhang

 

这个问题是Linux Kernel TCP/IP Stack对于同一子网的IP处理方式决定的,严格来说是个Linux普遍问题,不在于AMD-Xilinx Device、IP或者Driver。

 

当eth0和eth1的IP 地址在一个subnet,TCP/IP stack会选取一个MAC作为主,eth0和eth1收到的ping包都会通过这个主MAC发送返回包,通常来说ifconfig先使能哪个MAC,它就是主MAC。比如eth0为主MAC,这个时候可以通过eth0的网线来ping eth1的IP,返回包也是直接通过eth0发送,就是说对eth1 IP的ping包不会在eth1收到,也不通过它发送,stack直接作出回应,并通过eth0发送。如果这个时候通过eth1的网线发送对eth1 IP的ping包,eth1可以收到,但是stack还是会通过eth0发送返回包,现象就是ping不通。

如果eth0和eth1的IP不在同一subnet,比如192.168.1.10/192.168.2.10,就没有这些问题。通常不建议在linux里对多个MAC使用同一subnet,甚至有些vendor禁止这样做。

https://access.redhat.com/soluTIons/30564
https://www.ibm.com/support/pages/node/6466713

如果确实需要使用同一subnet,可以参考下面的方法来重新设置路由。

//the below steps redirects packets meant to be output from eth0 to properly exit from eth1. 

 

//enable support for mulTIple rouTIng tables in kernel config. 

 

Kernel ConfiguraTIon 

 

 → Networking support → Networking options 

 

[*] IP: advanced route

 

[*] IP: policy routing 

 

CONFIG_IP_ADVANCED_ROUTER 

 

CONFIG_IP_MULTIPLE_TABLES 

 

 //type below command in linux console 

 

echo -ne 0 > /proc/sys/net/ipv4/conf/all/rp_filter 

echo -ne 0 > /proc/sys/net/ipv4/conf/eth0/rp_filterecho -ne 0 > /proc/sys/net/ipv4/conf/eth1/rp_filter

 

//For proper functionality i.e. ARP replies from eth1 to get generated when both eth0 and eth1 are in same subnet

echo -ne 0 > /proc/sys/net/ipv4/conf/all/arp_filterecho -ne 2 > /proc/sys/net/ipv4/conf/all/arp_ignoreecho -ne 0 > /proc/sys/net/ipv4/conf/eth0/arp_filterecho -ne 2 > /proc/sys/net/ipv4/conf/eth0/arp_ignoreecho -ne 0 > /proc/sys/net/ipv4/conf/eth1/arp_filterecho -ne 2 > /proc/sys/net/ipv4/conf/eth1/arp_ignore

 

//Create a table called "new_rt_table" and create a routing rule that says any packet with a mark equal to '1' gets routed according to the "new_rt_table"(can name it whatever you want) table. The file /etc/iproute2/rt_tables is the only source of table names on the system. Internally, routing tables have integer identifiers.

 

echo 1 new_rt_table >> /etc/iproute2/rt_tables 

ip rule add from all fwmark 1 table new_rt_table 

 

//setup the "new_rt_table" table to route the packets via eth1 

ip route add default dev eth1 table new_rt_table 

ip route show table new_rt_table 

 

//mark packets so that 'ip route' can route it through eth1 

iptables -F -t mangle 

iptables -t mangle -I OUTPUT -s-o eth0 -j MARK --set-mark 1

  审核编辑:汤梓红

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/dianzi/2711529.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-08-17
下一篇 2022-08-17

发表评论

登录后才能评论

评论列表(0条)

保存