Note: The archives category content is an automatically generated focus channel and does not neccessarily reflect the opinions of this blog. No responsibility is taken for the external links presented here, follow at your own discretion.
The archives content is never scraped from sites - but an abstract obtained from search engines.
| Problem |
Solution |
Example |
Reference |
Recommended |
The command in the example will port forward, from the local box - any traffic sent to port 8081, will be sent to port 8080 on www.example.com:
|
|
| Problem |
Solution |
Example |
Reference |
Recommended |
ssh -x -g -L 8081:www.example.com:8080 localhost Don't forget, if you need to open LINUX (FC4) firewall, do this (as root): vi /etc/sysconfig/iptables # add following line then save, exit -A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 8081 -j ACCEPT /etc/init.d/iptables restart
|
Leave a Reply