Wednesday 28 December 2016

MPLS CHAPTER 9

MPLS CHAPTER 9
QUESTIONS :
29. Which command shows you the routes inside the VRF ?
30. What does 'address-family ipv4' mean within EIGRP & RIP ?
31. How do you link an OSPF process to a specific VRF ?

Solutions:

Refer the diagram below:



29. Which command shows you the routes inside the VRF ?
PE0R1#sh ip route vrf Cust_site1

Routing Table: Cust_site1
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     4.0.0.0/32 is subnetted, 1 subnets
O       4.4.4.1 [110/11] via 10.1.14.4, 00:13:56, FastEthernet0/1
     10.0.0.0/24 is subnetted, 1 subnets
C       10.1.14.0 is directly connected, FastEthernet0/1
PE0R1#sh ip route vrf Cust_site2

Routing Table: Cust_site2
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

     5.0.0.0/32 is subnetted, 1 subnets
D       5.5.5.1 [90/2297856] via 10.1.15.5, 00:07:50, Serial0/0
     7.0.0.0/32 is subnetted, 1 subnets
B       7.7.7.1 [200/0] via 3.3.3.3, 00:04:47
     10.0.0.0/24 is subnetted, 2 subnets
C       10.1.15.0 is directly connected, Serial0/0
B       10.1.37.0 [200/0] via 3.3.3.3, 00:04:47

30. What does 'address-family ipv4' mean within EIGRP & RIP ?

PE0R1#sh run | se eigrp
router eigrp 1
 auto-summary
 !
 address-family ipv4 vrf Cust_site2
  network 10.0.0.0
  no auto-summary
  autonomous-system 15
 exit-address-family

 PE0R3#sh run | se rip
router rip
 version 2
 !
 address-family ipv4 vrf Cust_site1
  network 10.0.0.0
  no auto-summary
 exit-address-family

 31. How do you link an OSPF process to a specific VRF ?
 32. How to enable BGP within address-family ?

router ospf 101 vrf Cust_site1
 log-adjacency-changes
 network 10.1.14.0 0.0.0.255 area 0

 32. How to enable BGP within address-family ?

 PE0R3#sh run | se bgp
router bgp 100
 no synchronization
 bgp log-neighbor-changes
 neighbor 1.1.1.1 remote-as 100
 neighbor 1.1.1.1 update-source Loopback1
 no auto-summary
 !
 address-family vpnv4
  neighbor 1.1.1.1 activate
  neighbor 1.1.1.1 send-community extended
  neighbor 1.1.1.1 next-hop-self
 exit-address-family
 !
 address-family ipv4 vrf Cust_site2
  neighbor 10.1.37.7 remote-as 200
  neighbor 10.1.37.7 activate
  no synchronization
 exit-address-family
 !

No comments:

Post a Comment