convert cisco acl in to extreme summit X440
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-19-2016 02:46 AM
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.
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-20-2016 06:29 AM
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/
http://www.extremenetworks.guru/exos-acls/
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-20-2016 03:10 AM
Let me know how I can help.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-20-2016 03:10 AM
Erik above put the non-dropbox / github link: https://github.com/extremenetworks/ExtremeScripting/tree/master/EXOS/Perl/IOStoEXOSACL
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-20-2016 03:10 AM
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
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
