cancel
Showing results for 
Search instead for 
Did you mean: 

convert cisco acl in to extreme summit X440

convert cisco acl in to extreme summit X440

zain_mallick
New Contributor
access-list 10 permit 172.16.66.246
access-list 10 permit 172.16.66.241
access-list 10 permit 172.16.72.110
access-list 10 permit 172.16.72.84
access-list 10 permit 172.168.202.100
access-list 10 permit 172.16.72.17

this is cisco code and i want this code in extreme X440...plz guide me and give me a code in detail.

19 REPLIES 19

Anonymous
Not applicable
If its any help I have created a post on how to create EXOS ACL's. Its not definitive and still needs a little more work but might help?

http://www.extremenetworks.guru/exos-acls/

Matthew_Helm1
Extreme Employee
Let me know how I can help.

So, I've lost track of this thread, and I don't remember where the my latest perl IOS to EXOS ACL converter is on the Extreme GTAC sites, but here is a dropbox link:

https://www.dropbox.com/s/ax91033mv7owobl/aclconverter_0_19.pl?dl=0

I put the ACL lines in a txt file (ACLlist.txt) and converted it to a dynamic ACL using the -d flag.

$ perl aclconverter_0_19.pl ACLlist.txt -d create access-list acl_10_1 "source-address 172.16.66.246/32;" "permit;"

create access-list acl_10_2 "source-address 172.16.66.241/32;" "permit;"

create access-list acl_10_3 "source-address 172.16.72.110/32;" "permit;"

create access-list acl_10_4 "source-address 172.16.72.84/32;" "permit;"

create access-list acl_10_5 "source-address 172.168.202.100/32;" "permit;"

create access-list acl_10_6 "source-address 172.16.72.17/32;" "permit;"

You can > that output to a file or just copy it from the term into the CLI of the EXOS switch.

Each line must be applied to a port or VLAN or any as ingress individually.

Hope this helps.

--Matt

GTM-P2G8KFN