DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Http Debugging With Tshark
Very useful for http debugging(tshark is part of wireshark):
# tshark -i eth0 -F visual -f "tcp port 80" -p -R http.request -N mntC
In detail: -i interface -F display format -f tcpdump filter expression -p deactivates promiscuous mode -R wireshark display filter expression -N name resolve options





