PF redirected ports reservation

I added a port redirection rule for Plex in pf.conf:
Code:
plex_port="32400"
...
rdr on $ext_if proto {tcp udp} from any to ($ext_if) port $plex_port -> $int_if port $plex_port
...
pass in log quick on $ext_if inet proto {tcp udp} from any to $int_if port $plex_port keep state label "pass Plex"
The question is: should I exclude this redirected port from the NAT range:
Code:
nat on $ext_if from $int_if:network to any -> ($ext_if) port 1024:65535
and from the miniupnpd.conf settings?
Code:
allow 1024-65535 192.168.0.0/24 1024-65535
 
Back
Top