IPv6 Cisco Switch Router Advertisment: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 40: | Zeile 40: | ||
end | end | ||
</pre> | </pre> | ||
| + | =Wiresharkfilter= | ||
| + | *icmpv6.type == 133 or icmpv6.type == 134 or udp.port == 547 or udp.port == 546 | ||
Version vom 13. Januar 2024, 09:38 Uhr
Wir untersuchen das Router Advertisment
Die ICMPv6 Typen
- Typ 133: Router Solicitation (RS)
Gesendet von einem Host, um Router um Router Advertisement zu bitten.
- Typ 134: Router Advertisement (RA)
Gesendet von einem Router, um Netzwerkkonfigurationsinformationen an Hosts zu verteilen.
Wireshark Display Filter
- icmpv6.type == 133 or icmpv6.type == 134
Vlan 5 mit abgeschaltetem Router Advertisment
interface Vlan5 ip address 192.168.45.2 255.255.255.0 ipv6 address 2A02:24D8:71:2445::2/64 ipv6 nd ra suppress end
Vlan 5 mit akiven Router Advertisment
interface Vlan5 ip address 192.168.45.2 255.255.255.0 ipv6 address 2A02:24D8:71:2445::2/64 end
Vlan 5 mit DHCPv6 und DNS Delegation
DHCPv6
ipv6 dhcp pool DHCPv6-Pool address prefix 2A02:24D8:71:2445::/64 dns-server 2001:4860:4860::8888 domain-name linuggs.de
interface Vlan5 ip address 192.168.45.2 255.255.255.0 ipv6 address 2A02:24D8:71:2445::2/64 ipv6 dhcp server DHCPv6-Pool end
Wiresharkfilter
- icmpv6.type == 133 or icmpv6.type == 134 or udp.port == 547 or udp.port == 546