Looking for help in deciphering these ACL statements.
permit tcp 172.27.10.0 0.0.81.255 any established
permit tcp 172.27.12.0 0.0.80.255 any established
permit tcp 172.24.112.0 0.0.8.255 any established
permit tcp 172.24.116.0 0.0.0.255 any established
The first two statements are confusing me and I don't get what is trying to be achieved here. What I can imagine is that they want very specific values in the third octect to be allowed.
For example, take the second statement IP address and wildcard mask:
172.27.12.0 0.0.80.255
In bit form, wildcard value of 80 in third octet = 01010000
With corresponding IP address of 12 in the third octet= 00001100
That means only accept sources which, when it comes to the third octet, have 0x0x1100 (x can be 1/0, the wildcard does not care).
Now mathematically, how would you begin to calculate pattern of values that would be accepted by this wildcard? I'm coming to a full headstop with brain fog. Math was never my strong suite 
