开发者

Where do the Linux kernel router code replace the MAC address

开发者 https://www.devze.com 2023-01-30 00:06 出处:网络
The router will replace the source MAC address of the package it received with the address of the previous hop and the destination MAC address with the address of next hop.

The router will replace the source MAC address of the package it received with the address of the previous hop and the destination MAC address with the address of next hop.

The linux provides a functionality to worked as a router. My question is how the kernel code implement the function for mac address update during its package forwarding process? And where is this part of code

I try to find the codes in /net/ipv4, but can not found anything开发者_StackOverflow社区...


That is not what actually happens.

IP is not dependent on ethernet, so what happens is dependent upon the underlying protocol of the lower layer.

The same thing happens if it is a locally-originated IP packet, or if it is one which has been routed for another host.

Linux's IPv4 stack is not ethernet-dependent in any way, in fact lots of other link-layer protocols are supported by the kernel. IP being a WAN protocol, you can route between different underlying protocols. Some examples are

  • ppp, slip (serial lines)
  • PPTP, GRE (for tunnels, mostly VPNs)
  • IP over ATM
  • Token ring (mostly legacy, I think)
  • Loopback and dummy (for local communication only)
  • Wifi (although this is actually mostly identical to ethernet)

So what actually happens when routing IP frames from one ethernet interface to another is that the link-layer is stripped off completely, then a new link-layer is formed after routing. If the protocol were not ethernet, an appropriate link-layer packet for that protocol would be used instead.

So nobody "changes the MAC address", but rather, the link-layer packet is just completely rebuilt.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号