A generic iptables tcp proxy


/ Published in: Bash
Save to your folder(s)

In the example below, a user may now ssh to $YourIP (1.2.3.4) on $YourPort (port 80) and they'll be transparently redirected to the $TargetIP (2.3.4.5) on the $TargetPort (22). The remote host ($TargetIP) will see the connection as coming from the server doing the forwarding ($YourIP).

Why bother with this at all? Why not just change the port that sshd listens on?

This is useful when a network filters outgoing connections based on destination ports and you don't control the host you want to connect to. If such a network only allowed outgoing connections to port 80, you'd be able to circumvent their filtering. However, if the firewall is doing stateful layer seven inspection, all bets are off. It's trivial to make this work for any other protocol, there is nothing special about ssh - it's just used as an example.

As a general note, this may invite abuse. It is basically a single hop protocol agnostic TCP proxy in kernel space. It's fast and useful though. You may want to restrict forwarding by source IP addresses if you're worried about letting anyone using you as a single hop bounce. I'll leave that as an exercise for the comments.

Posted by JacobAppelbaum on Tue 13 May 2008 on www.debian-administration.org


Copy this code and paste it in your HTML
  1. YourIP=1.2.3.4
  2. YourPort=80
  3. TargetIP=2.3.4.5
  4. TargetPort=22
  5.  
  6. iptables -t nat -A PREROUTING --dst $YourIP -p tcp --dport $YourPort -j DNAT \
  7. --to-destination $TargetIP:$TargetPort
  8. iptables -t nat -A POSTROUTING -p tcp --dst $TargetIP --dport $TargetPort -j SNAT \
  9. --to-source $YourIP
  10. iptables -t nat -A OUTPUT --dst $YourIP -p tcp --dport $YourPort -j DNAT \
  11. --to-destination $TargetIP:$TargetPort

URL: http://www.debian-administration.org/articles/595

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.