Wireshark Activity

Activity 1 - Capture Network Traffic

CMD Task

C:\Users\rahmati>ping 8.8.8.8

Pinging 8.8.8.8 with 32 bytes of data:
Reply from 8.8.8.8: bytes=32 time=235ms TTL=115
Reply from 8.8.8.8: bytes=32 time=233ms TTL=115
Reply from 8.8.8.8: bytes=32 time=231ms TTL=115
Reply from 8.8.8.8: bytes=32 time=230ms TTL=115

Ping statistics for 8.8.8.8:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 230ms, Maximum = 235ms, Average = 232ms

C:\Users\rahmati>

Display Filter

ip.addr == 8.8.8.8

  • Observe that the Packet List Pane is now filtered so that only traffic to (destination) or from (source) IP address 8.8.8.8 is displayed.

Activity 2 - Capture Local IPv4 Traffic

C:\Users\rahmati>ping <default gateway address>

Display Filter

icmp

  • Observe that the Packet List Pane is now filtered so that only traffic to (destination) or from (source) IP address 8.8.8.8 is displayed.

Last updated