04 Flashcards
What filter gives me the ethernet layers arp traffic?
eth.type == 08 06
What is an ICMPv6 Type 0x80 message?
Echo request
What filter gives me the ethernet layers ipv4 traffic?
eth.type == 08 00
What filter gives me the ethernet layers ipv6 traffic?
eth.type == 86 dd
What filter will give me all of the arp requests/replies?
arp.opcode == 1 (requests)
arp.opcode == 2 (reply)
What filter will give me the source ip address of ipv4 within an arp header?
arp.src.proto_ipv4 == “”
What filter will show me all ipv4 packets with the more fragments flag turned on?
ip.flags.mf==1
What filter will show me all ipv4 packets with the offset turned on?
ip.frag_offset>0
What command will give me all ipv6 traffic with the next protocol being UDP?
ipv6.nxt == 0x11
What command will give me all ipv6 traffic with the next protocol being TCP?
ipv6.nxt == 0x06
What command will give me all ipv6 fragmentation traffic
ipv6.nxt == 0x2c
What command will give me all ipv6 traffic with the next protocol being ICMPv6?
ipv6.nxt == 0x3a
What command will show me all icmpv4 informational traffic?
icmp.type in {8 0}
What command will show me all icmpv4 error traffic?
icmp.type in {3 5 11}
What is this icmpv6 types?
128
129
133
134
135
136
137
Echo Request
Echo Reply
Router solicitation
Router advertisement
Neighbor solicitation
Neighbor advertisement
Redirect message