top of page
Ever wonder why that ACL that you so lovingly crafted is all jumbled up?

I did, and after some quick research, i found the below conversation on CLN, very good stuff!

Out of order ACL? fix it quick, with no downtime :-)

Switch#sh ip access-list
Standard IP access list TEST-ACL
    30 permit 10.10.120.71
    60 permit 10.50.150.232 (195182 matches)
    10 permit 10.50.150.231
    20 permit 10.10.120.54 (5 matches)
    70 permit 10.50.150.20 (550860 matches)
    50 permit 10.50.3.241
    40 permit 10.50.3.240 (5 matches)
    200 deny   any log
Switch#
Switch#configure terminal
Switch(config)#ip access-list resequence TEST-ACL 10 10
Switch(config)#end
Switch#sh ip access-list
Standard IP access list TEST-ACL
    10 permit 10.10.120.71
    20 permit 10.50.150.232 (195203 matches)
    30 permit 10.50.150.231
    40 permit 10.10.120.54 (5 matches)
    50 permit 10.50.150.20 (550872 matches)
    60 permit 10.50.3.241
    70 permit 10.50.3.240 (5 matches)
    80 deny   any log

 

bottom of page