Hello All, I am faced with a strange situation. All of the lan interfaces in a vlan are receiving too much traffic for two hours every morning. I captured the traffic and the traffic is tcp traffic between two servers on port 445. The traffic I am talking about is not netbios traffic but it is still getting received on all of the interfaces in the vlan on which those two servers reside. I have traced to the source of the traffic and it seems that it is Microsoft SCCM server. I have attached the screenshots of the packet capture and the statistics of that packet capture. Also I am capturing traffic in promiscuous mode but other traffic (traffic other than 445) between those two servers is not seen on every other host in that Vlan. Can somebody please help me… asked 10 Dec '15, 05:39 shivaavaya edited 16 Dec '15, 05:49 sindy |
One Answer:
After some out-of-band communication with the author of the question, the answer is that the flooding of non-participants of the tcp session in question is caused by use of Mircosoft's Network Load Balancing mechanism in the LAN. The packets which flood the non-participants look as follows:
(IP and MAC addresses manually anonymized) The destination MAC address is not a multicast one, but it is a "locally administered" one. The The overall functionality is such that there is a group of NICs which the administrator wants to participate in handling requests sent to a common IP address depending on their actual load, so they need to make the network deliver each request to all of them. Which one will actually serve a given request is their internal decision. To achieve that goal, the group responds to arp requests to the group IP address with the Microsoft seems to support use of multicast MAC address, instead of a unicast one, for the group IP. On more advanced switches, use of multicast MAC address allows to choose which ports should forward such traffic on egress and which not, but not every switch can do that and some of those which can have to spend extra CPU power on that. answered 10 Dec '15, 11:49 sindy edited 16 Dec '15, 13:10 |