does anyone what is the ipfw equivalent line for this one? rdr fxp0 external_ip_addres/32 port 69 -> 192.168.66.3 port 69 udp i use a tftpd server behind a nat and i want to redirect all trafic coming from internet on port 69 to the tftpd server 10x for help __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
:: does anyone what is the ipfw equivalent line for this one? :: :: rdr fxp0 external_ip_addres/32 port 69 -> 192.168.66.3 :: port 69 udp IPFW doesn't do nat like ipf does. You need to use natd(8): natd -n outside_iface -redirect_port udp 192.168.66.3:69 69 Cheers - Erick