Project

General

Profile

Actions

Bug #1475

closed

UDP multicast sends on wrong NIC

Added by Junxiao Shi about 10 years ago. Updated about 10 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Faces
Target version:
Start date:
04/13/2014
Due date:
% Done:

100%

Estimated time:

Description

UDP multicast face for an NIC should send packets on the chosen NIC only, instead of onto all NICs.

Topology

 /----\
A      B
 \----/
  • Each host has two NICs.
  • A/eth0 and B/eth0 are on one VLAN.
  • A/eth1 and B/eth1 are on another VLAN.

Steps to reproduce:

  1. Start NFD on A and B.
  2. Execute nfd-status -f on A, find out the FaceId of UDP multicast faces.
  3. Invoke nfdc add-nexthop /Z $faceid on A, where $faceid is the FaceId for the UDP multicast face on eth1.
  4. Start ndnpingserver /Z on B.
  5. Execute ndnping -c 30 /Z on A.
  6. Invoke nfd-status -f on A and B.

Expected:

  • On host A, UDP multicast face on eth0 has 0 incoming Interests, 0 incoming Datas, 0 outgoing Interests, 0 outgoing Datas.
  • On host A, UDP multicast face on eth1 has 0 incoming Interests, 30 incoming Datas, 30 outgoing Interests, 0 outgoing Datas.
  • On host B, UDP multicast face on eth0 has 0 incoming Interests, 0 incoming Datas, 0 outgoing Interests, 0 outgoing Datas.
  • On host B, UDP multicast face on eth1 has 30 incoming Interests, 0 incoming Datas, 0 outgoing Interests, 30 outgoing Datas.

Actual:

  • On host A, UDP multicast face on eth0 has 0 incoming Interests, 30 incoming Datas, 0 outgoing Interests, 0 outgoing Datas.
  • On host A, UDP multicast face on eth1 has 0 incoming Interests, 30 incoming Datas, 30 outgoing Interests, 0 outgoing Datas.
  • On host B, UDP multicast face on eth0 has 30 incoming Interests, 0 incoming Datas, 0 outgoing Interests, 0 outgoing Datas.
  • On host B, UDP multicast face on eth1 has 30 incoming Interests, 0 incoming Datas, 0 outgoing Interests, 30 outgoing Datas.
Actions #1

Updated by Davide Pesavento about 10 years ago

From what I can see, it seems to be a problem on the receiver-side (A) when receiving Data packets. What do the Interests counters show? Does B receive Interests from both NICs?

Actions #2

Updated by Junxiao Shi about 10 years ago

  • Description updated (diff)

I executed the steps again, and I can confirm the problem exists for both Interests and Datas.

I don't know whether the problem is on sender or on receiver.

Both runs are executed on ONL. eth1 refers to the experiment NIC, eth0 refers to the control NIC.

Actions #3

Updated by Giulio Grassi about 10 years ago

It seems that the join_group option doesn't work as I expected: even if the local endpoint (the IP address of the network interface) is specified, the socket is able to receive all the incoming packets for that specific multicast group, no matter from which interface they arrived. The join seems just to enable a specific device to receive multicast packet, but then the kernel dispatches the packet to all the socket that joined the group(this is my guess, I haven't found any documentation that completely clarifies this point).
So far, the only solution that I've found is to use the SO_BINDTODEVICE option. This solve the issue, but the problem is that works only on Linux and it requires the name of the interface.

I'll keep looking for a cross-platform solution

Actions #4

Updated by Giulio Grassi about 10 years ago

I didn't find any better solution than the SO_BINDTODEVICE option. But I found out that this problem seems to occur only on linux system. I tried on mac os and the multicast face works properly. Therefore I will simply add the SO_BINDTODEVICE option inside an #if defined(__linux__) . But to do that I need the interface name. Since the face manager should already have this information, it could pass the name of the interface to the udp-factory when it's creating the multicast face

Actions #5

Updated by Junxiao Shi about 10 years ago

  • Tracker changed from Task to Bug
Actions #6

Updated by Alex Afanasyev about 10 years ago

  • Status changed from New to Code review
  • % Done changed from 0 to 100
Actions #7

Updated by Alex Afanasyev about 10 years ago

  • Status changed from Code review to Closed
Actions

Also available in: Atom PDF