hi, i have a simple question that's been picking me for a few days...for example, i need to explicitly allow smtp and pop3 traffic only from the mx server on 192.168.50.50/24 to the whole 192.168.1.0/24 network.
that would be:
access-list 101 permit tcp host 192.168.50.50 192.168.1.0 0.0.0.255 eq 25
access-list 101 permit tcp host 192.168.50.50 192.168.1.0 0.0.0.255 eq 110
but since those two subnets must be able to communicate together, must i include the opposite direction?
for example:
access-list 101 permit tcp 192.168.1.0 0.0.0.255 host 192.168.50.50 eq 25
access-list 101 permit tcp 192.168.1.0 0.0.0.255 host 192.168.50.50 eq 110
I know it's a noob question but i can't seem to figure it out by myself, and i need it asap. thanks in advance
