Di recente ho installato un nuovo Ubuntu Server 10.04 e ho notato che il mio server UDP non è più in grado di vedere i dati multicast inviati all'interfaccia, anche dopo essermi unito al gruppo multicast. Ho configurato esattamente lo stesso su altre due macchine Ubuntu 8.04.4 LTS e non c'è alcun problema a ricevere i dati dopo essermi unito allo stesso gruppo multicast.
La scheda Ethernet è una Broadcom netXtreme II BCM5709 e il driver utilizzato è:
b $ ethtool -i eth1
driver: bnx2
version: 2.0.2
firmware-version: 5.0.11 NCSI 2.0.5
bus-info: 0000:01:00.1
Sto usando smcroute per gestire le mie registrazioni multicast.
b$ smcroute -d
b$ smcroute -j eth1 233.37.54.71
Dopo essersi unito al gruppo ip maddr mostra la registrazione appena aggiunta.
b$ ip maddr
1: lo
inet 224.0.0.1
inet6 ff02::1
2: eth0
link 33:33:ff:40:c6:ad
link 01:00:5e:00:00:01
link 33:33:00:00:00:01
inet 224.0.0.1
inet6 ff02::1:ff40:c6ad
inet6 ff02::1
3: eth1
link 01:00:5e:25:36:47
link 01:00:5e:25:36:3e
link 01:00:5e:25:36:3d
link 33:33:ff:40:c6:af
link 01:00:5e:00:00:01
link 33:33:00:00:00:01
inet 233.37.54.71 <------- McastGroup.
inet 224.0.0.1
inet6 ff02::1:ff40:c6af
inet6 ff02::1
Fin qui tutto bene, posso vedere che sto ricevendo dati per questo gruppo multicast.
b$ sudo tcpdump -i eth1 -s 65534 host 233.37.54.71
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eth1, link-type EN10MB (Ethernet), capture size 65534 bytes
09:30:09.924337 IP 192.164.1.120.58848 > 233.37.54.71.15572: UDP, length 212
09:30:09.947547 IP 192.164.1.120.58848 > 233.37.54.71.15572: UDP, length 212
09:30:10.108378 IP 192.164.1.120.58866 > 233.37.54.71.15574: UDP, length 268
09:30:10.196841 IP 192.164.1.120.58848 > 233.37.54.71.15572: UDP, length 212
...
Posso anche confermare che l'interfaccia sta ricevendo pacchetti mcast.
b $ ethtool -S eth1 | grep mcast_pack
rx_mcast_packets: 103998
tx_mcast_packets: 33
Ora ecco il problema. Quando provo a catturare il traffico usando un semplice server UDP ruby ricevo zero dati! Ecco un semplice server che legge l'invio dei dati sulla porta 15572 e stampa i primi due caratteri. Funziona sui due server Ubuntu 8.04.4, ma non sul server 10.04.
require 'socket'
s = UDPSocket.new
s.bind("", 15572)
5.times do
text, sender = s.recvfrom(2)
puts text
end
Se invio un pacchetto UDP creato in ruby a localhost, il server lo riceve e stampa i primi due caratteri. Quindi so che il server sopra funziona correttamente.
irb(main):001:0> require 'socket'
=> true
irb(main):002:0> s = UDPSocket.new
=> #<UDPSocket:0x7f3ccd6615f0>
irb(main):003:0> s.send("I2 XXX", 0, 'localhost', 15572)
Quando controllo le statistiche del protocollo, vedo che InMcastPkts non aumenta. Mentre sugli altri server 8.04, sulla stessa rete, sono state ricevute alcune migliaia di pacchetti in 10 secondi.
b $ netstat -sgu ; sleep 10 ; netstat -sgu
IcmpMsg:
InType3: 11
OutType3: 11
Udp:
446 packets received
4 packets to unknown port received.
0 packet receive errors
461 packets sent
UdpLite:
IpExt:
InMcastPkts: 4654 <--------- Same as below
OutMcastPkts: 3426
InBcastPkts: 9854
InOctets: -1691733021
OutOctets: 51187936
InMcastOctets: 145207
OutMcastOctets: 109680
InBcastOctets: 1246341
IcmpMsg:
InType3: 11
OutType3: 11
Udp:
446 packets received
4 packets to unknown port received.
0 packet receive errors
461 packets sent
UdpLite:
IpExt:
InMcastPkts: 4656 <-------------- Same as above
OutMcastPkts: 3427
InBcastPkts: 9854
InOctets: -1690886265
OutOctets: 51188788
InMcastOctets: 145267
OutMcastOctets: 109712
InBcastOctets: 1246341
Se provo a forzare l'interfaccia in modalità promisc, nulla cambia.
A questo punto sono bloccato. Ho confermato che la configurazione del kernel ha il multicast abilitato. Forse ci sono altre opzioni di configurazione che dovrei controllare?
b $ grep CONFIG_IP_MULTICAST /boot/config-2.6.32-23-server
CONFIG_IP_MULTICAST=y
Qualche idea su dove andare da qui?
rp_filter
ed /proc/sys/net/ipv4/icmp_echo_ignore_broadcasts
e poi è iniziato a lavorare.