I am trying to deny a IP address from connecting to my Mail Filter located in the DMZ, I have a PIX 515e. My Mail Filter is being attacked and i want to prevent the Attacking IP for connecting to it.
Here is my Current DMZ Conf.
nameif ethernet2 dmz security4
access-list ACL_DMZ permit tcp host 192.168.0.10 host 10.1.1.203 eq smtp
access-list ACL_DMZ permit tcp host 192.168.0.10 10.1.1.0 255.255.255.0 eq 8000
access-list ACL_DMZ permit tcp host 192.168.0.10 host 10.1.1.210 eq domain
access-list ACL_DMZ permit tcp host 192.168.0.10 host 10.1.1.211 eq domain
access-list ACL_DMZ permit icmp host 192.168.0.10 10.1.1.0 255.255.255.0
access-list ACL_DMZ permit udp any any
access-list ACL_DMZ permit tcp any any
access-list ACL_DMZ permit tcp host 192.168.0.10 10.1.2.0 255.255.255.0 eq 8000
access-list ACL_DMZ permit icmp host 192.168.0.10 10.1.2.0 255.255.255.0
access-list ACL_DMZ deny ip host 65.84.81.240 any
access-group ACL_DMZ in interface dmz
Thank you for your assistance.