{"id":1823,"date":"2020-11-19T16:50:00","date_gmt":"2020-11-19T13:50:00","guid":{"rendered":"https:\/\/isp-tech.ru\/en\/?p=1823"},"modified":"2021-04-19T23:43:01","modified_gmt":"2021-04-19T20:43:01","slug":"configure-huawei-vpls","status":"publish","type":"post","link":"https:\/\/isp-tech.ru\/en\/configure-huawei-vpls\/","title":{"rendered":"VPLS Configuration on Huawei switches"},"content":{"rendered":"\n<p>Today I will be discussing VPLS configuration (Virtual Private LAN Services) on Huawei switches in a multi-vendor environment. I will test VPLS between Huawei S6700, <a href=\"https:\/\/isp-tech.ru\/en\/switch-asic\/extreme-x670\/\" target=\"_blank\" rel=\"noreferrer noopener\">Extreme X670<\/a> and Juniper MX960.<\/p>\n\n\n\n<p>Lab scheme:<br><\/p>\n\n\n\nngg_shortcode_0_placeholder\n\n\n\n<p>We will use Martini VPLS with LDP signaling .<br>First, we need to configure IGP and LDP between all nodes on the network. Will use OSFP as IGP.<br><strong><br>I will not post the PE3 config and redundant links related config, as it will take too long output.<\/strong><br><br>IGP\/LDP configuration of <strong>PE4<\/strong> Huawei S6700:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [1,23,31]; title: ; notranslate\" title=\"\">\n# interface facing PE2\n#\ninterface Vlanif10\n description PE4-PE2-igp\n ip address 10.10.100.1 255.255.255.252\n ospf network-type p2p\n ospf ldp-sync\n ospf enable 1 area 0.0.0.0\n mpls\n mpls te\n mpls ldp\n\ninterface XGigabitEthernet0\/0\/48\n description PE4-PE2\n port link-type trunk\n undo port trunk allow-pass vlan 1\n port trunk allow-pass vlan 10\n#\ninterface LoopBack0\n ip address 10.10.10.33 255.255.255.255\n ospf enable 1 area 0.0.0.0\n#\n#OSPF\n#\nospf 1\n opaque-capability enable\n area 0.0.0.0\n  network 10.10.100.0 0.0.0.255\n  mpls-te enable\n#\n#MPLS\n#\nmpls lsr-id 10.10.10.33\nmpls\n mpls te\n label advertise non-null\n mpls rsvp-te                             \n mpls te cspf\n#\nmpls l2vpn\n#\nmpls ldp\n<\/pre><\/div>\n\n\n<p>IGP\/LDP configuration of <strong>PE2<\/strong> Extreme X670:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [0,1,8,16,23]; title: ; notranslate\" title=\"\">\n#create Lo0\ncreate vlan &quot;Loopback0&quot;\nenable loopback-mode vlan Loopback0\nconfigure vlan Loopback0 ipaddress 10.10.10.32 255.255.255.255\nenable ipforwarding vlan Loopback0\nconfigure ip-mtu 9170 vlan Loopback0\n\n#creating vlan for IGP between PE2 and PE4\ncreate vlan &quot;pe2-pe4-igp&quot;\nconfigure vlan pe2-pe4-igp tag 10\nconfigure vlan pe2-pe4-igp add ports 48 tagged  \nconfigure vlan pe2-pe4-igp ipaddress 10.10.100.2 255.255.255.252\nenable ipforwarding vlan pe2-pe4-igp\nconfigure ip-mtu 9170 vlan pe2-pe4-igp\n\n#OSFP\nconfigure ospf routerid 10.10.10.32\nenable ospf\nconfigure ospf add vlan Loopback0 area 0.0.0.0 \nconfigure ospf vlan Loopback0 cost 1\nconfigure ospf add vlan pe2-pe4-igp area 0.0.0.0 link-type point-to-point \n\n#MPLS\nconfigure mpls lsr-id 10.10.10.32\nenable mpls\nenable mpls protocol ldp\nenable mpls protocol rsvp-te\nconfigure mpls add vlan &quot;Loopback0&quot;\nenable mpls vlan &quot;Loopback0&quot;\nenable mpls ldp vlan &quot;Loopback0&quot;\nconfigure mpls add vlan &quot;pe2-pe4-igp&quot;\nenable mpls vlan &quot;pe2-pe4-igp&quot;\nenable mpls rsvp-te vlan &quot;pe2-pe4-igp&quot;\nenable mpls ldp vlan &quot;pe2-pe4-igp&quot;\n<\/pre><\/div>\n\n\n<p>IGP\/LDP configuration of <strong>PE1<\/strong> Juniper MX960:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [1,13,27,33,50]; title: ; notranslate\" title=\"\">\n#interfaces config\nlo0 {\n    description LOOPBACK;\n    unit 0 {\n        family inet {                 \n            address 10.10.10.1\/32 {\n                primary;\n            }\n        }\n}\n}\n\n#port facing PE2\nxe-0\/1\/2 {\ndescription &quot;PE1-PE2&quot;;\nflexible-vlan-tagging;\nmtu 9192;\nencapsulation flexible-ethernet-services;\nunit 12 {\n    description &quot;PE1-PE2-igp&quot;;\n    vlan-id 12;\n    family inet {\n        address 10.10.100.10\/30;\n    }\n}\n}\n#MPLS\nmpls {\n    interface lo0.0;\n    interface xe-0\/1\/2.12;\n}\n\n#OSPF \nospf {\n    traffic-engineering;\n    area 0.0.0.0 {\n        interface all {\n            disable;\n        }\n        interface lo0.0 {             \n            metric 1;\n        }\n        interface xe-0\/1\/2.12 {\n            interface-type p2p;\n            metric 1;\n        }\n    }\n}\n\n#LDP \n\nldp {\n    track-igp-metric;\n    interface xe-0\/1\/2.12;\n    interface lo0.0;\n}\n<\/pre><\/div>\n\n\n<p>Now we need to check  IGP and LDP neighborhood is established everywhere.<br>PE4:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [1,26]; title: ; notranslate\" title=\"\">\nPE4&gt;display ospf peer \n\n         OSPF Process 1 with Router ID 10.10.10.33\n                 Neighbors \n\n Area 0.0.0.0 interface 10.10.100.1(Vlanif10)&#039;s neighbors\n Router ID: 10.10.10.32       Address: 10.10.100.2    \n   State: Full  Mode:Nbr is  Slave  Priority: 1\n   DR: None   BDR: None   MTU: 9170 \n   Dead timer due in 33  sec \n   Retrans timer interval: 6 \n   Neighbor is up for 00:04:35   \n   Authentication Sequence: &#x5B; 0 ] \n\n                 Neighbors \n\n Area 0.0.0.0 interface 10.10.100.5(Vlanif11)&#039;s neighbors\n Router ID: 10.10.10.31      Address: 10.10.100.6    \n   State: Full  Mode:Nbr is  Slave  Priority: 1\n   DR: None   BDR: None   MTU: 9170 \n   Dead timer due in 40  sec \n   Retrans timer interval: 7 \n   Neighbor is up for 00:05:58    \n   Authentication Sequence: &#x5B; 0 ] \n\nPE4&gt;dis mpls ldp peer \n \n LDP Peer Information in Public network\n A &#039;*&#039; before a peer means the peer is being deleted.\n ------------------------------------------------------------------------------\n PeerID                 TransportAddress   DiscoverySource\n ------------------------------------------------------------------------------\n 10.10.10.32:0           10.10.10.32         Vlanif10\n 10.10.10.31:0          10.10.10.31        Vlanif11\n\n<\/pre><\/div>\n\n\n<p>PE2:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [1,11]; title: ; notranslate\" title=\"\">\nPE2 # sh ospf neighbor \nNeighbor ID     Pri State       Up\/Dead Time      Address  Interface        \n\n==========================================================================================\n10.10.10.33     128 FULL      \/DROTHER 00:00:07:53\/00:00:00:07  10.10.100.1     pe2-pe4-igp\n        \n\n10.10.10.1     128 FULL      \/DROTHER 00:00:05:31\/00:00:00:02  10.10.100.10    pe2-pe1-igp \n\n  \nPE2 # sh mpls ldp peer \nIP Address      LDP Peer             State        Uptime          Adjacencies\n10.10.10.32     10.10.10.33:0       Operational  0d:0h:7m:53s      1\n10.10.10.32     10.10.10.1:0        Operational  0d:0h:5m:31s     1\n<\/pre><\/div>\n\n\n<p>PE1:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [1,5]; title: ; notranslate\" title=\"\">\nPE1&gt; show ospf neighbor \nAddress          Interface              State     ID               Pri  Dead\n10.10.100.9     xe-0\/1\/2.12             Full      10.10.10.32    128    35\n10.10.100.18    xe-0\/1\/3.14             Full      10.10.10.31    128    33\nrt1.msk&gt; show ldp neighbor        \nAddress            Interface          Label space ID         Hold time\n10.10.10.31        xe-0\/1\/3.14        10.10.10.31:0            37\n10.10.10.32        xe-0\/1\/2.12        10.10.10.32:0            40\n<\/pre><\/div>\n\n\n<p>So, all OSFP and LDP sessions are established, it&#8217;s time to move on to VPLS configuration. <\/p>\n\n\n\n<p>Huawei S6700 only supports Vlan Based VPLS, so the service is bound to the Vlanif interface:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [1,2,19,37,38,55]; title: ; notranslate\" title=\"\">\n#config of VPLS1-BLUE\n#ldp peer config \nmpls ldp remote-peer 10.10.10.1\n remote-ip 10.10.10.1\n#\nvsi VPLS1-BLUE\n pwsignal ldp\n  vsi-id 100\n  peer 10.10.10.1\n mtu 9000\n encapsulation ethernet\n\nvlan 100\n description VPLS1-BLUE           \n#\ninterface Vlanif100\n l2 binding vsi VPLS1-BLUE\n\n#interface facing CE3\n\ninterface XGigabitEthernet0\/0\/22\n description VPLS1-BLUE-CE3\n port link-type access\n port default vlan 100\n stp disable\n stp bpdu-filter enable\n stp edged-port enable\n undo ntdp enable\n undo ndp enable\n port discard tagged-packet\n storm-control broadcast min-rate 200 max-rate 350\n storm-control multicast min-rate 2000 max-rate 3500\n storm-control interval 2                 \n storm-control action block\n storm-control enable log\n\n#config of VPLS2-RED\n#ldp peer config \nmpls ldp remote-peer 10.10.10.32\n remote-ip 10.10.10.32\n#\nvsi VPLS2-RED\n pwsignal ldp\n  vsi-id 200\n  peer 10.10.10.32\n mtu 9000\n encapsulation ethernet\n\nvlan 200\n description VPLS2-RED          \n#\ninterface Vlanif200\n l2 binding vsi VPLS2-RED\n\n#interface facing CE1\n\ninterface XGigabitEthernet0\/0\/21\n description VPLS2-RED-CE1\n port link-type access\n port default vlan 200\n stp disable\n stp bpdu-filter enable\n stp edged-port enable\n undo ntdp enable\n undo ndp enable\n port discard tagged-packet\n storm-control broadcast min-rate 200 max-rate 350\n storm-control multicast min-rate 2000 max-rate 3500\n storm-control interval 2                 \n storm-control action block\n storm-control enable log\n<\/pre><\/div>\n\n\n<p>PE2 config:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ncreate vlan &quot;CE1-CE4&quot;\nconfigure vlan CE1-CE4 tag 200\nconfigure vlan CE1-CE4 add ports 10 untagged  \n\ndisable igmp snooping vlan &quot;CE1-CE4&quot;\ndisable igmp vlan &quot;CE1-CE4&quot; \ndisable igmp proxy-query vlan &quot;CE1-CE4&quot;\n\ncreate l2vpn vpls vpls-pe2-pe4-CE1-CE4 fec-id-type pseudo-wire 200\nconfigure l2vpn vpls vpls-pe2-pe4-CE1-CE4 add service vlan CE1-CE4\nconfigure l2vpn vpls vpls-pe2-pe4-CE1-CE4 mtu 9170\nconfigure l2vpn vpls vpls-pe2-pe4-CE1-CE4 add peer 10.10.10.33 core full-mesh\n<\/pre><\/div>\n\n\n<p>PE1 config:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nrouting-instances {\nVPLS1-BLUE {\n    instance-type vpls;\n    interface ae13.100;\n    protocols {\n        vpls {\n      \n      no-tunnel-services;\n            vpls-id 100;\n            mtu 9000;\n            neighbor 10.10.10.33 {\n                encapsulation-type ethernet;\n            }\n        }\n    }\n}\n}\n\nxe-0\/3\/3 {\n   description &quot;CE2&quot;;\n   unit 0 {\n     description &quot;PE1-PE2-igp&quot;;\n     encapsulation vlan-vpls;\n     input-vlan-map pop;\n     output-vlan-map push;\n     family vpls;\n    }\n}\n\n\n\n<\/pre><\/div>\n\n\n<p>Finally, the configuration stage is done, we can start testing and verification.<br><br>Checking PE4:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nPE4&gt;display vpls connection \n\n2 total connections, \nconnections: 2 up, 0 down, 2 ldp, 0 bgp, 0 bgpad\n\nVSI Name: VPLS1-BLUE                Signaling: ldp\nVsiID                 EncapType      PeerAddr        InLabel   OutLabel  VCState\n100                 ethernet       10.10.10.1     1136      1168      up     \nVSI Name: VPLS2-RED                  Signaling: ldp\nVsiID                 EncapType      PeerAddr        InLabel   OutLabel  VCState\n200                  ethernet       10.10.10.32      1095      1077      up     \n<\/pre><\/div>\n\n\n<p>PE2:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nPE2 # show vpls \nL2VPN Name      VPN ID Flags   Services Name   Peer IP         State Flags \n--------------- ------ ------- --------------- --------------- ----- -------\nvpls-pe2-pe4-CE1-CE4   200  EAX--L- CE1-CE4    10.10.10.33     Up    C---V-L\n\n<\/pre><\/div>\n\n\n<p>PE1:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nPE1&gt; show vpls connections \nLayer-2 VPN connections:\n\nLegend for interface status \nUp -- operational           \nDn -- down\n\nInstance: VPLS1-BLUE\n  VPLS-id: 100\n    Neighbor                  Type  St     Time last up          # Up trans\n    10.10.10.33(vpls-id 100)  rmt   Up     Nov 19 14:45:53 2020           1\n      Remote PE: 10.10.10.33, Negotiated control-word: No\n      Incoming label: 262145, Outgoing label: 1089\n      Negotiated PW status TLV: No\n      Local interface: lsi.1049510, Status: Up, Encapsulation: ETHERNET\n        Description: Intf - vpls VPLS1-BLUE neighbor 10.10.10.33 vpls-id 100\n      Flow Label Transmit: No, Flow Label Receive: No\n<\/pre><\/div>\n\n\n<p>All instances are up, traffic between CEs is successfully transmitted.<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today I will be discussing VPLS configuration (Virtual Private LAN Services) on Huawei switches in a multi-vendor environment. I will test VPLS between Huawei S6700, Extreme X670 and Juniper MX960. Lab scheme: We will use Martini VPLS with LDP signaling .First, we need to configure IGP and LDP between all nodes on the network. Will\u2026 <span class=\"read-more\"><a href=\"https:\/\/isp-tech.ru\/en\/configure-huawei-vpls\/\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[30],"tags":[29,31,32,18,20,14],"class_list":["post-1823","post","type-post","status-publish","format-standard","hentry","category-mpls-huawei","tag-huawei-configuration","tag-mpls","tag-vpls","tag-extreme-summit","tag-huawei","tag-juniper"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>VPLS Configuration on Huawei switches - isp-tech.ru<\/title>\n<meta name=\"description\" content=\"Configure vpls on Huawei switch. Martini VPLS between huawei and Juniper and Extreme summit. Config samples.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/isp-tech.ru\/en\/configure-huawei-vpls\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363\"},\"headline\":\"VPLS Configuration on Huawei switches\",\"datePublished\":\"2020-11-19T13:50:00+00:00\",\"dateModified\":\"2021-04-19T20:43:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/\"},\"wordCount\":356,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363\"},\"keywords\":[\"Huawei configuration\",\"MPLS\",\"VPLS\",\"Extreme Summit\",\"Huawei\",\"Juniper\"],\"articleSection\":[\"MPLS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/\",\"url\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/\",\"name\":\"VPLS Configuration on Huawei switches\",\"isPartOf\":{\"@id\":\"https:\/\/isp-tech.ru\/#website\"},\"datePublished\":\"2020-11-19T13:50:00+00:00\",\"dateModified\":\"2021-04-19T20:43:01+00:00\",\"description\":\"Configure vpls on Huawei switch. Martini VPLS between huawei and Juniper and Extreme summit. Config samples.\",\"breadcrumb\":{\"@id\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\",\"item\":\"https:\/\/isp-tech.ru\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"VPLS Configuration on Huawei switches\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/isp-tech.ru\/#website\",\"url\":\"https:\/\/isp-tech.ru\/\",\"name\":\"isp-tech.ru\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/isp-tech.ru\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363\",\"name\":\"admin\",\"logo\":{\"@id\":\"https:\/\/isp-tech.ru\/#\/schema\/person\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"VPLS Configuration on Huawei switches - isp-tech.ru","description":"Configure vpls on Huawei switch. Martini VPLS between huawei and Juniper and Extreme summit. Config samples.","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:\/\/isp-tech.ru\/en\/configure-huawei-vpls\/","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#article","isPartOf":{"@id":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/"},"author":{"name":"admin","@id":"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363"},"headline":"VPLS Configuration on Huawei switches","datePublished":"2020-11-19T13:50:00+00:00","dateModified":"2021-04-19T20:43:01+00:00","mainEntityOfPage":{"@id":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/"},"wordCount":356,"commentCount":2,"publisher":{"@id":"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363"},"keywords":["Huawei configuration","MPLS","VPLS","Extreme Summit","Huawei","Juniper"],"articleSection":["MPLS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/isp-tech.ru\/configure-huawei-vpls\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/","url":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/","name":"VPLS Configuration on Huawei switches","isPartOf":{"@id":"https:\/\/isp-tech.ru\/#website"},"datePublished":"2020-11-19T13:50:00+00:00","dateModified":"2021-04-19T20:43:01+00:00","description":"Configure vpls on Huawei switch. Martini VPLS between huawei and Juniper and Extreme summit. Config samples.","breadcrumb":{"@id":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/isp-tech.ru\/configure-huawei-vpls\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/isp-tech.ru\/configure-huawei-vpls\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","item":"https:\/\/isp-tech.ru\/"},{"@type":"ListItem","position":2,"name":"VPLS Configuration on Huawei switches"}]},{"@type":"WebSite","@id":"https:\/\/isp-tech.ru\/#website","url":"https:\/\/isp-tech.ru\/","name":"isp-tech.ru","description":"","publisher":{"@id":"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/isp-tech.ru\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/isp-tech.ru\/#\/schema\/person\/bfc8f447cee1b54cc04a263ed0673363","name":"admin","logo":{"@id":"https:\/\/isp-tech.ru\/#\/schema\/person\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/posts\/1823","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/comments?post=1823"}],"version-history":[{"count":91,"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/posts\/1823\/revisions"}],"predecessor-version":[{"id":1927,"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/posts\/1823\/revisions\/1927"}],"wp:attachment":[{"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/media?parent=1823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/categories?post=1823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/isp-tech.ru\/en\/wp-json\/wp\/v2\/tags?post=1823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}