On May 12, 2005, at 3:03 PM, GV wrote:
based to the given port number, I want to redirect an external call to my
public IP to different web servers (they listen locally to port 80!) located
inside my LAN. For example:
IP:8000 --> 192.168.1.100 (on port 80!) IP:8001 --> 192.168.1.101 (on port 80!)
rdr on $ext_if proto tcp from any to any port 8000 -> $cam1
That should be:
rdr on $ext_if proto tcp from any to any port 8000 -> $cam1 port 80
Better yet, you could do "rdr pass" and avoid the explicit filter rule later on.
-- Jason Dixon DixonGroup Consulting http://www.dixongroup.net

