Jul 31, 2006 #1 cmal00 IS-IT--Management Jul 31, 2006 28 US I need to configue my PIX so that I can deny SMTP to a outside IP that is spamming my email server.
Jul 31, 2006 #2 Supergrrover IS-IT--Management Apr 12, 2006 1,734 US You can add this line to your outside ACL - access-list inbound deny tcp SpammerIP ExternalPixIP eq 25 or you can just block that IP totally - access-list inbound deny ip SpammerIP ExternalPixIP Brent Systems Engineer / Consultant CCNP, CCSP Upvote 0 Downvote
You can add this line to your outside ACL - access-list inbound deny tcp SpammerIP ExternalPixIP eq 25 or you can just block that IP totally - access-list inbound deny ip SpammerIP ExternalPixIP Brent Systems Engineer / Consultant CCNP, CCSP
Jul 31, 2006 Thread starter #3 cmal00 IS-IT--Management Jul 31, 2006 28 US Thanks Brent, do I need to specify a mask on the source? Upvote 0 Downvote
Jul 31, 2006 #4 Supergrrover IS-IT--Management Apr 12, 2006 1,734 US Nope, just the IP of the spammer. If you have a range of external IP's then you want the mask on that part though. Brent Systems Engineer / Consultant CCNP, CCSP Upvote 0 Downvote
Nope, just the IP of the spammer. If you have a range of external IP's then you want the mask on that part though. Brent Systems Engineer / Consultant CCNP, CCSP
Jul 31, 2006 Thread starter #5 cmal00 IS-IT--Management Jul 31, 2006 28 US Brent, I'm getting a error: ERROR: Source address,mask <spammerIP,externalIP> doesn't pair I try putting masks on both but still the same Thx Upvote 0 Downvote
Brent, I'm getting a error: ERROR: Source address,mask <spammerIP,externalIP> doesn't pair I try putting masks on both but still the same Thx
Aug 1, 2006 #6 Supergrrover IS-IT--Management Apr 12, 2006 1,734 US Sorry left off the host keyword - access-list inbound deny ip host SpammerIP host ExternalPixIP or access-list inbound deny ip SpammerIP 255.255.255.255 ExternalPixIP 255.255.255.255 (or whatever network mask you have) Brent Systems Engineer / Consultant CCNP, CCSP Upvote 0 Downvote
Sorry left off the host keyword - access-list inbound deny ip host SpammerIP host ExternalPixIP or access-list inbound deny ip SpammerIP 255.255.255.255 ExternalPixIP 255.255.255.255 (or whatever network mask you have) Brent Systems Engineer / Consultant CCNP, CCSP
Aug 1, 2006 Thread starter #7 cmal00 IS-IT--Management Jul 31, 2006 28 US Thanks Brent, that worked Upvote 0 Downvote