09-15-2010 01:26 PM - edited 03-06-2019 01:00 PM
Hey everyone,
I'm attempting to log all outbound SMTP traffic so I can monitor for things like spambots on the network. I've created the following simple access-list:
ip access-list extended SMTP
remark SMTP TRAFFIC
permit tcp any any eq smtp log
!
Solved! Go to Solution.
09-15-2010 01:42 PM
Hello,
By default the access-list will have an implicit deny policy. So, when you applied the access-list to the interface, all other traffic got denied implicitely. Please add another line to the access-list that allows all other traffic:
ip access-list extended SMTP
remark SMTP TRAFFIC
permit tcp any any eq smtp log
permit ip any any
Hope this helps.
Regards,
NT
09-15-2010 01:42 PM
Hello,
By default the access-list will have an implicit deny policy. So, when you applied the access-list to the interface, all other traffic got denied implicitely. Please add another line to the access-list that allows all other traffic:
ip access-list extended SMTP
remark SMTP TRAFFIC
permit tcp any any eq smtp log
permit ip any any
Hope this helps.
Regards,
NT
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide