Can I redirect the port to any registered IP address on the subnet? Or
do I have manually add lines of the ip addresses?
> rdr on $ext_if proto {tcp, udp} from any to $ext_ip port 6881 ->
> 192.168.1.38 port 6881
Change to:
> rdr on $ext_if proto {tcp, udp} from any to $ext_ip port 6881 ->
> ($int_if:network) port 6881
Will that clog the port? Or for each host would I have to assign a
different port being redirected from the firewall?
> rdr on $ext_if proto {tcp, udp} from any to $ext_ip port 6881 ->
> 192.168.1.38 port 6881
> rdr on $ext_if proto {tcp, udp} from any to $ext_ip port 6881 ->
> 192.168.1.39 port 6882
Thanks guys. Appreciate the help.
Vivek