<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ACL to EXOS and EIGRP Newbie in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76835#M19483</link>
    <description>Hello,&lt;BR /&gt;
I'm converting a cisco 2911 router to an extreme 440-24t. I've never created an access list or even worked with the router currently has the following. I also don't know what to do with the eigrp and if i need to convert that as well&lt;BR /&gt;
&lt;BR /&gt;
router eigrp 99&lt;BR /&gt;
 network 10.76.0.0 0.0.0.255&lt;BR /&gt;
 network 10.76.22.0 0.0.0.255&lt;BR /&gt;
 network 172.16.0.0&lt;BR /&gt;
 network 192.168.22.0&lt;BR /&gt;
!&lt;BR /&gt;
ip forward-protocol nd&lt;BR /&gt;
!&lt;BR /&gt;
ip http server&lt;BR /&gt;
ip http secure-server&lt;BR /&gt;
!&lt;BR /&gt;
!&lt;BR /&gt;
access-list 50 permit 192.168.0.0 0.0.255.255&lt;BR /&gt;
access-list 50 permit 10.76.0.0 0.0.0.255&lt;BR /&gt;
access-list 101 deny  ip any 172.16.0.0 0.0.255.255&lt;BR /&gt;
access-list 101 permit ip any any&lt;BR /&gt;
access-list 102 permit ip any 172.16.0.0 0.0.255.255&lt;BR /&gt;
access-list 102 permit ip any 10.243.4.0 0.0.1.255</description>
    <pubDate>Fri, 30 Aug 2019 21:31:30 GMT</pubDate>
    <dc:creator>martinj</dc:creator>
    <dc:date>2019-08-30T21:31:30Z</dc:date>
    <item>
      <title>ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76835#M19483</link>
      <description>Hello,&lt;BR /&gt;
I'm converting a cisco 2911 router to an extreme 440-24t. I've never created an access list or even worked with the router currently has the following. I also don't know what to do with the eigrp and if i need to convert that as well&lt;BR /&gt;
&lt;BR /&gt;
router eigrp 99&lt;BR /&gt;
 network 10.76.0.0 0.0.0.255&lt;BR /&gt;
 network 10.76.22.0 0.0.0.255&lt;BR /&gt;
 network 172.16.0.0&lt;BR /&gt;
 network 192.168.22.0&lt;BR /&gt;
!&lt;BR /&gt;
ip forward-protocol nd&lt;BR /&gt;
!&lt;BR /&gt;
ip http server&lt;BR /&gt;
ip http secure-server&lt;BR /&gt;
!&lt;BR /&gt;
!&lt;BR /&gt;
access-list 50 permit 192.168.0.0 0.0.255.255&lt;BR /&gt;
access-list 50 permit 10.76.0.0 0.0.0.255&lt;BR /&gt;
access-list 101 deny  ip any 172.16.0.0 0.0.255.255&lt;BR /&gt;
access-list 101 permit ip any any&lt;BR /&gt;
access-list 102 permit ip any 172.16.0.0 0.0.255.255&lt;BR /&gt;
access-list 102 permit ip any 10.243.4.0 0.0.1.255</description>
      <pubDate>Fri, 30 Aug 2019 21:31:30 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76835#M19483</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-08-30T21:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76836#M19484</link>
      <description>I don't think Extreme supports EIGRP and will probably never do so.&lt;BR /&gt;
&lt;BR /&gt;
https://community.extremenetworks.com/extremeswitching-exos-223284/eigrp-7497233&lt;BR /&gt;
&lt;BR /&gt;
Use standards like OSPF, ISIS or BGP for routing.&lt;BR /&gt;
&lt;BR /&gt;
Where do you plan to use the ACLs, on interfaces, VLANs, for route export, CPU protection or something else?&lt;BR /&gt;
&lt;BR /&gt;
You can either edit a policy file that you create for a policy (ACL) or create a dynamic ACL. I think you can only have one match in a dynamic ACL, so you can do this:&lt;BR /&gt;
&lt;BR /&gt;
create access-list ACL101a "source-address 172.16.0.0/16" "deny"&lt;BR /&gt;
create access-list ACL101b "source-address 0.0.0.0/0" "permit"&lt;BR /&gt;
configure access-list add ACLv101a vlan v101-engineering first&lt;BR /&gt;
configure access-list add ACLv101b vlan v101-engineering after ACLv101a&lt;BR /&gt;
&lt;BR /&gt;
or you can create a policy file:&lt;BR /&gt;
&lt;BR /&gt;
edit policy ACLv101 (starts up a "vi" like editor, nasty, but that's how it's done)&lt;BR /&gt;
&lt;BR /&gt;
i  (for entering edit mode in vi, then type the following)&lt;BR /&gt;
&lt;BR /&gt;
entry v101-deny {&lt;BR /&gt;
if {&lt;BR /&gt;
source-address 172.16.0.0/16;&lt;BR /&gt;
} then {&lt;BR /&gt;
deny;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry v101-permit {&lt;BR /&gt;
if {&lt;BR /&gt;
} then {&lt;BR /&gt;
permit;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
(now, press Esc and then ZZ, that is capital Z twice, for saving and exiting)&lt;BR /&gt;
&lt;BR /&gt;
Apply the ACL to a VLAN (if that's what you intend):&lt;BR /&gt;
&lt;BR /&gt;
configure access-list add ACLv101 vlan v101-engineering&lt;BR /&gt;
&lt;BR /&gt;
/Fredrik</description>
      <pubDate>Sun, 01 Sep 2019 02:54:48 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76836#M19484</guid>
      <dc:creator>FredrikB</dc:creator>
      <dc:date>2019-09-01T02:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76837#M19485</link>
      <description>I’m not really sure about the ACLs, and I’ve never setup a switch so I’ve got 2 vlans (admin) and (controls) it goes directly to a rad provided by century link, we originally had a Cisco router and a cisco switch but we want to put in this x440 in place of those two. I’m only trying to mirror what we had in the router and I wasn’t part of the original setup so I’m not sure what the ACLs are for. We want admin vlan and the controls vlan to not have internet. Not sure if that makes sense or not.</description>
      <pubDate>Sun, 01 Sep 2019 03:15:39 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76837#M19485</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-09-01T03:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76838#M19486</link>
      <description>Ok, two things. If this is indeed an old X440-24t (not a G2 version), you're stuck on old EXOS 16, but you will be fine with one of the latest EXOS 16 releases. Sencondly, I think you need to figure out what the old router did if you're going to copy its settings. If you cannot do that (well, in any case) you need to understand the solution, otherwise you're only guessing.&lt;BR /&gt;
&lt;BR /&gt;
If none of the VLANs are supposed to have Internet access, is there another VLAN that is supposed to have that?&lt;BR /&gt;
&lt;BR /&gt;
Was Cisco EIGRP routing protocol used at all in the Cisco? You should see that with "show eigrp 99 neighbors". If none are listed, you probably don't even use EIGRP. Even if EIGRP is used, very often in simple implementations, the routing protocol more or less only establishes a default route to the outside world. If this is the case for you, you can replace EIGRP with a simple static route to the next-hop router (default gateway).&lt;BR /&gt;
&lt;BR /&gt;
/Fredrik</description>
      <pubDate>Sun, 01 Sep 2019 03:28:45 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76838#M19486</guid>
      <dc:creator>FredrikB</dc:creator>
      <dc:date>2019-09-01T03:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76839#M19487</link>
      <description>The only vlan that would have internet would be the “admin” vlan. Controls vlan would be closed. Would I still need to look to the OSPF? I also tagged the port that the internet comes Into the switch port 24, and put that port on a 3rd clan called “clink”</description>
      <pubDate>Sun, 01 Sep 2019 03:34:02 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76839#M19487</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-09-01T03:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76840#M19488</link>
      <description>Ah, you said "We want admin vlan and the controls vlan to not have internet.". Do you need routing between those VLANs? If so, you can use routing between the VLANs and an ACL to prevent the controls VLAN from reaching anything else than the admin VLAN.&lt;BR /&gt;
&lt;BR /&gt;
If you provide the following, I might be able to help you:&lt;BR /&gt;
&lt;BR /&gt;
IP, subnet and VLAN ID for the two VLANs&lt;BR /&gt;
Router for Internet (default gateway)&lt;BR /&gt;
&lt;BR /&gt;
/Fredrik</description>
      <pubDate>Mon, 02 Sep 2019 01:38:10 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76840#M19488</guid>
      <dc:creator>FredrikB</dc:creator>
      <dc:date>2019-09-02T01:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76841#M19489</link>
      <description>vlan admin vid 10 10.76.22.1 /24&lt;BR /&gt;
vlan controls vid 20 172.16.22.1 /23&lt;BR /&gt;
century link router 10.76.0.22/24&lt;BR /&gt;
&lt;BR /&gt;
have dhcp setup as well for controls  vlan ip would pick up  172.16.22.x sub:255.255.254.0 gw:172.16.22.1&lt;BR /&gt;
vlan admin 10.76.22.x sub:10.76.22.1 gw:10.76.22.1&lt;BR /&gt;
admin vlan (with internet)  should be able to communicate with controls vlan but controls vlan should not have internet access.</description>
      <pubDate>Tue, 03 Sep 2019 18:28:42 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76841#M19489</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-09-03T18:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76842#M19490</link>
      <description>Hi!&lt;BR /&gt;
&lt;BR /&gt;
Ok ,for a basic setup, you need three VLANs:&lt;BR /&gt;
&lt;BR /&gt;
create vlan admin&lt;BR /&gt;
configure vlan admin tag 10&lt;BR /&gt;
configure vlan admin ipaddress 10.76.22.1 255.255.255.0&lt;BR /&gt;
&lt;BR /&gt;
create vlan controls&lt;BR /&gt;
configure vlan controls tag 20&lt;BR /&gt;
configure vlan controls ipaddress 172.16.22.1 255.255.254.0&lt;BR /&gt;
&lt;BR /&gt;
create vlan century&lt;BR /&gt;
configure vlan century tag 30&lt;BR /&gt;
configure vlan century ipaddress 10.76.0.xx 255.255.255.0  &amp;lt;- need correct IP here (are you .22 and Century some other IP?)&lt;BR /&gt;
&lt;BR /&gt;
configure iproute add 0.0.0.0 0.0.0.0 10.76.0.22  &amp;lt;- IP of the Century router&lt;BR /&gt;
enable ipforwarding      &amp;lt;--- enables routing on all VLANs&lt;BR /&gt;
&lt;BR /&gt;
Add ports to the VLANs (examples, use your own port assignments as needed):&lt;BR /&gt;
&lt;BR /&gt;
configure vlan admin add ports 1-10 untagged&lt;BR /&gt;
configure vlan controls add ports 11-20 untagged&lt;BR /&gt;
configure vlan century add ports 24 untagged&lt;BR /&gt;
&lt;BR /&gt;
In case you need tagged ports with, say, admin and controls for trunking those to another switch:&lt;BR /&gt;
configure vlan admin add ports 22-23 tagged&lt;BR /&gt;
configure vlan controls add ports 22-23 tagged&lt;BR /&gt;
&lt;BR /&gt;
I am assuming this is how the network is supposed to be connected:&lt;BR /&gt;
&lt;BR /&gt;
admin------ Extreme ---- Century router ---- Internet&lt;BR /&gt;
controls---- X440&lt;BR /&gt;
&lt;BR /&gt;
What I didn't get was which IP addresses you use for the X440-to-Century connection. I assume this:&lt;BR /&gt;
&lt;BR /&gt;
- Century router has IP 10.76.0.22/24 on the interface towards the X440&lt;BR /&gt;
- X440 should have another address in that subnet, designated 10.76.0.xx/24 above&lt;BR /&gt;
&lt;BR /&gt;
This should work, but will not stop the controls network from reaching the Internet. For that you need a policy.&lt;BR /&gt;
&lt;BR /&gt;
After testing the basic setup (please do that first so you know the basics work), you need a policy (ACL) that denies traffic from VLAN controls to the Internet.&lt;BR /&gt;
&lt;BR /&gt;
 edit policy deny-controls-internet&lt;BR /&gt;
&lt;BR /&gt;
 i (for enabling editing, an ugly vi editor monstrosity)&lt;BR /&gt;
&lt;BR /&gt;
[Paste the text below into the editor]&lt;BR /&gt;
&lt;BR /&gt;
# Policy for denying traffic from Controls to the Internet&lt;BR /&gt;
entry permit-controls-admin {&lt;BR /&gt;
if {&lt;BR /&gt;
source-address 172.16.22.0/23;&lt;BR /&gt;
destination-address 10.76.22.0/24;&lt;BR /&gt;
} then {&lt;BR /&gt;
permit;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
entry deny-controls-Internet {&lt;BR /&gt;
if {&lt;BR /&gt;
source-address 172.16.22.0/23;&lt;BR /&gt;
} then {&lt;BR /&gt;
deny;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
Quit the ugly vi-like editor with Esc and then ZZ (shift z twice) or Esc :w (I think, check)&lt;BR /&gt;
&lt;BR /&gt;
Apply the policy to the VLANs:&lt;BR /&gt;
&lt;BR /&gt;
configure access-list deny-controls-internet add vlan controls&lt;BR /&gt;
&lt;BR /&gt;
This applies the policy/ACL to the VLAN controls and will have no effect on other VLANs.&lt;BR /&gt;
&lt;BR /&gt;
If all is good, you're done!&lt;BR /&gt;
&lt;BR /&gt;
I did this as a dry-run, no testing, so if not all is correct, please forgive me &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;
 /Fredrik</description>
      <pubDate>Wed, 04 Sep 2019 13:25:44 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76842#M19490</guid>
      <dc:creator>FredrikB</dc:creator>
      <dc:date>2019-09-04T13:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76843#M19491</link>
      <description>Thanks, I tried putting in the configure iproute add 0.0.0.0 0.0.0.0 10.76.0.22 &amp;lt;- IP of the Century router&lt;BR /&gt;
 enable ipforwarding &amp;lt;--- enables routing on all VLANs but i get an error "Invalid null netmask detected at '^' marker.&lt;BR /&gt;
&lt;BR /&gt;
It's showing the marker at the start of the second 0.0.0.0</description>
      <pubDate>Wed, 04 Sep 2019 18:40:32 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76843#M19491</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-09-04T18:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76844#M19492</link>
      <description>Ah, it's supposed to be this:&lt;BR /&gt;
&lt;BR /&gt;
iproute add default 10.76.0.22</description>
      <pubDate>Wed, 04 Sep 2019 19:09:32 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76844#M19492</guid>
      <dc:creator>FredrikB</dc:creator>
      <dc:date>2019-09-04T19:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76845#M19493</link>
      <description>no for the access list i typed in configure access-list deny-controls-internet vlan controls doesn't work if you put add vlan controls, got an error error: Policy deny-controls-internet has syntax errors line 2: Missing keyword "entry"</description>
      <pubDate>Wed, 04 Sep 2019 19:39:22 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76845#M19493</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-09-04T19:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76846#M19494</link>
      <description>Also, I tried the config without the access list and I have an issue I can’t seem to get online with just the basic config to port 24 and vlan century</description>
      <pubDate>Thu, 05 Sep 2019 22:24:15 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76846#M19494</guid>
      <dc:creator>martinj</dc:creator>
      <dc:date>2019-09-05T22:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: ACL to EXOS and EIGRP Newbie</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76847#M19495</link>
      <description>Can you ping from a PC in VLAN admin to all IPs on the switch? Start with pinging 10.76.22.1 and then the other addresses.&lt;BR /&gt;
&lt;BR /&gt;
Did you do "enable ipforwarding"? Is the routing back from the Century to the X440 correct? If you used to run a routing protocol there previously (Cisco EIGRP), you might need to add a static route back to the X440 from the Century.&lt;BR /&gt;
&lt;BR /&gt;
/Fredrik</description>
      <pubDate>Tue, 10 Sep 2019 02:35:18 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/acl-to-exos-and-eigrp-newbie/m-p/76847#M19495</guid>
      <dc:creator>FredrikB</dc:creator>
      <dc:date>2019-09-10T02:35:18Z</dc:date>
    </item>
  </channel>
</rss>

