How do I specify an interface for multicast traffic? I need to connect to multicast group through vlan interface (tcpdump show traffic there) but I believe that IGMP request are sent throug eth0.

Should I add a route for multicast adresses?

link|improve this question
What distro are you using? – dunxd Aug 27 '10 at 10:54
Distro? He didn't even name the operating system. – al. Aug 27 '10 at 12:44
feedback

2 Answers

route add -net 224.0.0.0 netmask 240.0.0.0 dev vlan100

link|improve this answer
feedback

Here is a static config for Ubuntu
put in your /etc/network/interfaces files

auto vlan500
iface vlan500 inet static
address 192.168.X.X
netmask 255.255.X.X
vlan-raw-device ethX

link|improve this answer
feedback

Your Answer

 
or
required, but never shown