View Single Post
Old 15th November 2016
Amithapr Amithapr is offline
Fdisk Soldier
 
Join Date: Dec 2015
Posts: 69
Default

Hi Jggimi,

I changes my rule set as follows

Code:
# BLOCK IT ALL ON INTERNAL NIC
block on $int_if all

# REDIRECT http, https LAN TRAFFIC TO PROXY SERVER
pass in on $int_if proto tcp from $lan to any port { http https } rdr-to $proxy

# LET http, https OUT FROM PROXY SERVER
pass out on $ext_if proto tcp from $proxy to any port { http https } keep state

# For DNS Traffic
pass in on $int_if proto { tcp, udp } from any to any port = 53 keep state
Still I cannot access the internet directly or via proxy.

Thanks
Reply With Quote