TCPDUMP Cheatsheet
Ein Cheatsheet für tcpdump, vor allem Filter-Ausdrücke.
ICMP6 Router Advertisement
tcpdump -n -i eth0 icmp6 and ip6[40] == 134
ICMP6 Neightbour Solicits
tcpdump -n -i eth0 icmp6 and ip6[40] == 135
ICMP6 Neightbour Advertisements
tcpdump -n -i eth0 icmp6 and ip6[40] == 136
ICMP6 Neighbour Discoveries fuer eine bestimmte IP
Filtern nach den letzten 4 Byte der IP (hier 0xfe69343f
)
icmp6 and 'icmp6[20:4] == 0xfe69343f'