Hi All,
I'm trying to implement an extended ACL, but the behaviour is not what I expected.
I want to control the traffic from subnet 10.22.30./24 to network 10.10.0.0/16
When I activate the config below.
I block all the traffic from 10.10.0.0/16 to 10.22.30.0/24
Even if i make a ACE permit ip 10.10.0.0 0.0.255.255 0.0.0.0 255.255.255.255.
The traffic from 10.10.0.0/16 to 10.22.30.0/24 is blocked.
The traffic from 10.22.30.0/24 to 10.10.0.0/16 is filtered as expected.
I do not want to filter the traffic from 10.10.0.0/16 to 10.22.30.0/24
Please check the config:
ip access-list extended "X-name"
10 remark "Allow RDP"
10 permit tcp 10.22.30.0 0.0.0.255 0.0.0.0 255.255.255.255 eq 3389
20 remark "Allow to serverX"
20 permit tcp 10.22.30.0 0.0.0.255 10.10.11.214 0.0.0.0 eq 2356
30 permit tcp 10.22.30.0 0.0.0.255 10.10.11.214 0.0.0.0 eq 1433
40 remark "Allow serverX to serverX"
40 permit tcp 10.22.30.14 0.0.0.0 10.10.10.95 0.0.0.0 eq 80
50 permit tcp 10.22.30.15 0.0.0.0 10.10.10.95 0.0.0.0 eq 80
100 deny ip 0.0.0.0 255.255.255.255 0.0.0.0 255.255.255.255 log
exit
interface B10
ip access-group X-name in
exit
vlan 1
name "DEFAULT_VLAN"
untagged A1,B1,B5,B11-B23,F1
ip address 10.10.0.1 255.255.0.0
tagged A2,F2
no untagged B2-B4,B6-B10,B24
exit
vlan 10
name "Name"
untagged B10
ip address 10.22.30.1 255.255.255.0
exit
What do I miss? Please help....?
#ACLs