{"id":1353,"date":"2023-06-25T02:06:05","date_gmt":"2023-06-24T18:06:05","guid":{"rendered":"\/?p=1353"},"modified":"2023-06-25T02:06:05","modified_gmt":"2023-06-24T18:06:05","slug":"configuring-stp-interoperability-between-dell-and-cisco-switches","status":"publish","type":"post","link":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/","title":{"rendered":"Configuring STP interoperability between Dell and Cisco Switches"},"content":{"rendered":"<p>Consider the following network diagram:<br \/>\n<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.insecurewi.re\/wp-content\/themes\/breek\/assets\/images\/transparent.gif\" data-lazy=\"true\" data-src=\"\/wp-content\/uploads\/2023\/06\/Dell-STP.png\" alt=\"\" width=\"740\" height=\"499\" class=\"alignnone size-full wp-image-1378\" data-srcset=\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/Dell-STP.png 740w, https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/Dell-STP-300x202.png 300w, https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/Dell-STP-100x67.png 100w, https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/Dell-STP-667x450.png 667w\" data-sizes=\"auto, (max-width: 740px) 100vw, 740px\" \/><br \/>\n&#8211; Dell OS10 Cores in VLT mode.<br \/>\n&#8211; Cisco Switches running IOS-V<br \/>\n&#8211; A vLT trunk to the Cisco access switch nammed &#8220;Office&#8221;<br \/>\n&#8211; A standard dot1q trunk to a Cisco access switch named &#8220;Factory&#8221;<br \/>\n&#8211; Dell side is running RSTP and the Cisco side PVST+<br \/>\n&#8211; In the above example the Factory is a single trunk to test the interoperability without VLT.<br \/>\n&#8211; In the real world this was experienced with Dell S4112F-ON running OS 10 and Cisco 3850s running IOS-XE.<br \/>\n&#8211; The above scenario is a recreation in GNS3<\/p>\n<p>We have a problem here. Cisco side sends BPDU to specific multicast address which the Dell switch cannot respond to. Meaning nothing but vlan 1 traffic would pass. This is mentioned in the Dell Networking Cisco Spanning Tree Interopability guide <a href=\"https:\/\/i.dell.com\/sites\/csdocuments\/Shared-Content_data-Sheets_Documents\/en\/us\/Dell-Networking-and-Cisco-Spanning-Tree-Interoperability.pdf\" rel=\"noopener\" target=\"_blank\">here<\/a><\/p>\n<blockquote><p>With RSTP, a direct message exchange takes place between point to point links. This exchange<br \/>\nconsists of an RSTP BPDU proposal message and an agreement message. With RPVST+, the same<br \/>\nmessage exchange takes place; however, these messages are being generated on a per-vlan basis.<br \/>\nRPVST+ is a Cisco proprietary implementation and the way it works, is by generating and sending<br \/>\nthese exchange messages to a specific multicast address for any other vlan other<br \/>\nthan vlan 1, and this multicast address is understood *only* by the Cisco switch.<\/p><\/blockquote>\n<p>The easiest way to fix this is to use a native vlan ID other than 1, for example 100. There is no need to add the native VLAN to the allow list on the Dell OS10 side as it is implictly alloed by default. On the Cisco side it must be allowed.<br \/>\n1. Set spanning tree priority for vlans on Dell Core 1:<br \/>\n<code>spanning-tree vlan 1-3,100,550,824 priority 4096<\/code><br \/>\n2. Set spanning tree priority on Dell Core 2:<br \/>\n<code>spanning-tree vlan 1-3,100,550,824 priority 8192<\/code><br \/>\n3. Add a Native VLAN and set it on the link to Factory and Office Cisco switches:<br \/>\n<code>interface vlan100<br \/>\n description NATIVE<br \/>\n no shutdown<br \/>\ninterface port-channel10<br \/>\n no shutdown<br \/>\n switchport mode trunk<br \/>\n switchport access vlan 100<br \/>\n switchport trunk allowed vlan 2-3,550<br \/>\n vlt-port-channel 10<br \/>\n!<br \/>\ninterface ethernet1\/1\/1<br \/>\n description Link-1-to-Office<br \/>\n no shutdown<br \/>\n channel-group 10 mode active<br \/>\n no switchport<br \/>\n flowcontrol receive on<br \/>\n!<br \/>\ninterface ethernet1\/1\/5<br \/>\n description Link-to-Factory<br \/>\n no shutdown<br \/>\n switchport mode trunk<br \/>\n switchport access vlan 100<br \/>\n switchport trunk allowed vlan 2-3,550,824<br \/>\n flowcontrol receive on<\/code><br \/>\n4. Do the same on the Dell Core 2 side. Now set the Cisco side for Factory and Office switches.<br \/>\n<strong>Office:<\/strong><br \/>\n<code>spanning-tree mode rapid-pvst<br \/>\nspanning-tree vlan 1-3,100,550 priority 61440<br \/>\ninterface Port-channel10<br \/>\n description Link to VLT<br \/>\n switchport trunk encapsulation dot1q<br \/>\n switchport trunk native vlan 100<br \/>\n switchport mode trunk<br \/>\n!<br \/>\ninterface GigabitEthernet0\/0<br \/>\n description Link to Core-1<br \/>\n switchport trunk encapsulation dot1q<br \/>\n switchport trunk native vlan 100<br \/>\n switchport mode trunk<br \/>\n negotiation auto<br \/>\n channel-group 10 mode active<br \/>\n!<br \/>\ninterface GigabitEthernet0\/1<br \/>\n description Link to Core-2<br \/>\n switchport trunk encapsulation dot1q<br \/>\n switchport trunk native vlan 100<br \/>\n switchport mode trunk<br \/>\n negotiation auto<br \/>\n channel-group 10 mode active<\/code><br \/>\n<strong>Factory:<\/strong><br \/>\nspanning-tree mode rapid-pvst<br \/>\nspanning-tree vlan 100,550,824 priority 61440<br \/>\n!<br \/>\ninterface GigabitEthernet1\/1<br \/>\n switchport trunk allowed vlan 2,3,100,550,824<br \/>\n switchport trunk encapsulation dot1q<br \/>\n switchport trunk native vlan 100<br \/>\n switchport mode trunk<\/code><\/p>\n<p>5. Ok sweet, lets verify:<br \/>\n<strong>Core-1:<\/strong><br \/>\nCore-1# show spanning-tree vlan 100<br \/>\nSpanning tree enabled protocol rapid-pvst with force-version rstp<br \/>\nVLAN 100<br \/>\nExecuting IEEE compatible Spanning Tree Protocol<br \/>\nRoot ID    Priority 4196, Address <strong>0cea.7b2e.0000<\/strong><br \/>\nRoot Bridge hello time 2, max age 20, forward delay 15<br \/>\nBridge ID    Priority 4196, Address 0cea.7b2e.0000<br \/>\n<strong>We are the root of VLAN 100<\/strong><br \/>\nConfigured hello time 2, max age 20, forward delay 15<br \/>\nFlush Interval 200 centi-sec, Flush Invocations 14<br \/>\nFlush Indication threshold 5<\/p>\n<p><strong>Core-2:<\/strong><br \/>\nCore-2# show spanning-tree vlan 100<br \/>\nSpanning tree enabled protocol rapid-pvst with force-version rstp<br \/>\nVLAN 100<br \/>\nExecuting IEEE compatible Spanning Tree Protocol<br \/>\nRoot ID    Priority 4196, Address <strong>0cea.7b2e.0000<\/strong><br \/>\nRoot Bridge hello time 2, max age 20, forward delay 15<br \/>\nBridge ID    Priority 8292, Address 0c47.b9db.0000<br \/>\nConfigured hello time 2, max age 20, forward delay 15<br \/>\nFlush Interval 200 centi-sec, Flush Invocations 2<br \/>\nFlush Indication threshold 5<br \/>\nInterface                                                            Designated<br \/>\nName              PortID    Prio      Cost      Sts         Cost      Bridge ID               PortID<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\nport-channel10    128.2674  128       1000000   FWD         1         8292     0c47.b9db.0000  128.2674<br \/>\nInterface<br \/>\nName              Role    PortID    Prio      Cost      Sts         Cost      Link-type   Edge<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br \/>\nport-channel10    Desg    128.2674  128       1000000   FWD         1         AUTO        No<\/p>\n<p><strong>Office:<\/strong><br \/>\nOffice#show spanning-tree summary<br \/>\nSwitch is in rapid-pvst mode<br \/>\nRoot bridge for: none<\/p>\n<p>Office#show spanning-tree vlan 100<\/p>\n<p>VLAN0100<br \/>\n  Spanning tree enabled protocol rstp<br \/>\n  Root ID    Priority    4196<br \/>\n             Address     <strong>0cea.7b2e.0000<\/strong><br \/>\n             Cost        3<br \/>\n             Port        65 (Port-channel10)<br \/>\n             Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec<\/p>\n<p>  Bridge ID  Priority    32868  (priority 32768 sys-id-ext 100)<br \/>\n             Address     0cd2.4419.0000<br \/>\n             Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec<br \/>\n             Aging Time  300 sec<\/p>\n<p>Interface           Role Sts Cost      Prio.Nbr Type<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8212;- &#8212; &#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\nPo10                Root FWD 3         128.65   P2p<\/p>\n<p><strong>Factory:<\/strong><br \/>\nFactory#show spanning-tree summary<br \/>\nSwitch is in rapid-pvst mode<br \/>\nRoot bridge for: none<br \/>\n!<br \/>\nFactory#show spanning-tree vlan 100<br \/>\nVLAN0100<br \/>\n  Spanning tree enabled protocol rstp<br \/>\n  Root ID    Priority    4196<br \/>\n             Address     <strong>0cea.7b2e.0000<\/strong><br \/>\n             Cost        4<br \/>\n             Port        6 (GigabitEthernet1\/1)<br \/>\n             Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec<\/p>\n<p>  Bridge ID  Priority    61540  (priority 61440 sys-id-ext 100)<br \/>\n             Address     0c7f.b632.0000<br \/>\n             Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec<br \/>\n             Aging Time  300 sec<\/p>\n<p>Interface           Role Sts Cost      Prio.Nbr Type<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8212;- &#8212; &#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>\nGi1\/1               Root FWD 4         128.6    P2p<\/p>\n<p>As you can see the stp instances on both vendors are converged, the above verification depicts the native vlan 100 is root on Dell-Core-1 (0cea.7b2e.0000).<br \/>\nAs soon as vlan 1 was no longer the native vlan id for stp bpdu exchange, everything works as it should. <\/p>\n<p>I hope this helps anyone else trying to configure Dell OS 10 to Cisco IOS-XE STP.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Consider the following network diagram: &#8211; Dell OS10 Cores in VLT mode. &#8211; Cisco Switches running IOS-V &#8211; A vLT trunk to the Cisco access&#8230;<\/p>\n","protected":false},"author":2,"featured_media":1386,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24,26,12],"tags":[67,76,87,153,171,173,197],"class_list":["post-1353","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cisco","category-dell","category-switching","tag-cisco","tag-convergence","tag-dell","tag-rapid-pvst","tag-stp","tag-switching","tag-vlan"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Configuring STP interoperability between Dell and Cisco Switches - Insecure Wire<\/title>\n<meta name=\"description\" content=\"Configuring STP interoperability between Dell and Cisco Switches\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configuring STP interoperability between Dell and Cisco Switches - Insecure Wire\" \/>\n<meta property=\"og:description\" content=\"Configuring STP interoperability between Dell and Cisco Switches\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\" \/>\n<meta property=\"og:site_name\" content=\"Insecure Wire\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-24T18:06:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"238\" \/>\n\t<meta property=\"og:image:height\" content=\"212\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"nikonau\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/insecurewire\" \/>\n<meta name=\"twitter:site\" content=\"@insecurewire\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"nikonau\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\"},\"author\":{\"name\":\"nikonau\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d\"},\"headline\":\"Configuring STP interoperability between Dell and Cisco Switches\",\"datePublished\":\"2023-06-24T18:06:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\"},\"wordCount\":737,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.insecurewi.re\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png\",\"keywords\":[\"Cisco\",\"Convergence\",\"Dell\",\"Rapid-PVST\",\"STP\",\"Switching\",\"VLAN\"],\"articleSection\":[\"Cisco\",\"Dell\",\"Switching\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\",\"url\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\",\"name\":\"Configuring STP interoperability between Dell and Cisco Switches - Insecure Wire\",\"isPartOf\":{\"@id\":\"https:\/\/www.insecurewi.re\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png\",\"datePublished\":\"2023-06-24T18:06:05+00:00\",\"description\":\"Configuring STP interoperability between Dell and Cisco Switches\",\"breadcrumb\":{\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage\",\"url\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png\",\"contentUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png\",\"width\":238,\"height\":212,\"caption\":\"VLT\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.insecurewi.re\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Configuring STP interoperability between Dell and Cisco Switches\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.insecurewi.re\/#website\",\"url\":\"https:\/\/www.insecurewi.re\/\",\"name\":\"Insecure Wire\",\"description\":\"A Network Engineer\u2019s Perspective.\",\"publisher\":{\"@id\":\"https:\/\/www.insecurewi.re\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.insecurewi.re\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.insecurewi.re\/#organization\",\"name\":\"Insecure Wire\",\"url\":\"https:\/\/www.insecurewi.re\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png\",\"contentUrl\":\"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png\",\"width\":32,\"height\":32,\"caption\":\"Insecure Wire\"},\"image\":{\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/insecurewire\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d\",\"name\":\"nikonau\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.insecurewi.re\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g\",\"caption\":\"nikonau\"},\"sameAs\":[\"https:\/\/x.com\/https:\/\/twitter.com\/insecurewire\"],\"url\":\"https:\/\/www.insecurewi.re\/index.php\/author\/nikon\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Configuring STP interoperability between Dell and Cisco Switches - Insecure Wire","description":"Configuring STP interoperability between Dell and Cisco Switches","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/","og_locale":"en_US","og_type":"article","og_title":"Configuring STP interoperability between Dell and Cisco Switches - Insecure Wire","og_description":"Configuring STP interoperability between Dell and Cisco Switches","og_url":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/","og_site_name":"Insecure Wire","article_published_time":"2023-06-24T18:06:05+00:00","og_image":[{"width":238,"height":212,"url":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png","type":"image\/png"}],"author":"nikonau","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/insecurewire","twitter_site":"@insecurewire","twitter_misc":{"Written by":"nikonau","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#article","isPartOf":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/"},"author":{"name":"nikonau","@id":"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d"},"headline":"Configuring STP interoperability between Dell and Cisco Switches","datePublished":"2023-06-24T18:06:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/"},"wordCount":737,"commentCount":0,"publisher":{"@id":"https:\/\/www.insecurewi.re\/#organization"},"image":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage"},"thumbnailUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png","keywords":["Cisco","Convergence","Dell","Rapid-PVST","STP","Switching","VLAN"],"articleSection":["Cisco","Dell","Switching"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/","url":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/","name":"Configuring STP interoperability between Dell and Cisco Switches - Insecure Wire","isPartOf":{"@id":"https:\/\/www.insecurewi.re\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage"},"image":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage"},"thumbnailUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png","datePublished":"2023-06-24T18:06:05+00:00","description":"Configuring STP interoperability between Dell and Cisco Switches","breadcrumb":{"@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#primaryimage","url":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png","contentUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/06\/vlt-1.png","width":238,"height":212,"caption":"VLT"},{"@type":"BreadcrumbList","@id":"https:\/\/www.insecurewi.re\/index.php\/2023\/06\/25\/configuring-stp-interoperability-between-dell-and-cisco-switches\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.insecurewi.re\/"},{"@type":"ListItem","position":2,"name":"Configuring STP interoperability between Dell and Cisco Switches"}]},{"@type":"WebSite","@id":"https:\/\/www.insecurewi.re\/#website","url":"https:\/\/www.insecurewi.re\/","name":"Insecure Wire","description":"A Network Engineer\u2019s Perspective.","publisher":{"@id":"https:\/\/www.insecurewi.re\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.insecurewi.re\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.insecurewi.re\/#organization","name":"Insecure Wire","url":"https:\/\/www.insecurewi.re\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/","url":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png","contentUrl":"https:\/\/www.insecurewi.re\/wp-content\/uploads\/2023\/10\/cloud.png","width":32,"height":32,"caption":"Insecure Wire"},"image":{"@id":"https:\/\/www.insecurewi.re\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/insecurewire"]},{"@type":"Person","@id":"https:\/\/www.insecurewi.re\/#\/schema\/person\/8ba08b41fc754b971a948ead6ccb777d","name":"nikonau","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.insecurewi.re\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d1b9d9dc90da4f6d3da31b870f418c6b3553ba9be48d53e8ee3a35b0adb1d35?s=96&d=mm&r=g","caption":"nikonau"},"sameAs":["https:\/\/x.com\/https:\/\/twitter.com\/insecurewire"],"url":"https:\/\/www.insecurewi.re\/index.php\/author\/nikon\/"}]}},"_links":{"self":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/posts\/1353","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/comments?post=1353"}],"version-history":[{"count":0,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/posts\/1353\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/media\/1386"}],"wp:attachment":[{"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/media?parent=1353"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/categories?post=1353"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.insecurewi.re\/index.php\/wp-json\/wp\/v2\/tags?post=1353"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}