On Sat, 2003-09-27 at 07:26, Asbjorn Hoiland Aarrestad wrote:
> How do I make my redhat 9 machine forward port 25 to another machine?

Iptables can do this:

iptables -t NAT -A POSTROUTING -p tcp --dport 25 -j DNAT --to-dest
ip.of.internal.machine

...and if you use multiple --to-dest directives it automatically does
round-robin load balancing.

--Brad


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to