Para redireccionar tráfico de un puerto a otro de una forma sencilla he usado el proyecto tcptunnel:
http://www.vakuumverpackt.de/tcptunnel/
Se instala muy fácil:
# wget http://www.vakuumverpackt.de/tcptunnel/tcptunnel-0.5.tar.gz # tar -xzvf tcptunnel-0.5.tar.gz # cd tcptunnel-0.5 # ./configure --install-dir=/usr/local/bin # make # make install
Y con una sencilla línea se redirige el tráfico:
tcptunnel --local-port=80 --remote-port=8080 --remote-host=127.0.0.1 --stay-alive
0 comentarios