www.howtonetwork.org

CCNA & CCNP Certifcation Training

  • About
  • Contact
  • FAQ
  • Join
  • Home
  • CCNA
    • ICND1
    • ICND2
    • 101 CCNA LABS
  • CCNP
    • ROUTE
    • SWITCH
    • TSHOOT
    • 101 CCNP LABS
  • CompTIA
    • Security+
    • Network+
  • Design
    • CCDA
    • CCDP
You are here: Home / 101 CCNP Labs Solutions / CCNP Lab 045 Solution: Internet Protocol version 6 Lab

CCNP Lab 045 Solution: Internet Protocol version 6 Lab

Lab Objective:

The focus of this lab is to understand MP-BGP implementation and configuration in Cisco IOS routers. Additional technologies include attribute manipulation and route redistribution.

Lab Topology:

The lab network topology is illustrated below:

department645

 

IMPORTANT NOTE

If you are using the www.howtonetwork.net racks, please bring up the LAN interfaces connected to the routers by issuing the no shutdown command on the connected switches. If you are using a home lab with no
Switches, you can bring up the LAN interfaces using the following configurations on your routers:

interface fastethernet 0/0
no keepalive
loopback
no shutdown

Alternately, you can simply connect the interfaces to a hub or switch if you have one available in your own lab.

 

Task 1

Configure hostnames and IPv6 addressing on all routers as illustrated in the network topology.

Task 2

Configure OSPFv3 on R1 and R2. Enable OSPFv3 for the WAN interfaces of R1 and R2. Do NOT advertise R1 or R2s LAN subnet using OSPFv3. Ensure that R1s LAN subnet is advertised as an external Type 1 LSA. Verify the configuration using the appropriate commands.

Task 3

Configure MP-BGP on R2, R3 and R4. All routers should use Link Local addresses for peering and establishing MP-BGP sessions. Verify your configuration

Task 4

Advertise the LAN subnets of R1, R2, and R3 via MP-BGP. Verify your configuration.

Task 5

Redistribute between MP-BGP and OSPFv3 on R2. Ensure that ONLY the LAN subnets are redistributed. Verify your configuration using the appropriate commands.
Task 6

Configure your network so that all routers can ping each others’ LAN subnets from their own local LAN subnet, i.e. LAN-to-LAN pings. Verify your configuration using extended ping. When completing this task, adhere to the following restrictions:

  1. You are NOT allowed to enable an IGP within AS 254
  2. You are NOT allowed to configure static routes on R2, R3 and R4
  3. You are NOT allowed to create any tunnels
  4. You are NOT allowed to advertise the WAN prefixes via BGP
  5. You are NOT allowed to use MP-BGP default routing

Lab Validation

Task 1

Please refer to previous labs for basic IPv6 addressing and hostname configuration. This will not be included in this section to avoid being redundant.

Task 2

R1(config)#ipv6 router ospf 1
R1(config-rtr)#router-id 1.1.1.1
R1(config-rtr)#redistribute connected metric-type 1
R1(config-rtr)#exit
R1(config)#interface serial 0/0
R1(config-if)#ipv6 ospf 1 area 0
R1(config-if)#exit
R2(config)#ipv6 router ospf 2
R2(config-rtr)#router-id 2.2.2.2
R2(config-rtr)#exit
R2(config)#interface serial 0/0
R2(config-if)#ipv6 ospf 2 area 0
R2(config-if)#exit

Verify basic OSPFv3 configuration using the show ipv6 ospf neighbor command:

R1#show ipv6 ospf neighbor

Neighbor ID Pri State Dead Time Interface ID Interface
2.2.2.2 1 FULL/ – 00:00:35 5 Serial0/0

R2#show ipv6 ospf neighbor

Neighbor ID Pri State Dead Time Interface ID Interface
1.1.1.1 1 FULL/ – 00:00:32 5 Serial0/0

Next, verify OSPFv3 redistribution by looking at the external LSA entry in the LSDB:

R1#show ipv6 ospf database external

OSPFv3 Router with ID (1.1.1.1) (Process ID 1)

Type-5 AS External Link States

LS age: 127
LS Type: AS External Link
Link State ID: 0
Advertising Router: 1.1.1.1
LS Seq Number: 80000001
Checksum: 0x9D44
Length: 36
Prefix Address: 3FFE:ABCD:1111:1::
Prefix Length: 64, Options: None
Metric Type: 1 (Comparable directly to link state metric)
Metric: 20

R2#show ipv6 ospf database external

OSPFv3 Router with ID (2.2.2.2) (Process ID 2)

Type-5 AS External Link States

Routing Bit Set on this LSA
LS age: 135
LS Type: AS External Link
Link State ID: 0
Advertising Router: 1.1.1.1
LS Seq Number: 80000001
Checksum: 0x9D44
Length: 36
Prefix Address: 3FFE:ABCD:1111:1::
Prefix Length: 64, Options: None
Metric Type: 1 (Comparable directly to link state metric)
Metric: 20

Task 3

This task is relatively straightforward; however, it is important to remember that when using a Link Local address for peering, you must use theneighbor [address] update-source [interface] command to ensure that the session will be established because Link-Local addresses are specific to interfaces. This is required only when using Link-Local addresses for peering. This task is completed as follows:

R2(config)#router bgp 254
R2(config-router)#bgp router-id 2.2.2.2
R2(config-router)#address-family ipv6
R2(config-router-af)#neighbor FE80::213:7FFF:FEAF:3E00 remote-as 254
R2(config-router-af)#$80::213:7FFF:FEAF:3E00 update-source serial 0/1 
R2(config-router-af)#exit
R3(config)#router bgp 254
R3(config-router)#bgp router-id 3.3.3.3
R3(config-router)#address-family ipv6
R3(config-router-af)#neighbor FE80::20D:28FF:FE9E:F940 remote-as 254
R3(config-router-af)#$80::20D:28FF:FE9E:F940 update-source serial 1/1 
R3(config-router-af)#neighbor FE80::20F:23FF:FE5E:F120 remote-as 254
R3(config-router-af)#$80::20F:23FF:FE5E:F120 update-source serial 1/2
R3(config-router-af)#exit
R4(config)#router bgp 254
R4(config-router)#bgp router-id 4.4.4.4
R4(config-router)#address-family ipv6
R4(config-router-af)#neighbor FE80::213:7FFF:FEAF:3E00 remote-as 254
R4(config-router-af)#$80::213:7FFF:FEAF:3E00 update-source serial 0/0 
R4(config-router-af)#exit

Verify your configuration using the show bgp ipv6 unicast summary command:

R2#show bgp ipv6 unicast summary
BGP router identifier 2.2.2.2, local AS number 254
BGP table version is 1, main routing table version 1

Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
FE80::213:7FFF:FEAF:3E00
4 254 5 5 1 0 0 00:01:47 0

R3#show bgp ipv6 unicast summary
BGP router identifier 3.3.3.3, local AS number 254
BGP table version is 1, main routing table version 1

Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
FE80::20D:28FF:FE9E:F940
4 254 4 4 1 0 0 00:01:51 0
FE80::20F:23FF:FE5E:F120
4 254 4 4 1 0 0 00:00:28 0

R4#show bgp ipv6 unicast summary
BGP router identifier 4.4.4.4, local AS number 254
BGP table version is 1, main routing table version 1

Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
FE80::213:7FFF:FEAF:3E00
4 254 4 4 1 0 0 00:00:31 0

 

Task 4

The advertisement of the LAN subnets via BGP is straightforward. To ensure that R2 and R4 do see each others’ LAN subnets in their respective BGP RIBs, R3 must be configured as a route reflector. This task is completed as follows:

R2(config)#router bgp 254
R2(config-router)#address-family ipv6
R2(config-router-af)#network 3FFE:ABCD:1111:2::/64
R2(config-router-af)#exit
R2(config-router)#exit
R3(config)#router bgp 254
R3(config-router)#address-family ipv6
R3(config-router-af)#network 3FFE:ABCD:1111:3::/64
R3(config-router-af)#exit
R3(config-router)#exit
R4(config)#router bgp 254
R4(config-router)#address-family ipv6
R4(config-router-af)#network 3FFE:ABCD:1111:4::/64
R4(config-router-af)#exit
R4(config-router)#exit

Verify your configuration using the show bgp ipv6 unicast command on all routers:

R2#show bgp ipv6 unicast 3FFE:ABCD:1111:2::2/64
BGP routing table entry for 3FFE:ABCD:1111:2::/64, version 2
Paths: (1 available, best #1, table Global-IPv6-Table)
Advertised to update-groups:
1
Local
:: from 0.0.0.0 (2.2.2.2)
Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best
R3#show bgp ipv6 unicast 3FFE:ABCD:1111:3::3/64
BGP routing table entry for 3FFE:ABCD:1111:3::/64, version 5
Paths: (1 available, best #1, table Global-IPv6-Table)
Advertised to update-groups:
2
Local
:: from 0.0.0.0 (3.3.3.3)
Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best
R4#show bgp ipv6 unicast 3FFE:ABCD:1111:4::4/64
BGP routing table entry for 3FFE:ABCD:1111:4::/64, version 3
Paths: (1 available, best #1, table Global-IPv6-Table)
Advertised to update-groups:
1
Local
:: from 0.0.0.0 (4.4.4.4)
Origin IGP, metric 0, localpref 100, weight 32768, valid, sourced, local, best

Task 5

By default, when redistributing between IPv6 routing protocols, connected subnets will not be included. Therefore, you must explicitly redistribute the connected R2 LAN subnet into OSPF using a route map so that only this subnet is redistributed.

When redistributing between OSPFv3 and MP-BGP, the same OSPF-to-BGP rules apply, i.e. only internal prefixes are accepted. This default behavior must be modified to complete this task. This task is completed by implementing the following configuration on R2:

R2(config)#route-map LAN-ONLY permit 10
R2(config-route-map)#match interface fastethernet 0/0
R2(config-route-map)#exit
R2(config)#route-map LAN-ONLY deny 20
R2(config-route-map)#exit
R2(config)#ipv6 router ospf 2
R2(config-rtr)#redistribute connected route-map LAN-ONLY
R2(config-rtr)#redistribute bgp 254
R2(config-rtr)#exit
R2(config)#router bgp 254
R2(config-router)#address-family ipv6
R2(config-router-af)#redistribute ospf 2 match external 1
R2(config-router-af)#bgp redistribute-internal
R2(config-router-af)#exit
R2(config-router)#exit

Verify your configuration by looking at the LSDB on either R1 or R2 for BGP-to-OSPF route redistribution. At this point in time, not all prefixes will be present. This is normal given the implemented configuration up to this point:

R2#show ipv6 ospf database external

OSPFv3 Router with ID (2.2.2.2) (Process ID 2)

Type-5 AS External Link States

Routing Bit Set on this LSA
LS age: 1760
LS Type: AS External Link
Link State ID: 0
Advertising Router: 1.1.1.1
LS Seq Number: 80000001
Checksum: 0x9D44
Length: 36
Prefix Address: 3FFE:ABCD:1111:1::
Prefix Length: 64, Options: None
Metric Type: 1 (Comparable directly to link state metric)
Metric: 20

LS age: 272
LS Type: AS External Link
Link State ID: 0
Advertising Router: 2.2.2.2
LS Seq Number: 80000001
Checksum: 0x3DAD
Length: 36
Prefix Address: 3FFE:ABCD:1111:3::
Prefix Length: 64, Options: None
Metric Type: 2 (Larger than any link state path)
Metric: 1

LS age: 56
LS Type: AS External Link
Link State ID: 1
Advertising Router: 2.2.2.2
LS Seq Number: 80000001
Checksum: 0x9344
Length: 36
Prefix Address: 3FFE:ABCD:1111:2::
Prefix Length: 64, Options: None
Metric Type: 2 (Larger than any link state path)
Metric: 20

Similarly, verify OSPF-to-BGP redistribution by looking at the MP-BGP RIB:

R2#show bgp ipv6 unicast
BGP table version is 4, local router ID is 2.2.2.2
Status codes: s suppressed, d damped, h history, * valid, > best, i – internal,
r RIB-failure, S Stale
Origin codes: i – IGP, e – EGP, ? – incomplete

Network Next Hop Metric LocPrf Weight Path
*> 3FFE:ABCD:1111:1::/64
:: 84 32768 ?
*> 3FFE:ABCD:1111:2::/64
:: 0 32768 i
*>i3FFE:ABCD:1111:3::/64
FE80::213:7FFF:FEAF:3E00
0 100 0 i

Task 6

This task requires some considerable thought and is two-fold. First, it is important to recall that when peering using Link Local addresses, you must use a route map to specify the global Unicast address as the next hop address for the UPDATE messages sent by the local router. To complete this first part, implement the following configuration on R1, R2 and R3:

R2(config)#route-map NEXT-HOP permit 10
R2(config-route-map)#set ipv6 next-hop 2001:ABCD:1111:3::2
R2(config-route-map)#exit
R2(config)#router bgp 254
R2(config-router)#address-family ipv6
R2(config-router-af)#neighbor FE80::213:7FFF:FEAF:3E00 route-map NEXT-HOP out
R2(config-router-af)#exit
R2(config-router)#exit
R3(config)#route-map R2-NEXT-HOP permit 10
R3(config-route-map)#set ipv6 next-hop 2001:ABCD:1111:3::3
R3(config-route-map)#exit
R3(config)#route-map R4-NEXT-HOP permit 10
R3(config-route-map)#set ipv6 next-hop 2001:ABCD:1111:4::3
R3(config-route-map)#exit
R3(config)#router bgp 254
R3(config-router)#address-family ipv6
R3(config-router-af)#$80::20D:28FF:FE9E:F940 route-map R2-NEXT-HOP out 
R3(config-router-af)#$80::20F:23FF:FE5E:F120 route-map R4-NEXT-HOP out 
R3(config-router-af)#exit
R3(config-router)#exit
R4(config)#router bgp 254
R4(config-router)#address-family ipv6
R4(config-router-af)#neighbor FE80::213:7FFF:FEAF:3E00 route-map NEXT-HOP out
R4(config-router-af)#exit
R4(config-router)#exit

Following NEXT_HOP modification, the second part of this task is to ensure that you remember the normal iBGP-to-iBGP advertisement rules. By default, R3 will not advertise prefixes received from R2 to R4 and vice-versa. To work around this issue, R3 must be configured as a route reflector. This second part is completed as follows:

R3(config)#router bgp 254
R3(config-router)#address-family ipv6
R3(config-router-af)#neighbor FE80::20D:28FF:FE9E:F940 route-reflector-client
R3(config-router-af)#neighbor FE80::20F:23FF:FE5E:F120 route-reflector-client
R3(config-router-af)#network 3FFE:ABCD:1111:3::/64
R3(config-router-af)#exit
R3(config-router)#exit

Following this configuration, verify the appropriate prefix entries in the relevant protocol data structures, i.e. the LSDB on R1 and the MP-BGP RIBs on R2, R3, and R4 as follows::

R1#show ipv6 ospf database

OSPFv3 Router with ID (1.1.1.1) (Process ID 1)

Router Link States (Area 0)

ADV Router Age Seq# Fragment ID Link count Bits
1.1.1.1 1004 0x80000007 0 1 E
2.2.2.2 1152 0x80000004 0 1 E

Link (Type-8) Link States (Area 0)

ADV Router Age Seq# Link ID Interface
1.1.1.1 1505 0x80000002 5 Se0/0
2.2.2.2 1152 0x80000002 5 Se0/0

Intra Area Prefix Link States (Area 0)

ADV Router Age Seq# Link ID Ref-lstype Ref-LSID
1.1.1.1 1004 0x80000004 0 0x2001 0
2.2.2.2 1152 0x80000002 0 0x2001 0

Type-5 AS External Link States

ADV Router Age Seq# Prefix
1.1.1.1 1004 0x80000002 3FFE:ABCD:1111:1::/64
2.2.2.2 1455 0x80000001 3FFE:ABCD:1111:3::/64
2.2.2.2 1237 0x80000001 3FFE:ABCD:1111:2::/64
2.2.2.2 375 0x80000001 3FFE:ABCD:1111:4::/64

R2#show bgp ipv6 unicast
BGP table version is 7, local router ID is 2.2.2.2
Status codes: s suppressed, d damped, h history, * valid, > best, i – internal,
r RIB-failure, S Stale
Origin codes: i – IGP, e – EGP, ? – incomplete

Network Next Hop Metric LocPrf Weight Path
*> 3FFE:ABCD:1111:1::/64
:: 84 32768 ?
*> 3FFE:ABCD:1111:2::/64
:: 0 32768 i
*>i3FFE:ABCD:1111:3::/64
2001:ABCD:1111:3::3
0 100 0 i
*>i3FFE:ABCD:1111:4::/64
2001:ABCD:1111:3::3
0 100 0 i

R3#show bgp ipv6 unicast
BGP table version is 12, local router ID is 3.3.3.3
Status codes: s suppressed, d damped, h history, * valid, > best, i – internal,
r RIB-failure, S Stale
Origin codes: i – IGP, e – EGP, ? – incomplete

Network Next Hop Metric LocPrf Weight Path
*>i3FFE:ABCD:1111:1::/64
2001:ABCD:1111:3::2
84 100 0 ?
*>i3FFE:ABCD:1111:2::/64
2001:ABCD:1111:3::2
0 100 0 i
*> 3FFE:ABCD:1111:3::/64
:: 0 32768 i
*>i3FFE:ABCD:1111:4::/64
2001:ABCD:1111:4::4
0 100 0 i

R4#show bgp ipv6 unicast
BGP table version is 6, local router ID is 4.4.4.4
Status codes: s suppressed, d damped, h history, * valid, > best, i – internal,
r RIB-failure, S Stale
Origin codes: i – IGP, e – EGP, ? – incomplete

Network Next Hop Metric LocPrf Weight Path
*>i3FFE:ABCD:1111:1::/64
2001:ABCD:1111:4::3
84 100 0 ?
*>i3FFE:ABCD:1111:2::/64
2001:ABCD:1111:4::3
0 100 0 i
*>i3FFE:ABCD:1111:3::/64
2001:ABCD:1111:4::3
0 100 0 i
*> 3FFE:ABCD:1111:4::/64
:: 0 32768 i

Finally, complete this task by pinging LAN-to-LAN between all routers:

R1#ping 3FFE:ABCD:1111:2::2 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:2::2, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:1::1
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/1/4 ms

R1#ping 3FFE:ABCD:1111:3::3 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:3::3, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:1::1
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/16/16 ms

R1#ping 3FFE:ABCD:1111:4::4 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:4::4, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:1::1
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms

R2#ping 3FFE:ABCD:1111:1::1 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:1::1, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:2::2
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/2/4 ms

R2#ping 3FFE:ABCD:1111:3::3 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:3::3, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:2::2
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/14/16 ms

R2#ping 3FFE:ABCD:1111:4::4 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:4::4, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:2::2
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms

R3#ping 3FFE:ABCD:1111:1::1 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:1::1, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:3::3
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/16/16 ms

R3#ping 3FFE:ABCD:1111:2::2 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:2::2, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:3::3
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/14/16 ms

R3#ping 3FFE:ABCD:1111:4::4 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:4::4, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:3::3
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/16/16 ms

4#ping 3FFE:ABCD:1111:1::1 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:1::1, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:4::4
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms

R4#ping 3FFE:ABCD:1111:2::2 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:2::2, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:4::4
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms

R4#ping 3FFE:ABCD:1111:3::3 source fastethernet 0/0

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3FFE:ABCD:1111:3::3, timeout is 2 seconds:
Packet sent with a source address of 3FFE:ABCD:1111:4::4
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/13/16 ms

Final Router ConfigurationsR1

 

R1#term len 0
R1#sh run
Building configuration…

Current configuration : 994 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
no logging console
!
no aaa new-model
no network-clock-participate slot 1
no network-clock-participate wic 0
ip cef
!
!
!
!
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
ipv6 unicast-routing
ipv6 cef
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address 3FFE:ABCD:1111:1::1/64
!
interface Serial0/0
no ip address
ipv6 address 2001:ABCD:1111:1::1/64
ipv6 ospf 1 area 0
clock rate 2000000
!
interface Serial0/1
no ip address
shutdown
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
ipv6 router ospf 1
router-id 1.1.1.1
log-adjacency-changes
redistribute connected metric-type 1
!
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
!
end

R1#

R2

 

R2#term len 0
R2#sh run
Building configuration…

Current configuration : 1718 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
no logging console
!
no aaa new-model
no network-clock-participate slot 1
no network-clock-participate wic 0
ip cef
!
!
!
!
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
ipv6 unicast-routing
ipv6 cef
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address 3FFE:ABCD:1111:2::2/64
!
interface Serial0/0
no ip address
ipv6 address 2001:ABCD:1111:1::2/64
ipv6 ospf 2 area 0
!
interface Serial0/1
no ip address
ipv6 address 2001:ABCD:1111:3::2/64
!
router bgp 254
no synchronization
bgp router-id 2.2.2.2
bgp log-neighbor-changes
neighbor FE80::213:7FFF:FEAF:3E00 remote-as 254
neighbor FE80::213:7FFF:FEAF:3E00 update-source Serial0/1
no neighbor FE80::213:7FFF:FEAF:3E00 activate
no auto-summary
!
address-family ipv6
neighbor FE80::213:7FFF:FEAF:3E00 activate
neighbor FE80::213:7FFF:FEAF:3E00 route-map NEXT-HOP out
bgp redistribute-internal
network 3FFE:ABCD:1111:2::/64
redistribute ospf 2 match external 1
no synchronization
exit-address-family
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
ipv6 router ospf 2
router-id 2.2.2.2
log-adjacency-changes
redistribute connected route-map LAN-ONLY
redistribute bgp 254
!
!
route-map LAN-ONLY permit 10
match interface FastEthernet0/0
!
route-map LAN-ONLY deny 20
!
route-map NEXT-HOP permit 10
set ipv6 next-hop 2001:ABCD:1111:3::2
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
!
end

R2#

R3

 

R3#term len 0
R3#sh run
Building configuration…

Current configuration : 2187 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
no logging console
!
no aaa new-model
no network-clock-participate slot 1
no network-clock-participate wic 0
ip cef
!
!
!
!
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
ipv6 unicast-routing
ipv6 cef
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address 3FFE:ABCD:1111:3::3/64
!
interface Serial1/0
no ip address
shutdown
clock rate 128000
!
interface Serial1/1
no ip address
ipv6 address 2001:ABCD:1111:3::3/64
clock rate 128000
!
interface Serial1/2
no ip address
ipv6 address 2001:ABCD:1111:4::3/64
clock rate 128000
!
interface Serial1/3
no ip address
shutdown
!
interface Serial1/4
no ip address
shutdown
!
interface Serial1/5
no ip address
shutdown
!
interface Serial1/6
no ip address
shutdown
!
interface Serial1/7
no ip address
shutdown
!
router bgp 254
no synchronization
bgp router-id 3.3.3.3
bgp log-neighbor-changes
neighbor FE80::20D:28FF:FE9E:F940 remote-as 254
neighbor FE80::20D:28FF:FE9E:F940 update-source Serial1/1
no neighbor FE80::20D:28FF:FE9E:F940 activate
neighbor FE80::20F:23FF:FE5E:F120 remote-as 254
neighbor FE80::20F:23FF:FE5E:F120 update-source Serial1/2
no neighbor FE80::20F:23FF:FE5E:F120 activate
no auto-summary
!
address-family ipv6
neighbor FE80::20D:28FF:FE9E:F940 activate
neighbor FE80::20D:28FF:FE9E:F940 route-reflector-client
neighbor FE80::20D:28FF:FE9E:F940 route-map R2-NEXT-HOP out
neighbor FE80::20F:23FF:FE5E:F120 activate
neighbor FE80::20F:23FF:FE5E:F120 route-reflector-client
neighbor FE80::20F:23FF:FE5E:F120 route-map R4-NEXT-HOP out
network 3FFE:ABCD:1111:3::/64
exit-address-family
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
route-map R2-NEXT-HOP permit 10
set ipv6 next-hop 2001:ABCD:1111:3::3
!
route-map R4-NEXT-HOP permit 10
set ipv6 next-hop 2001:ABCD:1111:4::3
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
!
end

R3#

R4

 

R4#term len 0
R4#sh run
Building configuration…

Current configuration : 1362 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R4
!
boot-start-marker
boot-end-marker
!
no logging console
!
no aaa new-model
no network-clock-participate slot 1
no network-clock-participate wic 0
ip cef
!
!
!
!
no ip domain lookup
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
ipv6 unicast-routing
ipv6 cef
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address 3FFE:ABCD:1111:4::4/64
!
interface Serial0/0
no ip address
ipv6 address 2001:ABCD:1111:4::4/64
!
interface Serial0/1
no ip address
shutdown
!
router bgp 254
no synchronization
bgp router-id 4.4.4.4
bgp log-neighbor-changes
neighbor FE80::213:7FFF:FEAF:3E00 remote-as 254
neighbor FE80::213:7FFF:FEAF:3E00 update-source Serial0/0
no neighbor FE80::213:7FFF:FEAF:3E00 activate
no auto-summary
!
address-family ipv6
neighbor FE80::213:7FFF:FEAF:3E00 activate
neighbor FE80::213:7FFF:FEAF:3E00 route-map NEXT-HOP out
network 3FFE:ABCD:1111:4::/64
exit-address-family
!
ip forward-protocol nd
!
!
no ip http server
no ip http secure-server
!
!
route-map NEXT-HOP permit 10
set ipv6 next-hop 2001:ABCD:1111:4::4
!
!
!
control-plane
!
!
!
!
!
!
!
!
!
!
line con 0
line aux 0
line vty 0 4
login
!
!
end

R4#

Prev

Next

About Us

This is a free bonus site for members of www.howtonetwork.com

Copyright

The content on this copyright Reality Press Ltd.
Copyright Reality Press Ltd.