View Single Post
  #2   (View Single Post)  
Old 13th May 2008
s2scott's Avatar
s2scott s2scott is offline
Package Pilot
 
Join Date: May 2008
Location: Toronto, Ontario Canada
Posts: 198
Default

Code:
rdr on rl0 proto tcp from rl0:network to any port 110 -> 127.0.0.1 port 8110
assuming this is your whole working pf.conf rules set, then you need to edit it...

Code:
rdr on rl0 proto proto inet tcp \
 from rl0:network to any port 110 \
 tag MYRDR110 -> 127.0.0.1 port 8110
# ...
pass in log quick on rl0 inet proto tcp \
 tagged MYRDR110 keep state
#
An RDR statement -- by itself -- does not grant a pass; it should have a companion pass statement.

/S
__________________
Never argue with an idiot. They will bring you down to their level and beat you with experience.

Last edited by s2scott; 14th May 2008 at 12:33 AM. Reason: syntax fix
Reply With Quote