norteldude78
IS-IT--Management
Regarding the following example:
Router(config)# access-list 100 permit tcp any 172.16.0.0 0.0.255.255 established
I have read that the established keyword is for packets that have the RST/ACK bit set. But what about initial connections where only the SYN bit is set? Will these get dropped?
Suppose you add an ACL statement before the one above that allows all tcp:
Router(config)# access-list 100 permit tcp any 172.16.0.0 0.0.255.255
Now your SYN packets would get through, but wouldn't need the 'established' statement anyway, the RST/ACK packets would already match.
Does any one know another example that shows the purpose of the established keyword?
Router(config)# access-list 100 permit tcp any 172.16.0.0 0.0.255.255 established
I have read that the established keyword is for packets that have the RST/ACK bit set. But what about initial connections where only the SYN bit is set? Will these get dropped?
Suppose you add an ACL statement before the one above that allows all tcp:
Router(config)# access-list 100 permit tcp any 172.16.0.0 0.0.255.255
Now your SYN packets would get through, but wouldn't need the 'established' statement anyway, the RST/ACK packets would already match.
Does any one know another example that shows the purpose of the established keyword?