Hello all
I’m having problem adjusting proxy rule and filter rule
firewall filter rule
;;; Drop unnecessary sites on OFFICE
chain=forward action=drop src-address-list=Restricted IP
dst-address-list=restricted sites
as soon as i enable the below mentioned proxy re-direction rule the firewall filter rule doesn’t work
;;; redirect web requests to proxy
chain=dstnat action=dst-nat to-addresses=xxx.yy.zz.mm to-ports=3281
protocol=tcp dst-port=80
my heartfelt thanks to any suggestion or ideas .
Thanks
Sanjeev
currently i’m doing this on NAT
;;; exclude proxy redirection for OFFICENETWORK
chain=dstnat action=accept protocol=tcp src-address=192.168.0.0/24
dst-port=80
and it’s working but i’m bypassing proxy.
so any better ideas, suggestions ??
Thanks
Sanjeev
use proxy rules for blocking. or simply change your proxy redirect rule:
;;; redirect web requests to proxy
chain=dstnat action=dst-nat to-addresses=xxx.yy.zz.mm to-ports=3281
protocol=tcp dst-port=80 > src-address-list=!Restricted IP
dst-address-list=!restricted sites
Thanks chupaka
the re-defined proxy rule worked for me.
But i will filter the sites on proxy itself as suggested by you.
Thanks very much
Sanjeev