old blog,

PortForwarding on Linux .. the easy way - (not through SSH)

Izhar Firdaus Izhar Firdaus Follow Support Jan 30, 2006 · 2 mins read
PortForwarding on Linux .. the easy way - (not through SSH)
Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

this info might not be tempting for home user with only one PC ... but it worth it for ppl who owns a few linux boxes in a large network ... there are many uses of portforwarding ... but i'll leave that to y'all to explore it ... in this thread, i'll explain 2 ways of doing portforwarding on linux ... i'll not cover portforwarding using iptables coz its quite hard to understand .. hehehe .. (i dun understand it oso) ...

OPTION 1: The easy and secure way : Using SSH portforwarding
this method is very easy ... however .. u'll need an SSH server running sumwhere in the network to create the tunnel ...

let assume the SSH server is called : mysshd.server
your pc is called : localhost
and the target PC is called : remote.system

if you want a port in localhost to forward its request to a port to remote.system use this command


$ ssh user@mysshd.server -L [localport]:remote.system:[remoteport]
** dont include the [ ]

this will open a port @ localhost:localport that redirects to remote.system:remoteport ...

if you want a port in mysshd.server to forward it requests to remote.system or another pc on the network ..


$ ssh user@mysshd.server -R [porttoopen]:remote.system:[targetport]
** dont include the [ ]

this will open a port @ mysshd.serverorttoopen that redirects to remote.system:targetport ...

NOTE: the requests are tunnelled through SSH protocol .. so .. its quite slower bcoz SSH encrypts all transactions .. but it is very secure this way ...

Minus point : this can only work to forward TCP connections ... it wont work for UDP

OPTION 2: Using Portfwd

theres a userspace program to do portforwarding on linux ... it is called portfwd .. u can get it from http://sourceforge.net/projects/portfwd/

extract it, compile, and install it ... by default the executable will be installed at /usr/local/sbin/portfwd ..

to forward a TCP connection ... create a plaintext file .. lets call it portfwd.cfg ... and insert these lines


tcp { [localport] { => remote.system:[remoteport] } }
** dont include the [ ]

then execute


# /usr/local/sbin/portfwd -c portfwd.cfg

this will open a TCP port @ localhost:localport to remote.system:remoteport

UDP forwarding is similar ... juz change tcp to udp in the config file ..

for more options .. read the manpages and the documentations

well ... think thats all .... enjoy!! ..

Written by Izhar Firdaus Follow Support
I'm a system architect, data engineer and developer advocate with passion in Free / Open Source software, entrepreneurship, community building, education and martial art. I take enjoyment in bridging and bringing together different FOSS technologies to help businesses and organizations utilize IT infrastructure to aid and optimize their business and organizational process.

Network FileSystem using SSHfs

isnt it neat having one PC with its mounts are scattered among multiple PCs's harddisks in the network?? ... lots of stuff can be don...

In old blog, Jan 30, 2006

« Previous Post

PortForwarding (again?) ... but this time .. through SOCKS Proxy!!!

i've juz discovered this yesterday ... by combining socksify ( http://www.inet.no/dante/ ) and portfwd ( http://portfwd.sourceforge.n...

In old blog, Feb 06, 2006

Next Post »