-
Recent Posts
Tags
Recent Comments
- Bzdashek Zapadlovsky on Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04
- Lucas van Lierop on Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04
- Dennis Gray on Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04
- ssm on Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04
- Alfred Nutile on Installing PHP 5.3.3/5.3.4/5.3.5 on Ubuntu 10.04
Archives
Blogroll
Meta
Monthly Archives: March 2014
Live dump of HTTP request/response headers
Run on the machine in question: live HTTP response headers tcpdump -v -n -S -s 0 -A ‘tcp src port 80’ live HTTP request headers tcpdump -v -n -S -s 0 -A ‘tcp dst port 80’ In case of nginx … Continue reading
Making an SSH tunnel to a third machine behind the middle one
ssh -L 8080:host3:80 -N user@host2 Then you can use localhost:8080 to open host2:80