Sie sind auf Seite 1von 55

APNIC IPv6/Routing Workshop Lab (Huawei VRP)

Module 1 – Basic Configuration Task for Training Lab Network


Objective: All the workshop lab routers are set to the default configuration and cabling
requirements are prebuild according to the following topology diagram. Participants will be
required to do the necessary configurations as part of a team according to the lab design
specification explained in the presentation section. There are 5 routers (3 core and 2 CPE) in
each team/region. So 4 teams will finish 20 routers configuration in several steps throughout the
workshop duration. Workshop instructor will explain how the team will be organized, router
will be allocated and IP address detail to access the lab routers.

Prerequisites: Basic TCP/IP knowledge, Huawei router CLI, Telnet/SSH software etc.

The following will be the common topology and IP address plan used for the labs.

Figure 1 – ISP Lab Basic Configuration

1 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Lab Notes
This workshop is intended to be run on a real Huawei routers or eNSP (Enterprise Network Simulation
Platform) with the above lab topologies set up. The routers are using both IPv4 and IPv6 supported
Huawei VRP software (VRP software, Version 5.130). Participants should do their workshop module
one configuration in several steps as explained below:

1. Remove all previous configuration and build standard basic router configuration.
2. Standard interface related configuration for both IPv6 and IPv4.
3. Do necessary verification to make sure you can ping (Both IPv6 & IPv4) your neighbouring
router point-to-point interface and satisfy the requirement to go to the next step.

For time management purpose we will emphasize more on IPv6 protocol when we will do verification
and analysis after each lab exercise. Please notice that some Huawei VRP commands are case
sensitive, probably few are already configured by default in some recent Huawei VRP version and
some are not a mandatory command for router functionality. But for lab troubleshooting and
verification purpose it is strongly recommended that please do all necessary configuration exactly as it
is explained on the instruction. Our objective after the exercise is to build a template for each
participant so that it can be re-used after you go back to your work environment.

Lab Exercise
1. Basic Router Configuration: This will set the router with necessary basic configuration used in a
real production router for both enterprise and service provider network.

Example Config on a Router:

system-view

To enter a Huawei router system view. In the system view, you can set the system parameters
of the device, and enter other function views from this view.

sysname Router

Router host name which is an FQDN name mapped into a DNS server. There is a common
practice about router hostname which is domain name then 3 digit airline city code then
region/pop then a name etc. Example: router1.pop1reg1.BNE.apnic.net. Please use your router
name according to the topology diagram.

ipv6

We must use this command so that router starts routing IPv6 packets.

undo dns resolve

To disable DNS resolver functionality on router if you do not use it. If yes then specify DNS
server IP. By default, dynamic DNS resolution on Huawei routers is disabled.

undo http server enable

2
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
To disable HTTPS server functionality on a router. Otherwise router is accessible from a
browser and it consumes router CPU and memory resources. We normally access router from
CLI.

undo http secure-server enable

To disable HTTPS server functionality on a router. Otherwise router is accessible from a


browser and it consumes router CPU and memory resources. We normally access router from
CLI.

interface loopback 0

Create loopback0 interface to be used for info-center loghost.


quit
info-center loghost source loopback0

We need the router use the loopback address as the “source interface” for traffic that is
generated by the router, such as syslog packets, SNMP traps, security related packets. Also
DNS is mapped with the loopback address and FQDN name of the router. Before we configure
this command, interface loopback0 should be created.

info-center timestamp log date precision-time millisecond


info-center timestamp debugging date precision-time second

Router will show either uptime or current date and time on the log it will generate based on the
configuration on your router. We would like to record current date and time in msec unit for
log and second unit for debugging messages (the smallest unit for both).

tcp timer syn-timeout 15

An attacker could flood a router with a high volume of TCP connection requests for which it
does not return back an acknowledgement causing connection queues to fill up at the receiving
host. Setting the TCP Synwait time to 15 seconds for example, will instruct the router to shut
down any incomplete connections after 15 seconds.

quit
clock timezone AEST minus 10

Set your router clock according to your local time zone. We used AEST 10 to reflect APNIC
office where it is located and corresponding time zone. Clock is set in user view not system
view.

save router.cfg/router.zip or save

Save the current configuration to a specified file (i.e. router.cfg) on the storage device. If the
configuration file specified (i.e. router.cfg) has the same name with the current configuration
file and the default directory is used, running save router.cfg is the same as ruuning the
save command.
When you type save command, it will confirm with you as follow:

<Router1>save

3 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

The current configuration will be written to the device.


Are you sure to continue? (y/n)[n]:

please input y after colon.

startup saved-configuration router.cfg/router.zip

Specify the system configuration file for next startup.

END OF STEP ONE……

4
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
2. Interface Related Configuration: This will set the router with necessary interface related
configuration (IPv6 and IPv4) used in a real production router for both enterprise and service
provider network.

Example IPv4 Config on a Router:

system-view

interface e0/0/1

To go to an interface configuration mode of a Huawei router

description WAN R3-R2

It is very important to add a meaningful description of a router interface to explain where this
interface is connected. Otherwise we might be lost finding which interface connects where on a
large data centre and need to jump behind the rack to look for a clue.

undo icmp redirect send

This disables ICMP redirect messages. Redirects function happen when a router recognizes a
packet arriving on an interface and the best route is out that same interface. In that case the
router sends an ICMP redirect back to the source telling them about a better router on the same
subnet. Subsequent packets take the redirected path. This function can be abused by an attacker
who has got access to your layer 2 network to initiate man in the middle attack.

undo ip forward-broadcast

Every subnet in IPv4 has a broadcast address. If any packet arrives on a router with broadcast
address as destination the router will amplify L2 frame on that interface. Any network attacker
can initiate a traffic amplification attack in your LAN if directed broadcast is not disable on
that Interface. Broadcast concept is not applicable in IPv6. By default, ip forward-broadcast is
already disabled on Huawei routers.

undo icmp port-unreachable send

From a security point of view some one can initiate reconnaissance attack on a device and if
you want to minimize the amount of information that the device can provide about itself to
others this command is very useful. It also protect the router from the unwanted resource
utilization on the device. By default, Huawei routers do not send ICMP port unreachable
packets.

ip address 172.16.15.3 255.255.255.255 or ip address 172.16.15.3 32

Assign IP address on a Huawei router interface.

undo shutdown

Use this command to activate the interface to start processing IP packet. In our practice, all the
interfaces are not shutdown by default. But, on some Huawei routers, the interfaces are
disabled by default.

5 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Example IPv6 Config on a Router:

system-view
interface loopback 0
ipv6 enable

Enable the IPv6 function on an interface. By default, the IPv6 function is disable on a device.
ipv6 address 2406:6400:0000:0000::3/128

Please notice the [Network Prefix::Interface ID] part of the IPv6 global address configured on
the interface. In this case interface is configured with static address and double colon is
perfectly sitting in between.

interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0001::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0002::2/64
quit
quit
save

END OF STEP TWO……

3. Verify the neighbouring interface configuration:

Example IPv4 protocol verification on a Router:


<Router3>ping 172.16.10.5
PING 172.16.10.5: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.5: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.5: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.5: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.5: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.5: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.5 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/8/20 ms

<Router3>ping 172.16.10.9
PING 172.16.10.9: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.9: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.10.9: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.9: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.9: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.9: bytes=56 Sequence=5 ttl=255 time=20 ms

--- 172.16.10.9 ping statistics ---


5 packet(s) transmitted
5 packet(s) received

6
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
0.00% packet loss
round-trip min/avg/max = 1/14/30 ms

You need to replace the destination IPv4 address with your relevant interface IPv4 address.
Please look at the topology diagram on page 1 for further detail.

Example IPv6 protocol verification on a Router:


<Router3>ping ipv6 2406:6400:000E:0001::1
PING 2406:6400:000E:0001::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:1::1
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=5 hop limit=64 time = 1 ms

--- 2406:6400:000E:0001::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

<Router3>ping ipv6 2406:6400:000E:0002::2


PING 2406:6400:000E:0002::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:2::2
bytes=56 Sequence=1 hop limit=64 time = 1 ms
Reply from 2406:6400:E:2::2
bytes=56 Sequence=2 hop limit=64 time = 1 ms
Reply from 2406:6400:E:2::2
bytes=56 Sequence=3 hop limit=64 time = 1 ms
Reply from 2406:6400:E:2::2
bytes=56 Sequence=4 hop limit=64 time = 1 ms
Reply from 2406:6400:E:2::2
bytes=56 Sequence=5 hop limit=64 time = 1 ms

--- 2406:6400:000E:0002::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/1/1 ms

You need to replace the destination IPv6 address with your relevant interface IPv6 address.
Please look at the topology diagram on page 1 for further detail.

END OF MODULE ONE……


Next pages for reference template used on different routers….

7 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

‘Workshop templates for reference purpose only’

Standard router configuration for training ISP network Region1:

Basic Conf Router1:


system-view
sysname Router1
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r1.cfg
startup saved-configuration r1.cfg

Basic Conf Router2:


system-view
sysname Router2
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit

8
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r2.cfg
startup saved-configuration r2.cfg

Basic Conf Router3:


system-view
sysname Router3
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r3.cfg
startup saved-configuration r3.cfg

9 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Standard router configuration for training ISP network Region2:

Basic Conf Router4:


system-view
sysname Router4
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r4.cfg
startup saved-configuration r4.cfg

Basic Conf Router5:


system-view
sysname Router5
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0

10
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r5.cfg
startup saved-configuration r5.cfg

Basic Conf Router6:


system-view
sysname Router6
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r6.cfg
startup saved-configuration r6.cfg

11 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Standard router configuration for training ISP network Region3:

Basic Conf Router7:


system-view
sysname Router7
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r7.cfg
startup saved-configuration r7.cfg

Basic Conf Router8:


system-view
sysname Router8
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond

12
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r8.cfg
startup saved-configuration r8.cfg

Basic Conf Router9:


system-view
sysname Router9
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r9.cfg
startup saved-configuration r9.cfg

13 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Standard router configuration for training ISP network Region4:

Basic Conf Router10:


system-view
sysname Router10
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r10.cfg
startup saved-configuration r10.cfg

Basic Conf Router11:


system-view
sysname Router11
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond

14
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r11.cfg
startup saved-configuration r11.cfg

Basic Conf Router12:

system-view
sysname Router12
ipv6
undo dns resolve
undo http server enable
undo http secure-server enable
interface loopback 0
quit
info-center loghost source loopback0
info-center timestamp log date precision-time millisecond
info-center timestamp debugging date precision-time second
tcp timer syn-timeout 15
quit
clock timezone AEST minus 10
save r12.cfg
startup saved-configuration r12.cfg

15 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Interface configuration of training ISP network Region 1:

IPv4 Interface Conf Router1:


system-view
interface loopback 0
description Router1 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.1 255.255.255.255
interface gigabitethernet2/0/0
description WAN R1-R2
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.2 255.255.255.252
interface gigabitethernet2/0/1
description WAN R1-R3
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.9 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:


<Router1>ping 172.16.10.1
PING 172.16.10.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.1: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.1: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.1: bytes=56 Sequence=3 ttl=255 time=10 ms

16
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
Reply from 172.16.10.1: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.1: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/12/20 ms

<Router1>ping 172.16.10.10
PING 172.16.10.10: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.10: bytes=56 Sequence=1 ttl=255 time=10 ms
Reply from 172.16.10.10: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.10: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.10: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.10: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.10 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/6/10 ms

IPv6 Interface Conf Router1:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::1/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0000::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0002::1/64
quit
quit
save

Verify point-to-point connectivity:


<Router1>ping ipv6 2406:6400:000E:0000::1
PING 2406:6400:000E:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E::1
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:E::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E::1
bytes=56 Sequence=3 hop limit=64 time = 20 ms
Reply from 2406:6400:E::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/16/30 ms

17 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

IPv4 Interface Conf Router2:


system-view
interface loopback 0
description Router2 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.2 255.255.255.255
interface gigabitethernet2/0/0
description WAN R2-R1
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.1 255.255.255.252
interface gigabitethernet2/0/1
description WAN R2-R3
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.5 255.255.255.252
interface gigabitethernet4/0/0
description Purple Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.12.1 255.255.255.0
interface gigabitethernet4/0/1
description Green Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.13.1 255.255.255.0
interface gigabitethernet2/0/3
description Router2 DC net
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.0.1 255.255.255.224
quit
quit
save

Verify point-to-point connectivity:

<Router2>ping 172.16.10.2
PING 172.16.10.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.2: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.2: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.2: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.2: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.2: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/14/20 ms

18
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
<Router2>ping 172.16.10.6
PING 172.16.10.6: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.6: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.6: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.6: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.6: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.6: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.6 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

Verify transport link:


<Router2>ping 172.16.12.2
PING 172.16.12.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.2: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.12.2: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.2: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.12.2: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.12.2: bytes=56 Sequence=5 ttl=255 time=50 ms

--- 172.16.12.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/42/50 ms

<Router2>ping 172.16.12.3
PING 172.16.12.3: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.3: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=2 ttl=255 time=50 ms
Reply from 172.16.12.3: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.12.3: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.12.3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/40/50 ms

<Router2>ping 172.16.12.4
PING 172.16.12.4: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.4: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.12.4: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.4: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.12.4: bytes=56 Sequence=4 ttl=255 time=70 ms
Reply from 172.16.12.4: bytes=56 Sequence=5 ttl=255 time=50 ms

--- 172.16.12.4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/46/70 ms

<Router2>ping 172.16.13.2
PING 172.16.13.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.2: bytes=56 Sequence=1 ttl=255 time=90 ms

19 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Reply from 172.16.13.2: bytes=56 Sequence=2 ttl=255 time=40 ms


Reply from 172.16.13.2: bytes=56 Sequence=3 ttl=255 time=50 ms
Reply from 172.16.13.2: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.13.2: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.13.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/48/90 ms

<Router2>ping 172.16.13.3
PING 172.16.13.3: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.3: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.13.3: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.13.3: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.3: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.3: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.13.3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/34/40 ms

<Router2>ping 172.16.13.4
PING 172.16.13.4: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.4: bytes=56 Sequence=1 ttl=255 time=60 ms
Reply from 172.16.13.4: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.13.4: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.4: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.13.4: bytes=56 Sequence=5 ttl=255 time=20 ms

--- 172.16.13.4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/34/60 ms

IPv6 Interface Conf Router2:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::2/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0000::1/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0001::1/64
interface gigabitethernet4/0/0
ipv6 enable
ipv6 address 2406:6400:0002:0000::1/48
interface gigabitethernet4/0/1
ipv6 enable
ipv6 address 2406:6400:0003:0000::1/48
interface gigabitethernet2/0/3
ipv6 enable
ipv6 address 2406:6400:0800:0000::1/64
quit

20
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
quit
save

Verify point-to-point connectivity:

<Router2>ping ipv6 2406:6400:000E:0000::2


PING 2406:6400:000E:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E::2
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:E::2
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:E::2
bytes=56 Sequence=3 hop limit=64 time = 20 ms
Reply from 2406:6400:E::2
bytes=56 Sequence=4 hop limit=64 time = 30 ms
Reply from 2406:6400:E::2
bytes=56 Sequence=5 hop limit=64 time = 20 ms

--- 2406:6400:000E:0000::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/26/30 ms

<Router2>ping ipv6 2406:6400:000E:0001::2


PING 2406:6400:000E:0001::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:1::2
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::2
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:E:1::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0001::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/12/20 ms

Verify transport link:

<Router2>ping ipv6 2406:6400:0002:0000::2


PING 2406:6400:0002:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::2
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0002:0000::2 ping statistics ---


5 packet(s) transmitted

21 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/38/40 ms

<Router2>ping ipv6 2406:6400:0002:0000::3


PING 2406:6400:0002:0000::3 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::3
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=5 hop limit=64 time = 20 ms

--- 2406:6400:0002:0000::3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/34/40 ms

<Router2>ping ipv6 2406:6400:0002:0000::4


PING 2406:6400:0002:0000::4 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::4
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=2 hop limit=64 time = 20 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=4 hop limit=64 time = 30 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0002:0000::4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/32/40 ms

<Router2>ping ipv6 2406:6400:0003:0000::2


PING 2406:6400:0003:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::2
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=4 hop limit=64 time = 50 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 40/42/50 ms

22
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
<Router2>ping ipv6 2406:6400:0003:0000::3
PING 2406:6400:0003:0000::3 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::3
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/40/50 ms

<Router2>ping ipv6 2406:6400:0003:0000::4


PING 2406:6400:0003:0000::4 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::4
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0003:0000::4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/38/40 ms

IPv4 Interface Conf Router3:

system-view
interface loopback 0
description Router3 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.3 255.255.255.255
interface gigabitethernet2/0/0
description WAN R3-R2
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.6 255.255.255.252
interface gigabitethernet2/0/1
description WAN R3-R1
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.10 255.255.255.252
quit

23 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

quit
save

Verify point-to-point connectivity:

<Router3>ping 172.16.10.5
PING 172.16.10.5: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.5: bytes=56 Sequence=1 ttl=255 time=10 ms
Reply from 172.16.10.5: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.5: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.5: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.5: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.5 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

<Router3>ping 172.16.10.9
PING 172.16.10.9: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.9: bytes=56 Sequence=1 ttl=255 time=10 ms
Reply from 172.16.10.9: bytes=56 Sequence=2 ttl=255 time=1 ms
Reply from 172.16.10.9: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.9: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.9: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.9 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/8/20 ms

IPv6 Interface Conf Router3:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::3/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0001::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0002::2/64
quit
quit
save

Verify point-to-point connectivity:

<Router3>ping ipv6 2406:6400:000E:0001::1


PING 2406:6400:000E:0001::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:1::1
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=2 hop limit=64 time = 20 ms
Reply from 2406:6400:E:1::1

24
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
bytes=56 Sequence=3 hop limit=64 time = 1 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:1::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0001::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

<Router3>ping ipv6 2406:6400:000E:0002::1


PING 2406:6400:000E:0002::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:2::1
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:2::1
bytes=56 Sequence=2 hop limit=64 time = 1 ms
Reply from 2406:6400:E:2::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:2::1
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:E:2::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0002::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

25 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Interface configuration of training ISP network Region 2:

IPv4 Interface Conf Router4:

system-view
interface loopback 0
description Router4 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.4 255.255.255.255
interface gigabitethernet2/0/0
description WAN R4-R5
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.26 255.255.255.252
interface gigabitethernet2/0/1
description WAN R4-R6
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.33 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:

<Router4>ping 172.16.10.25
PING 172.16.10.25: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.25: bytes=56 Sequence=1 ttl=255 time=10 ms
Reply from 172.16.10.25: bytes=56 Sequence=2 ttl=255 time=10 ms

26
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
Reply from 172.16.10.25: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.10.25: bytes=56 Sequence=4 ttl=255 time=1 ms
Reply from 172.16.10.25: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.25 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

<Router4>ping 172.16.10.34
PING 172.16.10.34: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.34: bytes=56 Sequence=1 ttl=255 time=10 ms
Reply from 172.16.10.34: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.34: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.34: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.34: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.34 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/8/10 ms

IPv6 Interface Conf Router4:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::4/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0010::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0012::1/64
quit
quit
save

Verify point-to-point connectivity:

<Router4>ping ipv6 2406:6400:000E:0010::1


PING 2406:6400:000E:0010::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:10::1
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:10::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:10::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:10::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:10::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0010::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/10/10 ms

27 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

<Router4>ping ipv6 2406:6400:000E:0012::2


PING 2406:6400:000E:0012::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:12::2
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:12::2
bytes=56 Sequence=2 hop limit=64 time = 20 ms
Reply from 2406:6400:E:12::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:12::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:12::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0012::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/12/20 ms

IPv4 Interface Conf Router5:

system-view
interface loopback 0
description Router5 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.5 255.255.255.255
interface gigabitethernet2/0/0
description WAN R5-R4
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.25 255.255.255.252
interface gigabitethernet2/0/1
description WAN R5-R6
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.29 255.255.255.252
interface gigabitethernet4/0/0
description Purple Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.12.2 255.255.255.0
interface gigabitethernet4/0/1
description Green Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.13.2 255.255.255.0
interface gigabitethernet2/0/3
description Router5 DC net
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.2.1 255.255.255.224
quit

28
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
quit
save

Verify point-to-point connectivity:

<Router5>ping 172.16.10.26
PING 172.16.10.26: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.26: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.10.26: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.10.26: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.10.26: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.26: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.10.26 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/26/30 ms

<Router5>ping 172.16.10.30
PING 172.16.10.30: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.30: bytes=56 Sequence=1 ttl=255 time=1 ms
Reply from 172.16.10.30: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.30: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.30: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.30: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.30 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/6/10 ms

Verify transport connectivity:

<Router5>ping 172.16.12.1
PING 172.16.12.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.1: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.12.1: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.1: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.12.1: bytes=56 Sequence=4 ttl=255 time=50 ms
Reply from 172.16.12.1: bytes=56 Sequence=5 ttl=255 time=20 ms

--- 172.16.12.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/32/50 ms

<Router5>ping 172.16.12.3
PING 172.16.12.3: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.3: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.12.3 ping statistics ---


5 packet(s) transmitted

29 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 40/40/40 ms

<Router5>ping 172.16.12.4
PING 172.16.12.4: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.4: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.12.4: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.4: bytes=56 Sequence=3 ttl=255 time=50 ms
Reply from 172.16.12.4: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.12.4: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.12.4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/36/50 ms

<Router5>ping 172.16.13.1
PING 172.16.13.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.1: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.13.1: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.13.1: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.1: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.1: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.13.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/38/50 ms

<Router5>ping 172.16.13.3
PING 172.16.13.3: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.3: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.13.3: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.13.3: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.13.3: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.3: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.13.3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/36/50 ms

<Router5>ping 172.16.13.4
PING 172.16.13.4: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.4: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.13.4: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.13.4: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.4: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.4: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.13.4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/38/40 ms

IPv6 Interface Conf Router5:

30
APNIC IPv6/Routing Workshop Lab (Huawei VRP)

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::5/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0010::1/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0011::1/64
interface gigabitethernet4/0/0
ipv6 enable
ipv6 address 2406:6400:0002:0000::2/48
interface gigabitethernet4/0/1
ipv6 enable
ipv6 address 2406:6400:0003:0000::2/48
interface gigabitethernet2/0/3
ipv6 enable
ipv6 address 2406:6400:0A00:0000::1/64
quit
quit
save

Verify point-to-point connectivity:

<Router5>ping ipv6 2406:6400:000E:0010::2


PING 2406:6400:000E:0010::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:10::2
bytes=56 Sequence=1 hop limit=64 time = 80 ms
Reply from 2406:6400:E:10::2
bytes=56 Sequence=2 hop limit=64 time = 20 ms
Reply from 2406:6400:E:10::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:10::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:10::2
bytes=56 Sequence=5 hop limit=64 time = 20 ms

--- 2406:6400:000E:0010::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/28/80 ms

<Router5>ping ipv6 2406:6400:000E:0011::2


PING 2406:6400:000E:0011::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:11::2
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:E:11::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:11::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:11::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:11::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0011::2 ping statistics ---


5 packet(s) transmitted

31 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/16/40 ms

Verify transport connectivity:

<Router5>ping ipv6 2406:6400:0002:0000::1


PING 2406:6400:0002:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::1
bytes=56 Sequence=1 hop limit=64 time = 100 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=3 hop limit=64 time = 20 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0002:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/44/100 ms

<Router5>ping ipv6 2406:6400:0002:0000::3


PING 2406:6400:0002:0000::3 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::3
bytes=56 Sequence=1 hop limit=64 time = 80 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0002:0000::3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/46/80 ms

<Router5>ping ipv6 2406:6400:0002:0000::4


PING 2406:6400:0002:0000::4 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::4
bytes=56 Sequence=1 hop limit=64 time = 80 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0002:0000::4 ping statistics ---


5 packet(s) transmitted

32
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/42/80 ms

<Router5>ping ipv6 2406:6400:0003:0000::1


PING 2406:6400:0003:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::1
bytes=56 Sequence=1 hop limit=64 time = 60 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=2 hop limit=64 time = 80 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=4 hop limit=64 time = 30 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/50/80 ms

<Router5>ping ipv6 2406:6400:0003:0000::3


PING 2406:6400:0003:0000::3 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::3
bytes=56 Sequence=1 hop limit=64 time = 70 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0003:0000::3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/40/70 ms

<Router5>ping ipv6 2406:6400:0003:0000::4


PING 2406:6400:0003:0000::4 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::4
bytes=56 Sequence=1 hop limit=64 time = 120 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=4 hop limit=64 time = 30 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=5 hop limit=64 time = 20 ms

--- 2406:6400:0003:0000::4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/50/120 ms

33 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

IPv4 Interface Conf Router6:

system-view
interface loopback 0
description Router6 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.6 255.255.255.255
interface gigabitethernet2/0/0
description WAN R6-R5
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.30 255.255.255.252
interface gigabitethernet2/0/1
description WAN R6-R4
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.34 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:

<Router6>ping 172.16.10.29
PING 172.16.10.29: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.29: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.29: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.29: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.29: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.29: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.29 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

<Router6>ping 172.16.10.33
PING 172.16.10.33: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.33: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.10.33: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.33: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.10.33: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.33: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.33 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/18/40 ms

IPv6 Interface Conf Router6:

system-view

34
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::6/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0011::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0012::2/64
quit
quit
save

Verify point-to-point connectivity:

<Router6>ping ipv6 2406:6400:000E:0011::1


PING 2406:6400:000E:0011::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:11::1
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:E:11::1
bytes=56 Sequence=2 hop limit=64 time = 1 ms
Reply from 2406:6400:E:11::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:11::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:11::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0011::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/12/30 ms

<Router6>ping ipv6 2406:6400:000E:0012::1


PING 2406:6400:000E:0012::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:12::1
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:E:12::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:12::1
bytes=56 Sequence=3 hop limit=64 time = 1 ms
Reply from 2406:6400:E:12::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:12::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0012::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/12/30 ms

35 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Interface configuration of training ISP network Region 3:

IPv4 Interface Conf Router7:

system-view
interface loopback 0
description Router7 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.7 255.255.255.255
interface gigabitethernet2/0/0
description WAN R7-R8
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.50 255.255.255.252
interface gigabitethernet2/0/1
description WAN R7-R9
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.57 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:

<Router7>ping 172.16.10.49
PING 172.16.10.49: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.49: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.10.49: bytes=56 Sequence=2 ttl=255 time=20 ms

36
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
Reply from 172.16.10.49: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.49: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.49: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.49 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/22/50 ms

<Router7>ping 172.16.10.58
PING 172.16.10.58: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.58: bytes=56 Sequence=1 ttl=255 time=60 ms
Reply from 172.16.10.58: bytes=56 Sequence=2 ttl=255 time=1 ms
Reply from 172.16.10.58: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.58: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.58: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.58 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/16/60 ms

IPv6 Interface Conf Router7:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::7/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0020::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0022::1/64
quit
quit
save

Verify point-to-point connectivity:

<Router7>ping ipv6 2406:6400:000E:0020::1


PING 2406:6400:000E:0020::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:20::1
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:E:20::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:20::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:20::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:20::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0020::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/14/30 ms

37 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

<Router7>ping ipv6 2406:6400:000E:0022::2


PING 2406:6400:000E:0022::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:22::2
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:E:22::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:22::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:22::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:22::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0022::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/14/30 ms

IPv4 Interface Conf Router8:

system-view
interface loopback 0
description Router8 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.8 255.255.255.255
interface gigabitethernet2/0/0
description WAN R8-R7
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.49 255.255.255.252
interface gigabitethernet2/0/1
description WAN R8-R9
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.53 255.255.255.252
interface gigabitethernet4/0/0
description Purple Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.12.3 255.255.255.0
interface gigabitethernet4/0/1
description Green Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.13.3 255.255.255.0
interface gigabitethernet2/0/3
description Router5 DC net
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.4.1 255.255.255.224
quit

38
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
quit
save

Verify point-to-point connectivity:

<Router8>ping 172.16.10.50
PING 172.16.10.50: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.50: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.10.50: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.50: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.50: bytes=56 Sequence=4 ttl=255 time=1 ms
Reply from 172.16.10.50: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.50 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/12/30 ms

<Router8>ping 172.16.10.54
PING 172.16.10.54: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.54: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.10.54: bytes=56 Sequence=2 ttl=255 time=1 ms
Reply from 172.16.10.54: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.54: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.54: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.54 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/14/40 ms

Verify transport connectivity:

<Router8>ping 172.16.12.1
PING 172.16.12.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.1: bytes=56 Sequence=1 ttl=255 time=80 ms
Reply from 172.16.12.1: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.1: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.12.1: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.12.1: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.12.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 40/48/80 ms

<Router8>ping 172.16.12.2
PING 172.16.12.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.2: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.12.2: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.2: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.12.2: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.12.2: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.12.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received

39 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

0.00% packet loss


round-trip min/avg/max = 30/38/50 ms

<Router8>ping 172.16.12.4
PING 172.16.12.4: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.4: bytes=56 Sequence=1 ttl=255 time=80 ms
Reply from 172.16.12.4: bytes=56 Sequence=2 ttl=255 time=50 ms
Reply from 172.16.12.4: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.12.4: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.12.4: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.12.4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/48/80 ms

<Router8>ping 172.16.13.1
PING 172.16.13.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.1: bytes=56 Sequence=1 ttl=255 time=80 ms
Reply from 172.16.13.1: bytes=56 Sequence=2 ttl=255 time=60 ms
Reply from 172.16.13.1: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.1: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.1: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.13.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/50/80 ms

<Router8>ping 172.16.13.2
PING 172.16.13.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.2: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.13.2: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.13.2: bytes=56 Sequence=3 ttl=255 time=60 ms
Reply from 172.16.13.2: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.2: bytes=56 Sequence=5 ttl=255 time=40 ms

--- 172.16.13.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/44/60 ms

<Router8>ping 172.16.13.4
PING 172.16.13.4: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.4: bytes=56 Sequence=1 ttl=255 time=80 ms
Reply from 172.16.13.4: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.13.4: bytes=56 Sequence=3 ttl=255 time=40 ms
Reply from 172.16.13.4: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.13.4: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.13.4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/42/80 ms

IPv6 Interface Conf Router8:

40
APNIC IPv6/Routing Workshop Lab (Huawei VRP)

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::8/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0020::1/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0021::1/64
interface gigabitethernet4/0/0
ipv6 enable
ipv6 address 2406:6400:0002:0000::3/48
interface gigabitethernet4/0/1
ipv6 enable
ipv6 address 2406:6400:0003:0000::3/48
interface gigabitethernet2/0/3
ipv6 enable
ipv6 address 2406:6400:0C00:0000::1/64
quit
quit
save

Verify point-to-point connectivity:

<Router8>ping ipv6 2406:6400:000E:0020::2


PING 2406:6400:000E:0020::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:20::2
bytes=56 Sequence=1 hop limit=64 time = 20 ms
Reply from 2406:6400:E:20::2
bytes=56 Sequence=2 hop limit=64 time = 20 ms
Reply from 2406:6400:E:20::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:20::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:20::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0020::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/14/20 ms

<Router8>ping ipv6 2406:6400:000E:0021::2


PING 2406:6400:000E:0021::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:21::2
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:E:21::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:21::2
bytes=56 Sequence=3 hop limit=64 time = 20 ms
Reply from 2406:6400:E:21::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:21::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0021::2 ping statistics ---


5 packet(s) transmitted

41 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/18/40 ms

Verify transport connectivity:

<Router8>ping ipv6 2406:6400:0002:0000::1


PING 2406:6400:0002:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::1
bytes=56 Sequence=1 hop limit=64 time = 100 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=2 hop limit=64 time = 20 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=3 hop limit=64 time = 60 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=5 hop limit=64 time = 70 ms

--- 2406:6400:0002:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/58/100 ms

<Router8>ping ipv6 2406:6400:0002:0000::2


PING 2406:6400:0002:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::2
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=4 hop limit=64 time = 50 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0002:0000::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/38/50 ms

<Router8>ping ipv6 2406:6400:0002:0000::4


PING 2406:6400:0002:0000::4 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::4
bytes=56 Sequence=1 hop limit=64 time = 80 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=2 hop limit=64 time = 50 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=4 hop limit=64 time = 60 ms
Reply from 2406:6400:2::4
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0002:0000::4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received

42
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
0.00% packet loss
round-trip min/avg/max = 30/52/80 ms

<Router8>ping ipv6 2406:6400:0003:0000::1


PING 2406:6400:0003:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::1
bytes=56 Sequence=1 hop limit=64 time = 70 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 40/48/70 ms

<Router8>ping ipv6 2406:6400:0003:0000::2


PING 2406:6400:0003:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::2
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0003:0000::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/34/50 ms

<Router8>ping ipv6 2406:6400:0003:0000::4


PING 2406:6400:0003:0000::4 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::4
bytes=56 Sequence=1 hop limit=64 time = 70 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=2 hop limit=64 time = 70 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::4
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::4 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 40/54/70 ms

IPv4 Interface Conf Router9:

43 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

system-view
interface loopback 0
description Router9 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.9 255.255.255.255
interface gigabitethernet2/0/0
description WAN R9-R8
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.54 255.255.255.252
interface gigabitethernet2/0/1
description WAN R9-R7
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.58 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:

<Router9>ping 172.16.10.57
PING 172.16.10.57: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.57: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.57: bytes=56 Sequence=2 ttl=255 time=20 ms
Reply from 172.16.10.57: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.57: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.57: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.57 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/14/20 ms

<Router9>ping 172.16.10.53
PING 172.16.10.53: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.53: bytes=56 Sequence=1 ttl=255 time=1 ms
Reply from 172.16.10.53: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.53: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.53: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.53: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.53 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/8/10 ms

IPv6 Interface Conf Router9:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::9/128

44
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0021::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0022::2/64
quit
quit
save

Verify point-to-point connectivity:

<Router9>ping ipv6 2406:6400:000E:0021::1


PING 2406:6400:000E:0021::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:21::1
bytes=56 Sequence=1 hop limit=64 time = 20 ms
Reply from 2406:6400:E:21::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:21::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:21::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:21::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0021::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/12/20 ms

<Router9>ping ipv6 2406:6400:000E:0022::1


PING 2406:6400:000E:0022::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:22::1
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:22::1
bytes=56 Sequence=2 hop limit=64 time = 1 ms
Reply from 2406:6400:E:22::1
bytes=56 Sequence=3 hop limit=64 time = 20 ms
Reply from 2406:6400:E:22::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:22::1
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:000E:0022::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/14/30 ms

45 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

Interface configuration of training ISP network Region 4:


IPv4 Interface Conf Router10:

system-view
interface loopback 0
description Router10 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.10 255.255.255.255
interface gigabitethernet2/0/0
description WAN R10-R11
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.74 255.255.255.252
interface gigabitethernet2/0/1
description WAN R10-R12
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.81 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:

<Router10>ping 172.16.10.73
PING 172.16.10.73: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.73: bytes=56 Sequence=1 ttl=255 time=70 ms

46
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
Reply from 172.16.10.73: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.10.73: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.10.73: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.73: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.73 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/32/70 ms

<Router10>ping 172.16.10.82
PING 172.16.10.82: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.82: bytes=56 Sequence=1 ttl=255 time=90 ms
Reply from 172.16.10.82: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.10.82: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.10.82: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.82: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.10.82 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/38/90 ms

IPv6 Interface Conf Router10:

system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::10/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0030::2/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0032::1/64
quit
quit
save

Verify point-to-point connectivity:


<Router10>ping ipv6 2406:6400:000E:0030::1
PING 2406:6400:000E:0030::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:30::1
bytes=56 Sequence=1 hop limit=64 time = 50 ms
Reply from 2406:6400:E:30::1
bytes=56 Sequence=2 hop limit=64 time = 50 ms
Reply from 2406:6400:E:30::1
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:E:30::1
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:E:30::1
bytes=56 Sequence=5 hop limit=64 time = 20 ms

--- 2406:6400:000E:0030::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss

47 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

round-trip min/avg/max = 20/36/50 ms

<Router10>ping ipv6 2406:6400:000E:0032::2


PING 2406:6400:000E:0032::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:32::2
bytes=56 Sequence=1 hop limit=64 time = 70 ms
Reply from 2406:6400:E:32::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:32::2
bytes=56 Sequence=3 hop limit=64 time = 20 ms
Reply from 2406:6400:E:32::2
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:E:32::2
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:000E:0032::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/32/70 ms

IPv4 Interface Conf Router11:


system-view
interface loopback 0
description Router11 Loopback
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.11 255.255.255.255
interface gigabitethernet2/0/0
description WAN R11-R10
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.73 255.255.255.252
interface gigabitethernet2/0/1
description WAN R11-R12
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.77 255.255.255.252
interface gigabitethernet4/0/0
description Purple Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.12.4 255.255.255.0
interface gigabitethernet4/0/1
description Green Transport Link
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.13.4 255.255.255.0
interface gigabitethernet2/0/3
description Router5 DC net
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.6.1 255.255.255.224
quit

48
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
quit
save

Verify point-to-point connectivity:


<Router11>ping 172.16.10.74
PING 172.16.10.74: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.74: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.10.74: bytes=56 Sequence=2 ttl=255 time=20 ms
Reply from 172.16.10.74: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.74: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.74: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.74 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/20/50 ms

<Router11>ping 172.16.10.78
PING 172.16.10.78: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.78: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.10.78: bytes=56 Sequence=2 ttl=255 time=10 ms
Reply from 172.16.10.78: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.78: bytes=56 Sequence=4 ttl=255 time=1 ms
Reply from 172.16.10.78: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.78 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/12/40 ms

Verify transport link:


<Router11>ping 172.16.12.1
PING 172.16.12.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.1: bytes=56 Sequence=1 ttl=255 time=80 ms
Reply from 172.16.12.1: bytes=56 Sequence=2 ttl=255 time=20 ms
Reply from 172.16.12.1: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.12.1: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.12.1: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.12.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/36/80 ms

<Router11>ping 172.16.12.2
PING 172.16.12.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.2: bytes=56 Sequence=1 ttl=255 time=40 ms
Reply from 172.16.12.2: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.2: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.12.2: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.12.2: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.12.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received

49 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

0.00% packet loss


round-trip min/avg/max = 20/32/40 ms

<Router11>ping 172.16.12.3
PING 172.16.12.3: 56 data bytes, press CTRL_C to break
Reply from 172.16.12.3: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.12.3: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.12.3: bytes=56 Sequence=3 ttl=255 time=20 ms
Reply from 172.16.12.3: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.12.3: bytes=56 Sequence=5 ttl=255 time=20 ms

--- 172.16.12.3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/28/40 ms

<Router11>ping 172.16.13.1
PING 172.16.13.1: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.1: bytes=56 Sequence=1 ttl=255 time=70 ms
Reply from 172.16.13.1: bytes=56 Sequence=2 ttl=255 time=20 ms
Reply from 172.16.13.1: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.1: bytes=56 Sequence=4 ttl=255 time=40 ms
Reply from 172.16.13.1: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.13.1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/38/70 ms

<Router11>ping 172.16.13.2
PING 172.16.13.2: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.2: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 172.16.13.2: bytes=56 Sequence=2 ttl=255 time=30 ms
Reply from 172.16.13.2: bytes=56 Sequence=3 ttl=255 time=60 ms
Reply from 172.16.13.2: bytes=56 Sequence=4 ttl=255 time=30 ms
Reply from 172.16.13.2: bytes=56 Sequence=5 ttl=255 time=30 ms

--- 172.16.13.2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/36/60 ms

<Router11>ping 172.16.13.3
PING 172.16.13.3: 56 data bytes, press CTRL_C to break
Reply from 172.16.13.3: bytes=56 Sequence=1 ttl=255 time=10 ms
Reply from 172.16.13.3: bytes=56 Sequence=2 ttl=255 time=40 ms
Reply from 172.16.13.3: bytes=56 Sequence=3 ttl=255 time=30 ms
Reply from 172.16.13.3: bytes=56 Sequence=4 ttl=255 time=50 ms
Reply from 172.16.13.3: bytes=56 Sequence=5 ttl=255 time=50 ms

--- 172.16.13.3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/36/50 ms

IPv6 Interface Conf Router11:

50
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::11/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0030::1/64
interface gigabitethernet2/0/1
ipv6 enable
ipv6 address 2406:6400:000E:0031::1/64
interface gigabitethernet4/0/0
ipv6 enable
ipv6 address 2406:6400:0002:0000::4/48
interface gigabitethernet4/0/1
ipv6 enable
ipv6 address 2406:6400:0003:0000::4/48
interface gigabitethernet2/0/3
ipv6 enable
ipv6 address 2406:6400:0E00:0000::1/64
quit
quit
save

Verify point-to-point connectivity:


<Router11>ping ipv6 2406:6400:000E:0030::2
PING 2406:6400:000E:0030::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:30::2
bytes=56 Sequence=1 hop limit=64 time = 20 ms
Reply from 2406:6400:E:30::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:30::2
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:30::2
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:30::2
bytes=56 Sequence=5 hop limit=64 time = 1 ms

--- 2406:6400:000E:0030::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/10/20 ms

<Router11>ping ipv6 2406:6400:000E:0031::2


PING 2406:6400:000E:0031::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:31::2
bytes=56 Sequence=1 hop limit=64 time = 20 ms
Reply from 2406:6400:E:31::2
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:31::2
bytes=56 Sequence=3 hop limit=64 time = 1 ms
Reply from 2406:6400:E:31::2
bytes=56 Sequence=4 hop limit=64 time = 1 ms
Reply from 2406:6400:E:31::2
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0031::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss

51 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

round-trip min/avg/max = 1/8/20 ms

Verify transport link:

<Router11>ping ipv6 2406:6400:0002:0000::1


PING 2406:6400:0002:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::1
bytes=56 Sequence=1 hop limit=64 time = 80 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=4 hop limit=64 time = 30 ms
Reply from 2406:6400:2::1
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0002:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/44/80 ms

<Router11>ping ipv6 2406:6400:0002:0000::2


PING 2406:6400:0002:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::2
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=3 hop limit=64 time = 50 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::2
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0002:0000::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/40/50 ms

<Router11>ping ipv6 2406:6400:0002:0000::3


PING 2406:6400:0002:0000::3 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:2::3
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:2::3
bytes=56 Sequence=5 hop limit=64 time = 20 ms

--- 2406:6400:0002:0000::3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/34/40 ms

52
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
<Router11>ping ipv6 2406:6400:0003:0000::1
PING 2406:6400:0003:0000::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::1
bytes=56 Sequence=1 hop limit=64 time = 80 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=3 hop limit=64 time = 30 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=4 hop limit=64 time = 30 ms
Reply from 2406:6400:3::1
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/42/80 ms

<Router11>ping ipv6 2406:6400:0003:0000::2


PING 2406:6400:0003:0000::2 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::2
bytes=56 Sequence=1 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=2 hop limit=64 time = 30 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::2
bytes=56 Sequence=5 hop limit=64 time = 40 ms

--- 2406:6400:0003:0000::2 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/38/40 ms

<Router11>ping ipv6 2406:6400:0003:0000::3


PING 2406:6400:0003:0000::3 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:3::3
bytes=56 Sequence=1 hop limit=64 time = 30 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=2 hop limit=64 time = 40 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=3 hop limit=64 time = 40 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=4 hop limit=64 time = 40 ms
Reply from 2406:6400:3::3
bytes=56 Sequence=5 hop limit=64 time = 30 ms

--- 2406:6400:0003:0000::3 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 30/36/40 ms

IPv4 Interface Conf Router12:


system-view
interface loopback 0

53 ©APNIC V1.0
Created: 28 January2016
Wednesday, June 08, 2016

description Router12 Loopback


undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.15.12 255.255.255.255
interface gigabitethernet2/0/0
description WAN R12-R11
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.78 255.255.255.252
interface gigabitethernet2/0/1
description WAN R12-R10
undo icmp redirect send
undo ip forward-broadcast
undo icmp port-unreachable send
ip address 172.16.10.82 255.255.255.252
quit
quit
save

Verify point-to-point connectivity:


<Router12>ping 172.16.10.81
PING 172.16.10.81: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.81: bytes=56 Sequence=1 ttl=255 time=50 ms
Reply from 172.16.10.81: bytes=56 Sequence=2 ttl=255 time=20 ms
Reply from 172.16.10.81: bytes=56 Sequence=3 ttl=255 time=1 ms
Reply from 172.16.10.81: bytes=56 Sequence=4 ttl=255 time=20 ms
Reply from 172.16.10.81: bytes=56 Sequence=5 ttl=255 time=10 ms

--- 172.16.10.81 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/20/50 ms

<Router12>ping 172.16.10.77
PING 172.16.10.77: 56 data bytes, press CTRL_C to break
Reply from 172.16.10.77: bytes=56 Sequence=1 ttl=255 time=20 ms
Reply from 172.16.10.77: bytes=56 Sequence=2 ttl=255 time=1 ms
Reply from 172.16.10.77: bytes=56 Sequence=3 ttl=255 time=10 ms
Reply from 172.16.10.77: bytes=56 Sequence=4 ttl=255 time=10 ms
Reply from 172.16.10.77: bytes=56 Sequence=5 ttl=255 time=1 ms

--- 172.16.10.77 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 1/8/20 ms

IPv6 Interface Conf Router12:


system-view
interface loopback 0
ipv6 enable
ipv6 address 2406:6400:0000:0000::12/128
interface gigabitethernet2/0/0
ipv6 enable
ipv6 address 2406:6400:000E:0031::2/64
interface gigabitethernet2/0/1

54
APNIC IPv6/Routing Workshop Lab (Huawei VRP)
ipv6 enable
ipv6 address 2406:6400:000E:0032::2/64
quit
quit
save

Verify point-to-point connectivity:


<Router12>ping ipv6 2406:6400:000E:0031::1
PING 2406:6400:000E:0031::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:31::1
bytes=56 Sequence=1 hop limit=64 time = 20 ms
Reply from 2406:6400:E:31::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:31::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:31::1
bytes=56 Sequence=4 hop limit=64 time = 20 ms
Reply from 2406:6400:E:31::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0031::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/14/20 ms

<Router12>ping ipv6 2406:6400:000E:0032::1


PING 2406:6400:000E:0032::1 : 56 data bytes, press CTRL_C to break
Reply from 2406:6400:E:32::1
bytes=56 Sequence=1 hop limit=64 time = 10 ms
Reply from 2406:6400:E:32::1
bytes=56 Sequence=2 hop limit=64 time = 10 ms
Reply from 2406:6400:E:32::1
bytes=56 Sequence=3 hop limit=64 time = 10 ms
Reply from 2406:6400:E:32::1
bytes=56 Sequence=4 hop limit=64 time = 10 ms
Reply from 2406:6400:E:32::1
bytes=56 Sequence=5 hop limit=64 time = 10 ms

--- 2406:6400:000E:0032::1 ping statistics ---


5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 10/10/10 ms

55 ©APNIC V1.0
Created: 28 January2016

Das könnte Ihnen auch gefallen