SlideShare a Scribd company logo
1 of 6
How to Configure the VPLS Internet Access
Service?
This topic describes how to configure the Internet access service for individual users
when the VPLS networking is used at the access and aggregation layers.
Application Context
As shown in the below, the MA5600T/MA5603T/MA5608T is dual homed to two
AGS devices (aggregation switches) PE3 and PE4 through VPLS, and the Internet
access service is received in PPPoE dialup mode. In the upstream direction, the traffic
stream is mapped into the VPLS domain through VLAN. The PPPOE active
discovery initiation (PADI) packets initiated by the user are broadcast in the VPLS
domain it belongs to, and then the broadcast packets are received by the two AGS
devices. The AGS devices terminate packets of some users respectively in delay
response mode to achieve load sharing. When a BRAS device is faulty, the user dials
up again. Then the VPLS MAC learning and forwarding mechanism automatically
selects a new BRAS to provide services.
Networking for the VPLS Internet access service for individual users
1
Prerequisite
Traffic streams have been configured on the MA5600T/MA5603T/MA5608T for the
Internet access service.
1. Configure the basic MPLS.
 Configure a loopback interface.
Set the ID of the loopback interface to 0 and its IP address to 10.10.10.10/32.
huawei(config)#interface loopback 0
huawei(config-if-loopback0)#ip address 10.10.10.10 32
huawei(config-if-loopback0)#quit
 Configure the MPLS LSR-ID. Use the IP address of loopback interface 0 as the
LSR ID.
huawei(config)#mpls lsr-id 10.10.10.10
 Enable MPLS globally.
Trigger LDP by the IP address of the host to set up an LSP.
huawei(config)#mpls
huawei(config-mpls)#lsp-trigger host
huawei(config-mpls)#quit
 Enable the L2VPN function.
huawei(config)#mpls l2vpn
 Enable the LDP function globally and enable the split horizon policy.
huawei(config)#mpls ldp
huawei(config-mpls-ldp)#outbound peer all split-horizon
huawei(config-mpls-ldp)#quit
2. Configure VLAN and enable MPLS for VLAN and VLAN interfaces.
 Add VLAN 4001 for forwarding MPLS packets and add upstream
port 0/19/0 and 0/19/1 to it.
huawei(config)#vlan 4001 smart
huawei(config)#port vlan 4001 0/19/0
huawei(config)#port vlan 4001 0/19/1
 Enable MPLS for VLAN 4001.
huawei(config)#mpls vlan 4001
 Set the IP address of VLAN interface 4001 to 10.50.50.50/24 and enable MPLS
LDP for the VLAN interface.
2
huawei(config)#interface vlanif 4001
huawei(config-if-vlanif4001)#ip address 10.50.50.50 24
huawei(config-if-vlanif4001)#mpls
huawei(config-if-vlanif4001)#mpls ldp
huawei(config-if-vlanif4001)#quit
3. Configure routes.
VPLS has no special requirements on routing policy. You can use static route, RIP, or
OSPF policy. In the following example, OSPF is used.
Set the OSPF process ID to 100 and OSPF area ID to 1. In addition, configure the
interfaces (VLAN interface and loopback interface) that run OSPF and configure the
areas of the interfaces.
huawei(config)#ospf 1
huawei(config-ospf-1)#area 100
huawei(config-ospf-1-area-0.0.0.100)#network 10.50.50.0 0.0.0.255
huawei(config-ospf-1-area-0.0.0.100)#network 10.10.10.10 0.0.0.0
huawei(config-ospf-1-area-0.0.0.100)#return
4. Configure the remote LDP session.
Configure the remote LDP session from the MA5600T/MA5603T/MA5608T to PE3
(LSR ID: 3.3.3.3) and PE4 (LSR ID: 4.4.4.4) respectively. Name the
sessions to_pe3 and to_pe4 respectively.
huawei(config)#mpls ldp remote-peer to_pe3
huawei(config-mpls-ldp-remote-to_pe3)#remote-ip 3.3.3.3
huawei(config-mpls-ldp-remote-to_pe3)#remote-ip auto-dod-request
huawei(config-mpls-ldp-remote-to_pe3)#quit
huawei(config)#mpls ldp remote-peer to_pe4
huawei(config-mpls-ldp-remote-to_pe4)#remote-ip 4.4.4.4
huawei(config-mpls-ldp-remote-to_pe4)#remote-ip auto-dod-request
huawei(config-mpls-ldp-remote-to_pe4)#quit
5. Configure a VSI.
 Add a VSI.
Create a VSI named hsi. Set the signaling protocol to LDP. and VSI ID to 1.
huawei(config)#vsi hsi
huawei(config-vsi-hsi)#pwsignal ldp
huawei(config-vsi-hsi)#vsi-id 1
 (Optional) Configure the attributes of VSI.
Configure basic attributes of VSI as required, including the encapsulation type,
control word, MTU value, and traffic suppression policy. In the following example,
the control word is enabled and default values are used for other parameters.
huawei(config-vsi-hsi)#control-word
3
6. Configure PWs.
Create two PWs with IDs 1 and 2. Set the service type to vpls, remote IP addresses
to 3.3.3.3 and 4.4.4.4 respectively, and encapsulation type to ethernet tagged. Enable
the control word, and set the receive labels of dynamic PW
to 10240 and 10250 respectively.
huawei(config)#pw-para pwindex 1
huawei(config-pw-para-index-1)#service-type vpls
huawei(config-pw-para-index-1)#pwid 1
huawei(config-pw-para-index-1)#peer-address 3.3.3.3
huawei(config-pw-para-index-1)#pw-type ethernet tagged
huawei(config-pw-para-index-1)#control-word enable
huawei(config-pw-para-index-1)#dyn-receive-label 10240
huawei(config-pw-para-index-1)#quit
huawei(config)#pw-para pwindex 2
huawei(config-pw-para-index-2)#service-type vpls
huawei(config-pw-para-index-2)#pwid 2
huawei(config-pw-para-index-2)#peer-address 4.4.4.4
huawei(config-pw-para-index-2)#pw-type ethernet tagged
huawei(config-pw-para-index-2)#control-word enable
huawei(config-pw-para-index-2)#dyn-receive-label 10250
huawei(config-pw-para-index-2)#quit
7. Bind PW and VSI.
Dynamically bind PW1 and PW2 to the VSI named hsi to establish the VPLS PW
service.
huawei(config)#vsi hsi
huawei(config-vsi-hsi)#vsi-pw-binding pwindex 1
huawei(config-vsi-hsi)#vsi-pw-binding pwindex 2
8. Bind AC and VSI.
Bind VLAN 100 to the VSI named hsi, so that the Internet access service packets of
VLAN 100 can be forwarded in the VSI.
huawei(config-vsi-hsi)#vsi-ac-binding vlan 100
Result
1. A user performs PPPoE dialup. A PADI packet is transmitted upstream.
2. The OLT maps the PADI packet to VSI based on SVLAN carried in the packet
and broadcasts the packet on two PWs. At the same time, the OLT learns user's
MAC address.
3. After receiving the PADI packet, two BRAS devices respond with PPPOE active
discovery offer (PADO) packets in random delay mode.
4
4. After receiving the PADO packets from PWs, the OLT learns the MAC address
carried in the packets from PWs and forwards the packets to the user.
5. The user receives two PADO packets at different time and only responds to the
first received PADO packet to establish a PPPoE session.
6. The OLT forwards subsequent PPPOE active discovery request (PADR) and
PPPOE active discovery session-confirmation (PADS) packets based on learnt
MAC addresses
More related topics
How to Add and Delete ONT on the OLT Device?
How to Configure a DHCP Server Based on the Global Address Pool?
How to Configure the xDSL Internet Access Service through PPPoE Dialup?
How to Troubleshoot the One-Way Audio Encountered by ONU (A) Voice Users
More Huawei products and Reviews you can visit: http://www.huanetwork.com/blog
Huanetwork.com is a world leading Huawei networking products supplier, we supply original new
Huawei networking equipments, including Huawei switches, Huawei routers, Huaweisymantec
security products, Huawei IAD, Huawei SFP and other Huawei networking products. Our
customers include telecom operators, Huawei resellers, ISP and system integrators. Right now
most of our sales are contributed by regular customers.
In Huanetwork Lab, also we have Huawei OLT, MDU, DSLAM and switch for customer do
remote testing, any potential customer are welcome to login to our lab. If you need a total Huawei
FTTx solution or Huawei ADSL solution for your network, also you may feel free to contact us.
Our website: http://www.huanetwork.com
Telephone: +852-30501940
Email: sales@huanetwork.com
Address: 23/F Lucky Plaza, 315-321 Lockhart Road, Wanchai, Hongkong
5
4. After receiving the PADO packets from PWs, the OLT learns the MAC address
carried in the packets from PWs and forwards the packets to the user.
5. The user receives two PADO packets at different time and only responds to the
first received PADO packet to establish a PPPoE session.
6. The OLT forwards subsequent PPPOE active discovery request (PADR) and
PPPOE active discovery session-confirmation (PADS) packets based on learnt
MAC addresses
More related topics
How to Add and Delete ONT on the OLT Device?
How to Configure a DHCP Server Based on the Global Address Pool?
How to Configure the xDSL Internet Access Service through PPPoE Dialup?
How to Troubleshoot the One-Way Audio Encountered by ONU (A) Voice Users
More Huawei products and Reviews you can visit: http://www.huanetwork.com/blog
Huanetwork.com is a world leading Huawei networking products supplier, we supply original new
Huawei networking equipments, including Huawei switches, Huawei routers, Huaweisymantec
security products, Huawei IAD, Huawei SFP and other Huawei networking products. Our
customers include telecom operators, Huawei resellers, ISP and system integrators. Right now
most of our sales are contributed by regular customers.
In Huanetwork Lab, also we have Huawei OLT, MDU, DSLAM and switch for customer do
remote testing, any potential customer are welcome to login to our lab. If you need a total Huawei
FTTx solution or Huawei ADSL solution for your network, also you may feel free to contact us.
Our website: http://www.huanetwork.com
Telephone: +852-30501940
Email: sales@huanetwork.com
Address: 23/F Lucky Plaza, 315-321 Lockhart Road, Wanchai, Hongkong
5

More Related Content

Viewers also liked

Configuring the Device as a PPPoE Client on Huawei AR1200
Configuring the Device as a PPPoE Client on Huawei AR1200Configuring the Device as a PPPoE Client on Huawei AR1200
Configuring the Device as a PPPoE Client on Huawei AR1200Huanetwork
 
How to query traffic of a port on the huawei ma5616
How to query traffic of a port on the huawei ma5616How to query traffic of a port on the huawei ma5616
How to query traffic of a port on the huawei ma5616Huanetwork
 
Huawei HG8245 Two Version GE / FE
Huawei HG8245 Two Version GE / FEHuawei HG8245 Two Version GE / FE
Huawei HG8245 Two Version GE / FEHuanetwork
 
How to configure i pv6 services in the fttb c (no hgws) scenario
How to configure i pv6 services in the fttb c (no hgws) scenarioHow to configure i pv6 services in the fttb c (no hgws) scenario
How to configure i pv6 services in the fttb c (no hgws) scenarioHuanetwork
 
How to configure i pv6 static routes
How to configure i pv6 static routesHow to configure i pv6 static routes
How to configure i pv6 static routesHuanetwork
 
Huawei ftth c b e2 e solution
Huawei ftth c b e2 e solutionHuawei ftth c b e2 e solution
Huawei ftth c b e2 e solutionHuanetwork
 
Ont, olt and mdu in gpon technology
Ont, olt and mdu in gpon technologyOnt, olt and mdu in gpon technology
Ont, olt and mdu in gpon technologyHuanetwork
 
Huawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration CommandHuawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration CommandHuanetwork
 
Huawei s5710-ei-power-module-test-report
Huawei s5710-ei-power-module-test-reportHuawei s5710-ei-power-module-test-report
Huawei s5710-ei-power-module-test-reportHuanetwork
 
OptiX OSN 8800 Slot Description
OptiX OSN 8800 Slot DescriptionOptiX OSN 8800 Slot Description
OptiX OSN 8800 Slot DescriptionHuanetwork
 
Huawei switch configuration commands
Huawei switch configuration commandsHuawei switch configuration commands
Huawei switch configuration commandsHuanetwork
 
6.4.2.4 calculating and configuring an i pv6 route summarization instructions
6.4.2.4 calculating and configuring an i pv6 route summarization instructions6.4.2.4 calculating and configuring an i pv6 route summarization instructions
6.4.2.4 calculating and configuring an i pv6 route summarization instructionsBelen Sin Acento
 
Cisco router commands vs huawei router commands
Cisco router commands vs huawei router commands Cisco router commands vs huawei router commands
Cisco router commands vs huawei router commands Roxanne Munnidoo
 
dBm : a mathematical interpretation
dBm : a mathematical interpretationdBm : a mathematical interpretation
dBm : a mathematical interpretationMapYourTech
 

Viewers also liked (15)

Configuring the Device as a PPPoE Client on Huawei AR1200
Configuring the Device as a PPPoE Client on Huawei AR1200Configuring the Device as a PPPoE Client on Huawei AR1200
Configuring the Device as a PPPoE Client on Huawei AR1200
 
How to query traffic of a port on the huawei ma5616
How to query traffic of a port on the huawei ma5616How to query traffic of a port on the huawei ma5616
How to query traffic of a port on the huawei ma5616
 
Huawei HG8245 Two Version GE / FE
Huawei HG8245 Two Version GE / FEHuawei HG8245 Two Version GE / FE
Huawei HG8245 Two Version GE / FE
 
How to configure i pv6 services in the fttb c (no hgws) scenario
How to configure i pv6 services in the fttb c (no hgws) scenarioHow to configure i pv6 services in the fttb c (no hgws) scenario
How to configure i pv6 services in the fttb c (no hgws) scenario
 
How to configure i pv6 static routes
How to configure i pv6 static routesHow to configure i pv6 static routes
How to configure i pv6 static routes
 
Huawei ftth c b e2 e solution
Huawei ftth c b e2 e solutionHuawei ftth c b e2 e solution
Huawei ftth c b e2 e solution
 
Ont, olt and mdu in gpon technology
Ont, olt and mdu in gpon technologyOnt, olt and mdu in gpon technology
Ont, olt and mdu in gpon technology
 
Huawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration CommandHuawei S5700 Basic Configuration Command
Huawei S5700 Basic Configuration Command
 
Huawei ac6005
Huawei ac6005Huawei ac6005
Huawei ac6005
 
Huawei s5710-ei-power-module-test-report
Huawei s5710-ei-power-module-test-reportHuawei s5710-ei-power-module-test-report
Huawei s5710-ei-power-module-test-report
 
OptiX OSN 8800 Slot Description
OptiX OSN 8800 Slot DescriptionOptiX OSN 8800 Slot Description
OptiX OSN 8800 Slot Description
 
Huawei switch configuration commands
Huawei switch configuration commandsHuawei switch configuration commands
Huawei switch configuration commands
 
6.4.2.4 calculating and configuring an i pv6 route summarization instructions
6.4.2.4 calculating and configuring an i pv6 route summarization instructions6.4.2.4 calculating and configuring an i pv6 route summarization instructions
6.4.2.4 calculating and configuring an i pv6 route summarization instructions
 
Cisco router commands vs huawei router commands
Cisco router commands vs huawei router commands Cisco router commands vs huawei router commands
Cisco router commands vs huawei router commands
 
dBm : a mathematical interpretation
dBm : a mathematical interpretationdBm : a mathematical interpretation
dBm : a mathematical interpretation
 

More from Huanetwork

Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)
Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)
Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)Huanetwork
 
Wiki and solution in ftth technology
Wiki and solution in ftth technologyWiki and solution in ftth technology
Wiki and solution in ftth technologyHuanetwork
 
What are the differences between huawei and cisco wlan products
What are the differences between huawei and cisco wlan productsWhat are the differences between huawei and cisco wlan products
What are the differences between huawei and cisco wlan productsHuanetwork
 
How to configure inband management for huawei ma5616
How to configure inband management for huawei ma5616How to configure inband management for huawei ma5616
How to configure inband management for huawei ma5616Huanetwork
 
What is huawei quidway s5300 gigabit switches
What is huawei quidway s5300 gigabit switchesWhat is huawei quidway s5300 gigabit switches
What is huawei quidway s5300 gigabit switchesHuanetwork
 
Huawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet modeHuawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet modeHuanetwork
 
Huawei opti x osn 1500 boards
Huawei opti x osn 1500 boardsHuawei opti x osn 1500 boards
Huawei opti x osn 1500 boardsHuanetwork
 
Huawei net engine5000e core router chassis and features
Huawei net engine5000e core router chassis and featuresHuawei net engine5000e core router chassis and features
Huawei net engine5000e core router chassis and featuresHuanetwork
 
Huawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet modeHuawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet modeHuanetwork
 
Huawei s3700 cables
Huawei s3700 cablesHuawei s3700 cables
Huawei s3700 cablesHuanetwork
 
Differences of Huawei S5700 Series LI, SI, EI and HI
Differences of Huawei S5700 Series LI, SI, EI and HIDifferences of Huawei S5700 Series LI, SI, EI and HI
Differences of Huawei S5700 Series LI, SI, EI and HIHuanetwork
 
Huawei s9300 terabit routing switch
Huawei s9300 terabit routing switchHuawei s9300 terabit routing switch
Huawei s9300 terabit routing switchHuanetwork
 
Huanetwork Design the Network Solution Free for You
Huanetwork Design the Network Solution Free for YouHuanetwork Design the Network Solution Free for You
Huanetwork Design the Network Solution Free for YouHuanetwork
 
Configuration difference between ipv6 and ipv4
Configuration difference between ipv6 and ipv4Configuration difference between ipv6 and ipv4
Configuration difference between ipv6 and ipv4Huanetwork
 
How to configure the gpon ftth layer 2 internet access service on the nms
How to configure the gpon ftth layer 2 internet access service on the nmsHow to configure the gpon ftth layer 2 internet access service on the nms
How to configure the gpon ftth layer 2 internet access service on the nmsHuanetwork
 
Version support for huawei s7700 components (1)
Version support for huawei s7700 components (1)Version support for huawei s7700 components (1)
Version support for huawei s7700 components (1)Huanetwork
 
Huawei router component selection guide – purchase list
Huawei router component selection guide – purchase listHuawei router component selection guide – purchase list
Huawei router component selection guide – purchase listHuanetwork
 
Naming conventions of huawei parts
Naming conventions of huawei partsNaming conventions of huawei parts
Naming conventions of huawei partsHuanetwork
 
Huawei AR Series Routers Application Comparison and Overview
Huawei AR Series Routers Application Comparison and OverviewHuawei AR Series Routers Application Comparison and Overview
Huawei AR Series Routers Application Comparison and OverviewHuanetwork
 
The feature of huawei ma5600
The feature of huawei ma5600The feature of huawei ma5600
The feature of huawei ma5600Huanetwork
 

More from Huanetwork (20)

Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)
Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)
Huanetwork x dsl solution - huawei adsl2+ and vdsl2 solution)
 
Wiki and solution in ftth technology
Wiki and solution in ftth technologyWiki and solution in ftth technology
Wiki and solution in ftth technology
 
What are the differences between huawei and cisco wlan products
What are the differences between huawei and cisco wlan productsWhat are the differences between huawei and cisco wlan products
What are the differences between huawei and cisco wlan products
 
How to configure inband management for huawei ma5616
How to configure inband management for huawei ma5616How to configure inband management for huawei ma5616
How to configure inband management for huawei ma5616
 
What is huawei quidway s5300 gigabit switches
What is huawei quidway s5300 gigabit switchesWhat is huawei quidway s5300 gigabit switches
What is huawei quidway s5300 gigabit switches
 
Huawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet modeHuawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet mode
 
Huawei opti x osn 1500 boards
Huawei opti x osn 1500 boardsHuawei opti x osn 1500 boards
Huawei opti x osn 1500 boards
 
Huawei net engine5000e core router chassis and features
Huawei net engine5000e core router chassis and featuresHuawei net engine5000e core router chassis and features
Huawei net engine5000e core router chassis and features
 
Huawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet modeHuawei osn3500 typical networking in packet mode
Huawei osn3500 typical networking in packet mode
 
Huawei s3700 cables
Huawei s3700 cablesHuawei s3700 cables
Huawei s3700 cables
 
Differences of Huawei S5700 Series LI, SI, EI and HI
Differences of Huawei S5700 Series LI, SI, EI and HIDifferences of Huawei S5700 Series LI, SI, EI and HI
Differences of Huawei S5700 Series LI, SI, EI and HI
 
Huawei s9300 terabit routing switch
Huawei s9300 terabit routing switchHuawei s9300 terabit routing switch
Huawei s9300 terabit routing switch
 
Huanetwork Design the Network Solution Free for You
Huanetwork Design the Network Solution Free for YouHuanetwork Design the Network Solution Free for You
Huanetwork Design the Network Solution Free for You
 
Configuration difference between ipv6 and ipv4
Configuration difference between ipv6 and ipv4Configuration difference between ipv6 and ipv4
Configuration difference between ipv6 and ipv4
 
How to configure the gpon ftth layer 2 internet access service on the nms
How to configure the gpon ftth layer 2 internet access service on the nmsHow to configure the gpon ftth layer 2 internet access service on the nms
How to configure the gpon ftth layer 2 internet access service on the nms
 
Version support for huawei s7700 components (1)
Version support for huawei s7700 components (1)Version support for huawei s7700 components (1)
Version support for huawei s7700 components (1)
 
Huawei router component selection guide – purchase list
Huawei router component selection guide – purchase listHuawei router component selection guide – purchase list
Huawei router component selection guide – purchase list
 
Naming conventions of huawei parts
Naming conventions of huawei partsNaming conventions of huawei parts
Naming conventions of huawei parts
 
Huawei AR Series Routers Application Comparison and Overview
Huawei AR Series Routers Application Comparison and OverviewHuawei AR Series Routers Application Comparison and Overview
Huawei AR Series Routers Application Comparison and Overview
 
The feature of huawei ma5600
The feature of huawei ma5600The feature of huawei ma5600
The feature of huawei ma5600
 

Recently uploaded

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdfChristopherTHyatt
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 

Recently uploaded (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

How to configure the vpls internet access service

  • 1. How to Configure the VPLS Internet Access Service? This topic describes how to configure the Internet access service for individual users when the VPLS networking is used at the access and aggregation layers. Application Context As shown in the below, the MA5600T/MA5603T/MA5608T is dual homed to two AGS devices (aggregation switches) PE3 and PE4 through VPLS, and the Internet access service is received in PPPoE dialup mode. In the upstream direction, the traffic stream is mapped into the VPLS domain through VLAN. The PPPOE active discovery initiation (PADI) packets initiated by the user are broadcast in the VPLS domain it belongs to, and then the broadcast packets are received by the two AGS devices. The AGS devices terminate packets of some users respectively in delay response mode to achieve load sharing. When a BRAS device is faulty, the user dials up again. Then the VPLS MAC learning and forwarding mechanism automatically selects a new BRAS to provide services. Networking for the VPLS Internet access service for individual users 1
  • 2. Prerequisite Traffic streams have been configured on the MA5600T/MA5603T/MA5608T for the Internet access service. 1. Configure the basic MPLS.  Configure a loopback interface. Set the ID of the loopback interface to 0 and its IP address to 10.10.10.10/32. huawei(config)#interface loopback 0 huawei(config-if-loopback0)#ip address 10.10.10.10 32 huawei(config-if-loopback0)#quit  Configure the MPLS LSR-ID. Use the IP address of loopback interface 0 as the LSR ID. huawei(config)#mpls lsr-id 10.10.10.10  Enable MPLS globally. Trigger LDP by the IP address of the host to set up an LSP. huawei(config)#mpls huawei(config-mpls)#lsp-trigger host huawei(config-mpls)#quit  Enable the L2VPN function. huawei(config)#mpls l2vpn  Enable the LDP function globally and enable the split horizon policy. huawei(config)#mpls ldp huawei(config-mpls-ldp)#outbound peer all split-horizon huawei(config-mpls-ldp)#quit 2. Configure VLAN and enable MPLS for VLAN and VLAN interfaces.  Add VLAN 4001 for forwarding MPLS packets and add upstream port 0/19/0 and 0/19/1 to it. huawei(config)#vlan 4001 smart huawei(config)#port vlan 4001 0/19/0 huawei(config)#port vlan 4001 0/19/1  Enable MPLS for VLAN 4001. huawei(config)#mpls vlan 4001  Set the IP address of VLAN interface 4001 to 10.50.50.50/24 and enable MPLS LDP for the VLAN interface. 2
  • 3. huawei(config)#interface vlanif 4001 huawei(config-if-vlanif4001)#ip address 10.50.50.50 24 huawei(config-if-vlanif4001)#mpls huawei(config-if-vlanif4001)#mpls ldp huawei(config-if-vlanif4001)#quit 3. Configure routes. VPLS has no special requirements on routing policy. You can use static route, RIP, or OSPF policy. In the following example, OSPF is used. Set the OSPF process ID to 100 and OSPF area ID to 1. In addition, configure the interfaces (VLAN interface and loopback interface) that run OSPF and configure the areas of the interfaces. huawei(config)#ospf 1 huawei(config-ospf-1)#area 100 huawei(config-ospf-1-area-0.0.0.100)#network 10.50.50.0 0.0.0.255 huawei(config-ospf-1-area-0.0.0.100)#network 10.10.10.10 0.0.0.0 huawei(config-ospf-1-area-0.0.0.100)#return 4. Configure the remote LDP session. Configure the remote LDP session from the MA5600T/MA5603T/MA5608T to PE3 (LSR ID: 3.3.3.3) and PE4 (LSR ID: 4.4.4.4) respectively. Name the sessions to_pe3 and to_pe4 respectively. huawei(config)#mpls ldp remote-peer to_pe3 huawei(config-mpls-ldp-remote-to_pe3)#remote-ip 3.3.3.3 huawei(config-mpls-ldp-remote-to_pe3)#remote-ip auto-dod-request huawei(config-mpls-ldp-remote-to_pe3)#quit huawei(config)#mpls ldp remote-peer to_pe4 huawei(config-mpls-ldp-remote-to_pe4)#remote-ip 4.4.4.4 huawei(config-mpls-ldp-remote-to_pe4)#remote-ip auto-dod-request huawei(config-mpls-ldp-remote-to_pe4)#quit 5. Configure a VSI.  Add a VSI. Create a VSI named hsi. Set the signaling protocol to LDP. and VSI ID to 1. huawei(config)#vsi hsi huawei(config-vsi-hsi)#pwsignal ldp huawei(config-vsi-hsi)#vsi-id 1  (Optional) Configure the attributes of VSI. Configure basic attributes of VSI as required, including the encapsulation type, control word, MTU value, and traffic suppression policy. In the following example, the control word is enabled and default values are used for other parameters. huawei(config-vsi-hsi)#control-word 3
  • 4. 6. Configure PWs. Create two PWs with IDs 1 and 2. Set the service type to vpls, remote IP addresses to 3.3.3.3 and 4.4.4.4 respectively, and encapsulation type to ethernet tagged. Enable the control word, and set the receive labels of dynamic PW to 10240 and 10250 respectively. huawei(config)#pw-para pwindex 1 huawei(config-pw-para-index-1)#service-type vpls huawei(config-pw-para-index-1)#pwid 1 huawei(config-pw-para-index-1)#peer-address 3.3.3.3 huawei(config-pw-para-index-1)#pw-type ethernet tagged huawei(config-pw-para-index-1)#control-word enable huawei(config-pw-para-index-1)#dyn-receive-label 10240 huawei(config-pw-para-index-1)#quit huawei(config)#pw-para pwindex 2 huawei(config-pw-para-index-2)#service-type vpls huawei(config-pw-para-index-2)#pwid 2 huawei(config-pw-para-index-2)#peer-address 4.4.4.4 huawei(config-pw-para-index-2)#pw-type ethernet tagged huawei(config-pw-para-index-2)#control-word enable huawei(config-pw-para-index-2)#dyn-receive-label 10250 huawei(config-pw-para-index-2)#quit 7. Bind PW and VSI. Dynamically bind PW1 and PW2 to the VSI named hsi to establish the VPLS PW service. huawei(config)#vsi hsi huawei(config-vsi-hsi)#vsi-pw-binding pwindex 1 huawei(config-vsi-hsi)#vsi-pw-binding pwindex 2 8. Bind AC and VSI. Bind VLAN 100 to the VSI named hsi, so that the Internet access service packets of VLAN 100 can be forwarded in the VSI. huawei(config-vsi-hsi)#vsi-ac-binding vlan 100 Result 1. A user performs PPPoE dialup. A PADI packet is transmitted upstream. 2. The OLT maps the PADI packet to VSI based on SVLAN carried in the packet and broadcasts the packet on two PWs. At the same time, the OLT learns user's MAC address. 3. After receiving the PADI packet, two BRAS devices respond with PPPOE active discovery offer (PADO) packets in random delay mode. 4
  • 5. 4. After receiving the PADO packets from PWs, the OLT learns the MAC address carried in the packets from PWs and forwards the packets to the user. 5. The user receives two PADO packets at different time and only responds to the first received PADO packet to establish a PPPoE session. 6. The OLT forwards subsequent PPPOE active discovery request (PADR) and PPPOE active discovery session-confirmation (PADS) packets based on learnt MAC addresses More related topics How to Add and Delete ONT on the OLT Device? How to Configure a DHCP Server Based on the Global Address Pool? How to Configure the xDSL Internet Access Service through PPPoE Dialup? How to Troubleshoot the One-Way Audio Encountered by ONU (A) Voice Users More Huawei products and Reviews you can visit: http://www.huanetwork.com/blog Huanetwork.com is a world leading Huawei networking products supplier, we supply original new Huawei networking equipments, including Huawei switches, Huawei routers, Huaweisymantec security products, Huawei IAD, Huawei SFP and other Huawei networking products. Our customers include telecom operators, Huawei resellers, ISP and system integrators. Right now most of our sales are contributed by regular customers. In Huanetwork Lab, also we have Huawei OLT, MDU, DSLAM and switch for customer do remote testing, any potential customer are welcome to login to our lab. If you need a total Huawei FTTx solution or Huawei ADSL solution for your network, also you may feel free to contact us. Our website: http://www.huanetwork.com Telephone: +852-30501940 Email: sales@huanetwork.com Address: 23/F Lucky Plaza, 315-321 Lockhart Road, Wanchai, Hongkong 5
  • 6. 4. After receiving the PADO packets from PWs, the OLT learns the MAC address carried in the packets from PWs and forwards the packets to the user. 5. The user receives two PADO packets at different time and only responds to the first received PADO packet to establish a PPPoE session. 6. The OLT forwards subsequent PPPOE active discovery request (PADR) and PPPOE active discovery session-confirmation (PADS) packets based on learnt MAC addresses More related topics How to Add and Delete ONT on the OLT Device? How to Configure a DHCP Server Based on the Global Address Pool? How to Configure the xDSL Internet Access Service through PPPoE Dialup? How to Troubleshoot the One-Way Audio Encountered by ONU (A) Voice Users More Huawei products and Reviews you can visit: http://www.huanetwork.com/blog Huanetwork.com is a world leading Huawei networking products supplier, we supply original new Huawei networking equipments, including Huawei switches, Huawei routers, Huaweisymantec security products, Huawei IAD, Huawei SFP and other Huawei networking products. Our customers include telecom operators, Huawei resellers, ISP and system integrators. Right now most of our sales are contributed by regular customers. In Huanetwork Lab, also we have Huawei OLT, MDU, DSLAM and switch for customer do remote testing, any potential customer are welcome to login to our lab. If you need a total Huawei FTTx solution or Huawei ADSL solution for your network, also you may feel free to contact us. Our website: http://www.huanetwork.com Telephone: +852-30501940 Email: sales@huanetwork.com Address: 23/F Lucky Plaza, 315-321 Lockhart Road, Wanchai, Hongkong 5