Question: How to find out how many ICMP Echo requests/replies did this node receive from 192.168.200.1 using a pcap file. from scapy.all import * packets =
How to find out how many ICMP Echo requests/replies did this node receive from 192.168.200.1 using a pcap file.
from scapy.all import * packets = rdpcap('example.pcap')
packets[ICMP].summary()
then what?

Ether/ IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.100.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.100.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.200.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.200.2 echo-reply 0 / Raw Ether / IP / ICMP 192.168.200.2 > 192.168.100.1 echo-request 0 / Raw Ether / IP / ICMP 192.168.100.1 > 192.168.200.2 echo-reply 0 / Raw
Step by Step Solution
3.41 Rating (157 Votes )
There are 3 Steps involved in it
To find out how many ICMP Echo requests and replies the node received from 1921682001 you can filter ... View full answer
Get step-by-step solutions from verified subject matter experts
