| Webmin port masqurading. I've set this up using IPTables and in SuSE's KDE environment before. However I switched to Fedora9 and want to move on to using Webmin for managing such things.
Basically I need this address (Linux box):
192.168.0.100:8080
To forward to this address.
192.168.0.101:3389
(Yes, a remote desktop address)
It's inbound and outbound on eth0. I'm having some issues getting it to work on Webmin, I run into issues ranging from directly dropped packets, to just timeouts (I'm assuming I'm forwarding the packets incorrectly then).
So far I got: Code: Filter (Input):
Accept If protocol is TCP and destination port is 3389
NAT:
Packets before routing (PREROUTING)
Action Condition Move Add
Destination NAT If protocol is TCP and destination port is 3389
Outgoing packets (OUTPUT)
There are no rules defined for this chain.
Packets after routing (POSTROUTING)
Action Condition Move Add
Masquerade If output interface is eth0
|