Internet Control Message Protocol by Ciro Santilli 35 Updated +Created
Test server by Ciro Santilli 35 Updated +Created
Star Trek character by Ciro Santilli 35 Updated +Created
Wireshark capture filter by Ciro Santilli 35 Updated +Created
Capture by instead:
sudo wireshark -f http -k
sudo wireshark -f icmp -k
Filter by both protocol and host:
sudo wireshark -f 'host 192.168.1.102 and icmp' -k
For application layer capture filtering, the best you can do is by port:
sudo wireshark -f 'tcp port 80'
There is an http filter but only for as a wireshark display filter
Wireshark display filter by Ciro Santilli 35 Updated +Created
tshark by Ciro Santilli 35 Updated +Created
Sample usage:
sudo tshark -f 'host 192.168.1.102
This produces simple one liners for each request.
What you likely want is the -V option which fully disassembles each frame much as you can do in the GUI Wireshark:
sudo tshark -V -f 'host 192.168.1.102
Bitcoin inscription by Ciro Santilli 35 Updated +Created
Bitcoin transaction by Ciro Santilli 35 Updated +Created
Bitcoin block by Ciro Santilli 35 Updated +Created
Work by Gwern Branwen by Ciro Santilli 35 Updated +Created
ICMP runs on top of IP by Ciro Santilli 35 Updated +Created
This can be seen with Wireshark very clearly for example, just make a ping and disssemble it.
Find computer IP with the ip CLI tool by Ciro Santilli 35 Updated +Created
History of Silk Road by Ciro Santilli 35 Updated +Created
Silk Road bibliography by Ciro Santilli 35 Updated +Created
Spock by Ciro Santilli 35 Updated +Created
Ciro's nc HTTP test server by Ciro Santilli 35 Updated +Created
As per stackoverflow.com/a/52351480/895245 our standard test setup is:
while true; do
  resp=$"$(date): hello\n"
  len="$(printf '%s' "$resp" | wc -c)"
  printf "HTTP/1.1 200 OK\r\nContent-Length: $len\r\n\r\n${resp}\n" | nc -Nl 8000
done
List of bitcoin blocks by Ciro Santilli 35 Updated +Created

There are unlisted articles, also show them or only show them.