An ACL does not maintain a state table the way a firewall would. Consequently, I need to define packet travel in both directions. So let’s assume that my SOS server is 10.1.1.1 and my SOS client is 10.2.2.2 and we are communicating encrypted over port 8081.
I would think the packet travel from SOS server to the client would be defined on the router as:
access-list 101 permit tcp host 10.2.2.2 eq 8081 host 10.1.1.1
and my packet traffic from the SOS client to the server would be:
access-list 102 permit tcp host 10.1.1.1 host 10.2.2.2 eq 8081
But no luck. Do you know if anyone has setup Cisco ACL Lists for SOS? Does either side reply using a random port or do all source and destination packets use tcp port 8081?
