<?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: VDX NOS: Can fabric virtual gateways be assigned to a VRF? in Data Center (VDX)</title>
    <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79186#M481</link>
    <description>Second question that I could not find a answer to in documentation: &lt;BR /&gt;
&lt;BR /&gt;
within the ve configuration,  the command &lt;BR /&gt;
 ip fabric-virtual-gateway  &lt;BR /&gt;
&lt;BR /&gt;
asks for an id or autogenerates one. Here ID 1 was autogenerated. &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
rbridge-id 2&lt;BR /&gt;
 interface Ve 1091&lt;BR /&gt;
 vrf forwarding PICKLE&lt;BR /&gt;
 ip fabric-virtual-gateway 1&lt;BR /&gt;
  enable&lt;BR /&gt;
 !&lt;BR /&gt;
 no shutdown&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Does this ID need to be unique within the vcs fabric (appears to be limited to 255)? Is it a way of creating different gateway addresses under the same ve interface? &lt;BR /&gt;
&lt;BR /&gt;
Thank you,&lt;BR /&gt;
&lt;BR /&gt;
wgs</description>
    <pubDate>Tue, 18 Jun 2019 22:32:30 GMT</pubDate>
    <dc:creator>wgs</dc:creator>
    <dc:date>2019-06-18T22:32:30Z</dc:date>
    <item>
      <title>VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79182#M477</link>
      <description>We currently use our VDX for only layer 2 functions. We are looking at turning on layer 3 routing, and the fabric route virtual gateway functionality. &lt;BR /&gt;
&lt;BR /&gt;
I see the VDX supports 32 vrfs, and the vrf documentation describes assigning ip interfaces and vrrp/vrrp-e addresses to vrf domains. I do not see anything in the documentation that explains if an ip fabric-virtual-gateway address can be added to vrf.&lt;BR /&gt;
&lt;BR /&gt;
Example from docs: &lt;BR /&gt;
(config)# interface ve 6000 device&lt;BR /&gt;
(config-Ve-6000)# attach rbridge-id 10,11,12&lt;BR /&gt;
 (config-Ve-6000)# no shutdown &lt;BR /&gt;
(config-Ve-6000)# ip fabric-virtual-gateway&lt;BR /&gt;
(config-ip-fabric-virtual-gateway )# gateway-address 10.65.40.100/24&lt;BR /&gt;
(config-ip-fabric-virtual-gateway )# exit&lt;BR /&gt;
FROM VRF DOCS---&amp;gt;&amp;gt;(config-Ve-6000)#  vrf forwarding orange&lt;BR /&gt;
&lt;BR /&gt;
will this work? &lt;BR /&gt;
&lt;BR /&gt;
Unfortunately I do not have a lab to test this on. &lt;BR /&gt;
&lt;BR /&gt;
Thank you</description>
      <pubDate>Thu, 13 Jun 2019 20:17:12 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79182#M477</guid>
      <dc:creator>wgs</dc:creator>
      <dc:date>2019-06-13T20:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79183#M478</link>
      <description>wgs,&lt;BR /&gt;
&lt;BR /&gt;
Yes, this is possible, here is the correct process:&lt;BR /&gt;
&lt;BR /&gt;
Step 1:&lt;BR /&gt;
&lt;BR /&gt;
Configure the VRF on each RB attached:&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;Static-Lab-SM08_VDX1(config)# rbr 1   &lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-id-1)# vrf orange&lt;BR /&gt;Static-Lab-SM08_VDX1(config-vrf-orange)# address-family ipv4 uni&lt;BR /&gt;Static-Lab-SM08_VDX1(vrf-orange-ipv4-unicast)#&lt;BR /&gt;&lt;BR /&gt;Static-Lab-SM08_VDX1(config)# rbr 2   &lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-id-2)# vrf orange&lt;BR /&gt;Static-Lab-SM08_VDX1(config-vrf-orange)# address-family ipv4 uni&lt;BR /&gt;Static-Lab-SM08_VDX1(vrf-orange-ipv4-unicast)# exit&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
Step 2:&lt;BR /&gt;
&lt;BR /&gt;
Setup Fabric Virtual Gateway globally&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;Static-Lab-SM08_VDX1(config)# router fabric-virtual-gateway &lt;BR /&gt;Static-Lab-SM08_VDX1(conf-router-fabric-virtual-gateway)# address-family ipv4&lt;BR /&gt;Static-Lab-SM08_VDX1(conf-address-family-ipv4)# exit&lt;BR /&gt;Static-Lab-SM08_VDX1(conf-router-fabric-virtual-gateway)# exit&lt;BR /&gt;&lt;BR /&gt;Static-Lab-SM08_VDX1(config)# interface ve 6000&lt;BR /&gt;Static-Lab-SM08_VDX1(config-Ve-6000)# attach rbridge-id add 1,2&lt;BR /&gt;Static-Lab-SM08_VDX1(config-Ve-6000)# no shut&lt;BR /&gt;Static-Lab-SM08_VDX1(config-Ve-6000)# ip fabric-virtual-gateway &lt;BR /&gt;Static-Lab-SM08_VDX1(config-ip-fabric-virtual-gw)# gateway-address 10.65.40.100/24&lt;BR /&gt;Static-Lab-SM08_VDX1(config-ip-fabric-virtual-gw)# exit&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
Step 3:&lt;BR /&gt;
&lt;BR /&gt;
Configure each RB with the appropriate VE&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;Static-Lab-SM08_VDX1(config)# rb 1&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-id-1)# int ve 6000&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-Ve-6000)# vrf forwarding orange&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-Ve-6000)# ip fabric-virtual-gateway &lt;BR /&gt;Static-Lab-SM08_VDX1(config-ip-fabric-virtual-gw)# enable&lt;BR /&gt;Static-Lab-SM08_VDX1(config-ip-fabric-virtual-gw)# exit&lt;BR /&gt;&lt;BR /&gt;Static-Lab-SM08_VDX1(config)# rb 2&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-id-2)# int ve 6000&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-Ve-6000)# vrf forwarding orange&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-Ve-6000)# ip fabric-virtual-gateway &lt;BR /&gt;Static-Lab-SM08_VDX1(config-ip-fabric-virtual-gw)# enable&lt;BR /&gt;Static-Lab-SM08_VDX1(config-ip-fabric-virtual-gw)# exit&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I hope this answers your question&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thank you,&lt;BR /&gt;
&lt;BR /&gt;
Michael Morey, BCNP, BCEFP&lt;BR /&gt;
Principal Technical Support Engineer</description>
      <pubDate>Thu, 13 Jun 2019 21:00:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79183#M478</guid>
      <dc:creator>Michael_Morey</dc:creator>
      <dc:date>2019-06-13T21:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79184#M479</link>
      <description>Thank you for the quick answer. I'm glad this works and I do not have to use vrrp instead..</description>
      <pubDate>Thu, 13 Jun 2019 22:44:48 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79184#M479</guid>
      <dc:creator>wgs</dc:creator>
      <dc:date>2019-06-13T22:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79185#M480</link>
      <description>Hello. I've tried this procedure and it is working well. I do have two questions: &lt;BR /&gt;
&lt;BR /&gt;
I have vcs fabric with four cluster members.  Each cluster member appears to have elected different arp responders (although two have elected the same) .  Is that a problem? &lt;BR /&gt;
&lt;BR /&gt;
Total number of IPv4 Fabric Virtual Gateway Sessions  : 1&lt;BR /&gt;
Sessions in Init state : 0&lt;BR /&gt;
Gateway MAC address: 02e0.5200.010f &lt;BR /&gt;
&lt;BR /&gt;
Interface Admin   State  ARP    Load    Threshold Track   Last State&lt;BR /&gt;
      State       Responder Balancing  Priority  Priority Changed&lt;BR /&gt;
========= =====   =====  ========= =========  ========= ======== ==========&lt;BR /&gt;
Ve 191   Enabled  Active  Rbr-id 1  Enabled   unset   0     0d.0h.13m.13s ago&lt;BR /&gt;
 show ip fabric-virtual-gateway rbridge-id 1&lt;BR /&gt;
============Rbridge-id:1============&lt;BR /&gt;
&lt;BR /&gt;
Total number of IPv4 Fabric Virtual Gateway Sessions  : 1&lt;BR /&gt;
Sessions in Init state : 0&lt;BR /&gt;
Gateway MAC address: 02e0.5200.010f &lt;BR /&gt;
&lt;BR /&gt;
Interface Admin   State  ARP    Load    Threshold Track   Last State&lt;BR /&gt;
      State       Responder Balancing  Priority  Priority Changed&lt;BR /&gt;
========= =====   =====  ========= =========  ========= ======== ==========&lt;BR /&gt;
Ve 191   Enabled  Active  Rbr-id 1  Enabled   unset   0     0d.0h.13m.21s ago&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 show ip fabric-virtual-gateway rbridge-id 2&lt;BR /&gt;
============Rbridge-id:2============&lt;BR /&gt;
&lt;BR /&gt;
Total number of IPv4 Fabric Virtual Gateway Sessions  : 1&lt;BR /&gt;
Sessions in Init state : 0&lt;BR /&gt;
Gateway MAC address: 02e0.5200.010f &lt;BR /&gt;
&lt;BR /&gt;
Interface Admin   State  ARP    Load    Threshold Track   Last State&lt;BR /&gt;
      State       Responder Balancing  Priority  Priority Changed&lt;BR /&gt;
========= =====   =====  ========= =========  ========= ======== ==========&lt;BR /&gt;
Ve 191   Enabled  Active  Rbr-id 100 Enabled   unset   0     0d.0h.13m.22s ago&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 show ip fabric-virtual-gateway rbridge-id 100&lt;BR /&gt;
============Rbridge-id:100============&lt;BR /&gt;
&lt;BR /&gt;
Total number of IPv4 Fabric Virtual Gateway Sessions  : 1&lt;BR /&gt;
Sessions in Init state : 0&lt;BR /&gt;
Gateway MAC address: 02e0.5200.010f &lt;BR /&gt;
&lt;BR /&gt;
Interface Admin   State  ARP    Load    Threshold Track   Last State&lt;BR /&gt;
      State       Responder Balancing  Priority  Priority Changed&lt;BR /&gt;
========= =====   =====  ========= =========  ========= ======== ==========&lt;BR /&gt;
Ve 191   Enabled  Active  Rbr-id 1  Enabled   unset   0     0d.0h.13m.24s ago&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
show ip fabric-virtual-gateway rbridge-id 200&lt;BR /&gt;
============Rbridge-id:200============&lt;BR /&gt;
&lt;BR /&gt;
Total number of IPv4 Fabric Virtual Gateway Sessions  : 1&lt;BR /&gt;
Sessions in Init state : 0&lt;BR /&gt;
Gateway MAC address: 02e0.5200.010f &lt;BR /&gt;
&lt;BR /&gt;
Interface Admin   State  ARP    Load    Threshold Track   Last State&lt;BR /&gt;
      State       Responder Balancing  Priority  Priority Changed&lt;BR /&gt;
========= =====   =====  ========= =========  ========= ======== ==========&lt;BR /&gt;
Ve 191   Enabled  Active  Rbr-id 200 Enabled   unset   0     0d.0h.13m.27s ago</description>
      <pubDate>Tue, 18 Jun 2019 22:25:57 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79185#M480</guid>
      <dc:creator>wgs</dc:creator>
      <dc:date>2019-06-18T22:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79186#M481</link>
      <description>Second question that I could not find a answer to in documentation: &lt;BR /&gt;
&lt;BR /&gt;
within the ve configuration,  the command &lt;BR /&gt;
 ip fabric-virtual-gateway  &lt;BR /&gt;
&lt;BR /&gt;
asks for an id or autogenerates one. Here ID 1 was autogenerated. &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
rbridge-id 2&lt;BR /&gt;
 interface Ve 1091&lt;BR /&gt;
 vrf forwarding PICKLE&lt;BR /&gt;
 ip fabric-virtual-gateway 1&lt;BR /&gt;
  enable&lt;BR /&gt;
 !&lt;BR /&gt;
 no shutdown&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Does this ID need to be unique within the vcs fabric (appears to be limited to 255)? Is it a way of creating different gateway addresses under the same ve interface? &lt;BR /&gt;
&lt;BR /&gt;
Thank you,&lt;BR /&gt;
&lt;BR /&gt;
wgs</description>
      <pubDate>Tue, 18 Jun 2019 22:32:30 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79186#M481</guid>
      <dc:creator>wgs</dc:creator>
      <dc:date>2019-06-18T22:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79187#M482</link>
      <description>&lt;BR /&gt;
&lt;BR /&gt;
This is not a major issue, as the RB that receives the ARP reqeust will simply forward it to the registered ARP responder.  The election of ARP responder is not a dynamic process and only occurs at the time of configuration.  If you wish to change this you can detach the RBs from the FVG config and reattach them, and the ARP responder election should take place again.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I am not sure what version you are on, but this is not an option in NOS 7.3.0 as there is only 1 global instance of FVG.  So my answer would be, Yes the ID needs to be unique, and No you can not setup multiple gateway IPs or instances like you can in a VRRP-E solution.&lt;BR /&gt;
&lt;BR /&gt;
&lt;DIV class="threadCode"&gt;&lt;B&gt;code:&lt;/B&gt;&lt;PRE spellcheck="false"&gt;Slot  Name  Primary/Secondary Versions             Status&lt;BR /&gt;---------------------------------------------------------------------------&lt;BR /&gt;SW/0  NOS   7.3.0a                       ACTIVE*&lt;BR /&gt;            7.3.0a                        &lt;BR /&gt;SW/1  NOS   7.3.0a                       STANDBY&lt;BR /&gt;            7.3.0a                        &lt;BR /&gt;&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-Ve-6000)# do show run rb 1 int ve 6000&lt;BR /&gt;rbridge-id 1&lt;BR /&gt; interface Ve 6000&lt;BR /&gt; vrf forwarding orange&lt;BR /&gt; ip fabric-virtual-gateway&lt;BR /&gt;  enable&lt;BR /&gt; !&lt;BR /&gt; no shutdown&lt;BR /&gt; !&lt;BR /&gt;!&lt;BR /&gt;Static-Lab-SM08_VDX1(config-rbridge-Ve-6000)# ip fabric-virtual-gateway ?&lt;BR /&gt;Possible completions:&lt;BR /&gt;  1 &lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
&lt;BR /&gt;
Michael Morey&lt;BR /&gt;
Principal Technical Support Engineer – Switching, Routing &amp;amp; Analytics</description>
      <pubDate>Tue, 18 Jun 2019 22:58:33 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79187#M482</guid>
      <dc:creator>Michael_Morey</dc:creator>
      <dc:date>2019-06-18T22:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: VDX NOS: Can fabric virtual gateways be assigned to a VRF?</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79188#M483</link>
      <description>Thank you for the quick reply. We are on much older code, so I think we will upgrade. &lt;BR /&gt;
&lt;BR /&gt;
I do notice that one of my rbridges show ip fabric-virtual-gateway detail lists:&lt;BR /&gt;
&lt;BR /&gt;
  Load balancing configuration: Enabled&lt;BR /&gt;
 Load balancing current status: Disabled&lt;BR /&gt;
&lt;BR /&gt;
I'm not sure what would cause that but I suspect it's a problem.</description>
      <pubDate>Tue, 18 Jun 2019 23:13:25 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/vdx-nos-can-fabric-virtual-gateways-be-assigned-to-a-vrf/m-p/79188#M483</guid>
      <dc:creator>wgs</dc:creator>
      <dc:date>2019-06-18T23:13:25Z</dc:date>
    </item>
  </channel>
</rss>

