Dmitry Sorokin wrote:
> Should it only bounce TCP or UDP as well? If UDP, then none of the bounce
> utilities support that for now.
>
>
Dunno about this bouncing thing, but on Linux I'd do a NAT rule like:
iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -d 192.168.1.0/24 -j
SNAT --to 192.168.1.1
(where 192.168.1.1 is the gateway)
This rule would work as PREROUTING would deal with the 1:1 NAT mappings
or port forwardings or whatever.
Maybe it's this easy on xBSD? Maybe I don't understand the problem? |