<?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: Data Center Fabric Sample Implementation Configuration in Data Center (VDX)</title>
    <link>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83297#M539</link>
    <description>&lt;P&gt;Hi Michael,&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Thanks a lot. This helps us to configure our devices.&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Regards,&lt;/P&gt;  &lt;P&gt;Sazon&lt;/P&gt;</description>
    <pubDate>Wed, 20 May 2020 13:05:25 GMT</pubDate>
    <dc:creator>Sazon</dc:creator>
    <dc:date>2020-05-20T13:05:25Z</dc:date>
    <item>
      <title>Data Center Fabric Sample Implementation Configuration</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83295#M537</link>
      <description>&lt;P&gt;Hi Sirs,&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Please help. Can you share a sample configuration for data center fabric?&amp;nbsp;&lt;/P&gt;  &lt;P&gt;I have 2 units&amp;nbsp;VDX8770 (H.A. via VRRP)&lt;/P&gt;  &lt;P&gt;and 2 units of VDX6740 (connecting the application servers)&lt;/P&gt;  &lt;P&gt;this is a new network. Just an easy set up and configurations will do. Thanks&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;FIGURE&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="44793543350e4db38adab4465616e9ec_dc1c0072-e155-40cd-b5c1-c4d5433801ec.png"&gt;&lt;img src="https://community.extremenetworks.com/t5/image/serverpage/image-id/2487iAB12E0D7B507F703/image-size/large?v=v2&amp;amp;px=999" role="button" title="44793543350e4db38adab4465616e9ec_dc1c0072-e155-40cd-b5c1-c4d5433801ec.png" alt="44793543350e4db38adab4465616e9ec_dc1c0072-e155-40cd-b5c1-c4d5433801ec.png" /&gt;&lt;/span&gt;&lt;/FIGURE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Regards,&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Sazon&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 21:42:08 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83295#M537</guid>
      <dc:creator>Sazon</dc:creator>
      <dc:date>2020-05-19T21:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data Center Fabric Sample Implementation Configuration</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83296#M538</link>
      <description>&lt;P&gt;Sazon,&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;I will assume you have your 8770s and 6740 in a single fabric and the fabric is operational, as this is what I typically see.&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Globally you will want to configure the VLANs in order to allow all 4 devices to use them:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;interface vlan 10&lt;BR /&gt;interface vlan 20&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;Then you would configure your Agg Switches (6740) interfaces appropriately as “Access” for untagged or “Trunk” for tagged:&lt;/P&gt;  &lt;P&gt;Access:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE class="language-bash"&gt;interface TenGigabitEthernet 1/0/1&lt;BR /&gt;&amp;nbsp;switchport&lt;BR /&gt;&amp;nbsp;switchport mode access&lt;BR /&gt;&amp;nbsp;switchport access vlan 10&lt;BR /&gt;&amp;nbsp;spanning-tree shutdown&lt;BR /&gt;&amp;nbsp;fabric isl enable&lt;BR /&gt;&amp;nbsp;fabric trunk enable&lt;BR /&gt;&amp;nbsp;no shutdown&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;Trunk:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE class="language-bash"&gt;interface TenGigabitEthernet 1/0/1&lt;BR /&gt;&amp;nbsp;switchport&lt;BR /&gt;&amp;nbsp;switchport mode trunk&lt;BR /&gt;&amp;nbsp;switchport trunk allowed vlan add 10&lt;BR /&gt;&amp;nbsp;switchport trunk tag native-vlan&lt;BR /&gt;&amp;nbsp;spanning-tree shutdown&lt;BR /&gt;&amp;nbsp;fabric isl enable&lt;BR /&gt;&amp;nbsp;fabric trunk enable&lt;BR /&gt;&amp;nbsp;no shutdown&lt;/CODE&gt;&lt;/PRE&gt;  &lt;UL&gt;&lt;LI&gt;You can allow multiple tagged VLANs per port by specifying them in the “switchport trunk allowed vlan add” command&lt;/LI&gt; &lt;/UL&gt;&lt;P&gt;Traffic should be able to ingress into your fabric in order to reach the 8770/Core devices which will be setup with the L3 interfaces:&lt;/P&gt;  &lt;P&gt;On each Core device you will need to enable VRRP in the RB context:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;conf t&lt;BR /&gt;rb 1&lt;BR /&gt;protocol vrrp&lt;BR /&gt;rb 2&lt;BR /&gt;protocol vrrp&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;Then each RB will have a VE configured:&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;conf t&lt;BR /&gt;rb 1&lt;BR /&gt;int ve 10&lt;BR /&gt;  ip address 192.168.10.2/24&lt;BR /&gt;  vrrp-group 10&lt;BR /&gt;   virtual-ip 192.168.10.1&lt;BR /&gt;   enable&lt;BR /&gt;&lt;BR /&gt;int ve 20&lt;BR /&gt;  ip address 192.168.20.2/24&lt;BR /&gt;  vrrp-group 20&lt;BR /&gt;   virtual-ip 192.168.20.1&lt;BR /&gt;   enable&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;rb 2&lt;BR /&gt;&lt;BR /&gt;int ve 10&lt;BR /&gt;ip address 192.168.10.3/24&lt;BR /&gt;  vrrp-group 10&lt;BR /&gt;   virtual-ip 192.168.10.1&lt;BR /&gt;   enable&lt;BR /&gt;&lt;BR /&gt;int ve 20&lt;BR /&gt;  ip address 192.168.20.3/24&lt;BR /&gt;  vrrp-group 20&lt;BR /&gt;   virtual-ip 192.168.20.1&lt;BR /&gt;   enable&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;Lastly you would need to configure your upstream interfaces to your FW, I would expect as a trunk as well as a port channel (LACP Dynamic LAG) as your diagram shows 2 links going to the same device&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;interface Port-channel 1&lt;BR /&gt; vlag ignore-split&lt;BR /&gt; switchport&lt;BR /&gt; switchport mode trunk&lt;BR /&gt; switchport trunk allowed vlan all&lt;BR /&gt; switchport trunk tag native-vlan&lt;BR /&gt; spanning-tree shutdown&lt;BR /&gt; no shutdown&lt;BR /&gt;&lt;BR /&gt;interface TenGigabitEthernet 1/0/31&lt;BR /&gt; channel-group 1 mode active type standard&lt;BR /&gt; fabric isl enable&lt;BR /&gt; fabric trunk enable&lt;BR /&gt; lacp timeout long&lt;BR /&gt; no shutdown&lt;BR /&gt;&lt;BR /&gt;interface TenGigabitEthernet 2/0/31&lt;BR /&gt; channel-group 1 mode active type standard&lt;BR /&gt; fabric isl enable&lt;BR /&gt; fabric trunk enable&lt;BR /&gt; lacp timeout long&lt;BR /&gt; no shutdown&lt;/CODE&gt;&lt;/PRE&gt;  &lt;UL&gt;&lt;LI&gt;As I described above, you can allow all as I have done here or limit this to just 10 and 20&lt;/LI&gt; &lt;/UL&gt;&lt;PRE&gt;&lt;CODE&gt;interface Port-channel 1&lt;BR /&gt; vlag ignore-split&lt;BR /&gt; switchport&lt;BR /&gt; switchport mode trunk&lt;BR /&gt; switchport trunk allowed vlan add 10,20 &lt;BR /&gt; switchport trunk tag native-vlan&lt;BR /&gt; spanning-tree shutdown&lt;BR /&gt; no shutdown&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;For more information, please visit our &lt;A href="https://www.extremenetworks.com/support/documentation/network-os-software-7-2-0/" target="_blank" rel="nofollow noreferrer noopener"&gt;Configuration Guides&lt;/A&gt; website&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 03:29:08 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83296#M538</guid>
      <dc:creator>Michael_Morey</dc:creator>
      <dc:date>2020-05-20T03:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data Center Fabric Sample Implementation Configuration</title>
      <link>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83297#M539</link>
      <description>&lt;P&gt;Hi Michael,&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Thanks a lot. This helps us to configure our devices.&lt;/P&gt;  &lt;P&gt;&amp;nbsp;&lt;/P&gt;  &lt;P&gt;Regards,&lt;/P&gt;  &lt;P&gt;Sazon&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 13:05:25 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/data-center-vdx/data-center-fabric-sample-implementation-configuration/m-p/83297#M539</guid>
      <dc:creator>Sazon</dc:creator>
      <dc:date>2020-05-20T13:05:25Z</dc:date>
    </item>
  </channel>
</rss>

