<?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 RE: isolate ip network of vlan from other on same port in ExtremeSwitching (EXOS/Switch Engine)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27279#M3898</link>
    <description>You need to delete the port from all VR's than you can add more vlans (with different VR's to the port).  So yes you need to delete the port from all VLANs, than you can delete the port from VR, than you can add those VLANS again to the port.  Regards  Z.</description>
    <pubDate>Fri, 02 Dec 2016 11:25:00 GMT</pubDate>
    <dc:creator>Zdeněk_Pala</dc:creator>
    <dc:date>2016-12-02T11:25:00Z</dc:date>
    <item>
      <title>isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27255#M3874</link>
      <description>Here is the scenario &lt;BR /&gt;
we have multiple VLAN's configured as follows.&lt;BR /&gt;
&lt;BR /&gt;
VLAN 2001 setting&lt;BR /&gt;
&lt;BR /&gt;
create vlan "vlan2001"&lt;BR /&gt;
configure vlan vlan2001 tag 2001&lt;BR /&gt;
configure vlan vlan2001 add ports 21-24 tagged&lt;BR /&gt;
configure vlan vlan2001 ipaddress 10.0.0.1 255.255.255.0&lt;BR /&gt;
configure vlan vlan2001 dhcp-address-range 10.0.0.3 - 10.0.0.100&lt;BR /&gt;
configure vlan vlan2001 dhcp-options default-gateway 10.0.0.1&lt;BR /&gt;
enable ipforwarding vlan vlan2001&lt;BR /&gt;
enable dhcp ports 21-24 vlan vlan2001&lt;BR /&gt;
&lt;BR /&gt;
There are lots of other vlans &lt;BR /&gt;
for example&lt;BR /&gt;
create vlan "vlan199"&lt;BR /&gt;
configure vlan vlan199 tag 199&lt;BR /&gt;
configure vlan vlan199 add ports 21-24 tagged &lt;BR /&gt;
configure vlan vlan199 ipaddress 172.16.199.1 255.255.255.0&lt;BR /&gt;
configure vlan vlan199 dhcp-address-range 172.16.199.2 - 172.16.199.200&lt;BR /&gt;
configure vlan vlan199 dhcp-options default-gateway 172.16.199.1&lt;BR /&gt;
enable ipforwarding vlan vlan199&lt;BR /&gt;
enable dhcp ports 21-24 vlan vlan199&lt;BR /&gt;
&lt;BR /&gt;
Similiarly we have vlan 101 to 198 with ip 172.16.&amp;lt;101-198&amp;gt;.1 and dhcp range 172.16.&amp;lt;101-198&amp;gt;199.2 - 172.16.&amp;lt;101-198&amp;gt;.200&lt;BR /&gt;
I want that 172.16.&amp;lt;101-199&amp;gt;.x should not be able to ping 10.0.0.x&lt;BR /&gt;
How should I do that ?&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Thu, 01 Dec 2016 11:40:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27255#M3874</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T11:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27256#M3875</link>
      <description>Take a look at some of the examples provided here:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://gtacknowledge.extremenetworks.com/articles/How_To/How-to-create-and-apply-an-ACL-in-EXOS" target="_blank" rel="nofollow noreferrer noopener"&gt;https://gtacknowledge.extremenetworks.com/articles/How_To/How-to-create-and-apply-an-ACL-in-EXOS&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 11:55:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27256#M3875</guid>
      <dc:creator>Jeremy_Gibbs</dc:creator>
      <dc:date>2016-12-01T11:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27257#M3876</link>
      <description>i tried this&lt;BR /&gt;
&lt;BR /&gt;
vi  no_voip_access.pol&lt;BR /&gt;
&lt;BR /&gt;
entry one {&lt;BR /&gt;
             if match all {&lt;BR /&gt;
                                source-address 172.16.0.0/16 ;&lt;BR /&gt;
                                destination-address 10.0.0.0/24 ;&lt;BR /&gt;
                           }&lt;BR /&gt;
                           then&lt;BR /&gt;
                           {&lt;BR /&gt;
                                redirect 172.16.0.1;&lt;BR /&gt;
                           }&lt;BR /&gt;
          }&lt;BR /&gt;
&lt;BR /&gt;
configure  access-list  no_voip_access.pol port 21 ingress &lt;BR /&gt;
&lt;BR /&gt;
Got&lt;BR /&gt;
Error: ACL policy no_voip_access.pol not found&lt;BR /&gt;
&lt;BR /&gt;
Here i was hoping that all packets with source ip 172.16.x.x and destination ip 10.0.0.x will be sent to 172.16.0.1&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 12:49:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27257#M3876</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T12:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27258#M3877</link>
      <description>configure  access-list  no_voip_access port 21 ingress</description>
      <pubDate>Thu, 01 Dec 2016 12:49:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27258#M3877</guid>
      <dc:creator>Zdeněk_Pala</dc:creator>
      <dc:date>2016-12-01T12:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27259#M3878</link>
      <description>Now .&lt;BR /&gt;
Atleast , access list is being used .&lt;BR /&gt;
Seems no change in behaviour.&lt;BR /&gt;
ping to 10.0.0.2 from pc with ip 172.16.199.2 fails when pc with ip 10.0.0.2 is disconnected from extreme switch.&lt;BR /&gt;
One more thing - how do I remove access list ?&lt;BR /&gt;
guess , rm no_voip_access.pol would not be proper ?&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 12:49:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27259#M3878</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T12:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27260#M3879</link>
      <description>If you just want to deny "Ping" then this would do it:&lt;BR /&gt;
&lt;BR /&gt;
entry No_Ping {  if {&lt;BR /&gt;
      protocol icmp;&lt;BR /&gt;
      source-address 172.16.0.0/16;&lt;BR /&gt;
      destination-address 10.0.0.0/24;&lt;BR /&gt;
  } then {&lt;BR /&gt;
      deny;&lt;BR /&gt;
  }&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
If you want to isolate traffic not to enter different areas in the network. ACLs can get a pain in the back. Depending on the platform you have you can assign the vlans to different virtual routers.&lt;BR /&gt;
&lt;BR /&gt;
So if you have the vlan 2001 in the user defined vr vr-v2001 (just an example for a name) and the vlan 199 in a different user defined vr e.g. vr-access then these vlan are isolated by default and you don't need any ACLs</description>
      <pubDate>Thu, 01 Dec 2016 13:51:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27260#M3879</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-12-01T13:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27261#M3880</link>
      <description>OK&lt;BR /&gt;
&lt;BR /&gt;
Can't find a way to disable ACL .&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 13:59:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27261#M3880</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T13:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27262#M3881</link>
      <description>unconfigure access-list no_voip_access port 21</description>
      <pubDate>Thu, 01 Dec 2016 14:00:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27262#M3881</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-12-01T14:00:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27263#M3882</link>
      <description>On my switch &lt;BR /&gt;
* X460-24t.2 # unconfigure access-list no_voip_access&lt;BR /&gt;
 done!&lt;BR /&gt;
* X460-24t.2 # unconfigure access-list no_voip_access&lt;BR /&gt;
  &lt;CR&gt;            Execute the command&lt;BR /&gt;
  egress          Acls applied to egress &lt;BR /&gt;
  ingress         Acls applied to ingress &lt;BR /&gt;
No port option .&lt;BR /&gt;
Anyway , not a problem for me .&lt;BR /&gt;
&lt;BR /&gt;&lt;/CR&gt;</description>
      <pubDate>Thu, 01 Dec 2016 15:21:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27263#M3882</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T15:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27264#M3883</link>
      <description>One more thing ,&lt;BR /&gt;
I did&lt;BR /&gt;
disable ipforwarding vlan vlan199&lt;BR /&gt;
&lt;BR /&gt;
I thought , this will prevent PC device with ip 172.16.199.2 to ping any 10.0.0.x or 172.16.&amp;lt;101-198&amp;gt;.x&lt;BR /&gt;
That did not happen.&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 15:28:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27264#M3883</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T15:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27265#M3884</link>
      <description>show iproute?&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 15:49:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27265#M3884</guid>
      <dc:creator>JeremyClarkson</dc:creator>
      <dc:date>2016-12-01T15:49:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27266#M3885</link>
      <description>* X460-24t.4 # disable ipforwarding vlan199&lt;BR /&gt;
* X460-24t.5 # show iproute vlan199&lt;BR /&gt;
Ori  Destination        Gateway         Mtr  Flags         VLAN       Duration&lt;BR /&gt;
#d   172.16.199.0/24    172.16.199.1    1    U------um--f- vlan199    18d:21h:4m&lt;BR /&gt;
:23s&lt;BR /&gt;
&lt;BR /&gt;
Origin(Ori): (b) BlackHole, (be) EBGP, (bg) BGP, (bi) IBGP, (bo) BOOTP&lt;BR /&gt;
       (ct) CBT, (d) Direct, (df) DownIF, (dv) DVMRP, (e1) ISISL1Ext&lt;BR /&gt;
       (e2) ISISL2Ext, (h) Hardcoded, (i) ICMP, (i1) ISISL1 (i2) ISISL2&lt;BR /&gt;
       (is) ISIS, (mb) MBGP, (mbe) MBGPExt, (mbi) MBGPInter, (mp) MPLS Lsp&lt;BR /&gt;
       (mo) MOSPF (o) OSPF, (o1) OSPFExt1, (o2) OSPFExt2&lt;BR /&gt;
       (oa) OSPFIntra, (oe) OSPFAsExt, (or) OSPFInter, (pd) PIM-DM, (ps) PIM-SM&lt;BR /&gt;
       (r) RIP, (ra) RtAdvrt, (s) Static, (sv) SLB_VIP, (un) UnKnown&lt;BR /&gt;
       (*) Preferred unicast route (@) Preferred multicast route&lt;BR /&gt;
       (#) Preferred unicast and multicast route&lt;BR /&gt;
&lt;BR /&gt;
Flags: (B) BlackHole, (b) BFD protection requested, (c) Compressed, (D) Dynamic&lt;BR /&gt;
       (f) Provided to FIB, (G) Gateway, (H) Host Route, (L) Matching LDP LSP&lt;BR /&gt;
       (l) Calculated LDP LSP, (3) L3VPN Route, (m) Multicast, (P) LPM-routing&lt;BR /&gt;
       (p) BFD protection active, (R) Modified, (S) Static, (s) Static LSP&lt;BR /&gt;
       (T) Matching RSVP-TE LSP, (t) Calculated RSVP-TE LSP, (u) Unicast, (U) Up&lt;BR /&gt;
&lt;BR /&gt;
MPLS Label: (S) Bottom of Label Stack&lt;BR /&gt;
Mask distribution:&lt;BR /&gt;
     1 routes at length 24&lt;BR /&gt;
&lt;BR /&gt;
Route Origin distribution:&lt;BR /&gt;
     1 routes from Direct&lt;BR /&gt;
&lt;BR /&gt;
Total number of routes = 1&lt;BR /&gt;
Total number of compressed routes = 0&lt;BR /&gt;
&lt;BR /&gt;
* X460-24t.6 # enable ipforwarding vlan199&lt;BR /&gt;
* X460-24t.7 # show iproute vlan199&lt;BR /&gt;
Ori  Destination        Gateway         Mtr  Flags         VLAN       Duration&lt;BR /&gt;
#d   172.16.199.0/24    172.16.199.1    1    U------um--f- vlan199    18d:21h:8m&lt;BR /&gt;
:27s&lt;BR /&gt;
&lt;BR /&gt;
Origin(Ori): (b) BlackHole, (be) EBGP, (bg) BGP, (bi) IBGP, (bo) BOOTP&lt;BR /&gt;
       (ct) CBT, (d) Direct, (df) DownIF, (dv) DVMRP, (e1) ISISL1Ext&lt;BR /&gt;
       (e2) ISISL2Ext, (h) Hardcoded, (i) ICMP, (i1) ISISL1 (i2) ISISL2&lt;BR /&gt;
       (is) ISIS, (mb) MBGP, (mbe) MBGPExt, (mbi) MBGPInter, (mp) MPLS Lsp&lt;BR /&gt;
       (mo) MOSPF (o) OSPF, (o1) OSPFExt1, (o2) OSPFExt2&lt;BR /&gt;
       (oa) OSPFIntra, (oe) OSPFAsExt, (or) OSPFInter, (pd) PIM-DM, (ps) PIM-SM&lt;BR /&gt;
       (r) RIP, (ra) RtAdvrt, (s) Static, (sv) SLB_VIP, (un) UnKnown&lt;BR /&gt;
       (*) Preferred unicast route (@) Preferred multicast route&lt;BR /&gt;
       (#) Preferred unicast and multicast route&lt;BR /&gt;
&lt;BR /&gt;
Flags: (B) BlackHole, (b) BFD protection requested, (c) Compressed, (D) Dynamic&lt;BR /&gt;
       (f) Provided to FIB, (G) Gateway, (H) Host Route, (L) Matching LDP LSP&lt;BR /&gt;
       (l) Calculated LDP LSP, (3) L3VPN Route, (m) Multicast, (P) LPM-routing&lt;BR /&gt;
       (p) BFD protection active, (R) Modified, (S) Static, (s) Static LSP&lt;BR /&gt;
       (T) Matching RSVP-TE LSP, (t) Calculated RSVP-TE LSP, (u) Unicast, (U) Up&lt;BR /&gt;
&lt;BR /&gt;
MPLS Label: (S) Bottom of Label Stack&lt;BR /&gt;
Mask distribution:&lt;BR /&gt;
     1 routes at length 24&lt;BR /&gt;
&lt;BR /&gt;
Route Origin distribution:&lt;BR /&gt;
     1 routes from Direct&lt;BR /&gt;
&lt;BR /&gt;
Total number of routes = 1&lt;BR /&gt;
Total number of compressed routes = 0&lt;BR /&gt;
&lt;BR /&gt;
One thing I noticed that on disabling ipforwarding .&lt;BR /&gt;
ping to DNS server (which is outside the switch) stops and works on enabling  ipforwarding .</description>
      <pubDate>Thu, 01 Dec 2016 17:52:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27266#M3885</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T17:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27267#M3886</link>
      <description>show iproute (end) output so we can see everything.&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 18:04:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27267#M3886</guid>
      <dc:creator>JeremyClarkson</dc:creator>
      <dc:date>2016-12-01T18:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27268#M3887</link>
      <description>&lt;A href="http://pastebin.com/Y9uvLWsC" target="_blank" rel="nofollow noreferrer noopener"&gt;http://pastebin.com/Y9uvLWsC&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
it's a 479 line file of 40kB .</description>
      <pubDate>Thu, 01 Dec 2016 18:14:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27268#M3887</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T18:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27269#M3888</link>
      <description>I saw a lots of routes and vlans. What is the solution you plan to build ?</description>
      <pubDate>Thu, 01 Dec 2016 18:25:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27269#M3888</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-12-01T18:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27270#M3889</link>
      <description>wow...thats alot....&lt;BR /&gt;
&lt;BR /&gt;
can you not just disable ipforwarding on the default VR?&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 18:27:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27270#M3889</guid>
      <dc:creator>JeremyClarkson</dc:creator>
      <dc:date>2016-12-01T18:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27271#M3890</link>
      <description>Finally my aim is that network of vlan 2001 (10.0.1/24) and vlan1967(172.16.92.1/24) should not be accessible to other vlans.&lt;BR /&gt;
All other vlans may access each other's gateway.&lt;BR /&gt;
The trunk port(21-24) will get data of all vlans.&lt;BR /&gt;
&lt;BR /&gt;
To have less complication let's forget vlan1967.&lt;BR /&gt;
So, If I could keep vlan 2001 network inaccessible to other vlan.&lt;BR /&gt;
Also , can do if other vlan's do or don't ping each other's network.&lt;BR /&gt;
&lt;BR /&gt;
This virtual router concept I couldn't grasp.&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
So if you have the vlan 2001 in the user defined vr vr-v2001 (just an example for a name) and the vlan 199 in a different user defined vr e.g. vr-access then these vlan are isolated by default and you don't need any ACLs&lt;BR /&gt;
&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
can you not just disable ipforwarding on the default VR?&lt;BR /&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 01 Dec 2016 18:40:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27271#M3890</guid>
      <dc:creator>sumeet</dc:creator>
      <dc:date>2016-12-01T18:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27272#M3891</link>
      <description>"This virtual router concept I couldn't grasp."&lt;BR /&gt;
&lt;BR /&gt;
food for thought????&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 21:06:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27272#M3891</guid>
      <dc:creator>JeremyClarkson</dc:creator>
      <dc:date>2016-12-01T21:06:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27273#M3892</link>
      <description>EXOS always uses virtual router. as long as all vlans are within one vr they can communicate.&lt;BR /&gt;
If you create another vr and put the vlans inside of this vr, these vlans can't communicate with the rest.</description>
      <pubDate>Thu, 01 Dec 2016 22:45:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27273#M3892</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-12-01T22:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: isolate ip network of vlan from other on same port</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27274#M3893</link>
      <description>Have a look at page 677 in the Concepts Guide:&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://documentation.extremenetworks.com/exos_16.1/EXOS_User_Guide_16_1.pdf" target="_blank" rel="nofollow noreferrer noopener"&gt;http://documentation.extremenetworks.com/exos_16.1/EXOS_User_Guide_16_1.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Dec 2016 23:03:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-exos-switch/isolate-ip-network-of-vlan-from-other-on-same-port/m-p/27274#M3893</guid>
      <dc:creator>André_Herkenrat</dc:creator>
      <dc:date>2016-12-01T23:03:00Z</dc:date>
    </item>
  </channel>
</rss>

