Saturday 15 December 2018

What is VLAN Trunking? How to configure?


A Trunk link is a point-to-point link between two network devices. Trunk links carry more than one VLAN. With VLAN trunking, we can extend our configured VLAN across the entire network. Remember, sending information from an access link on one VLAN to another VLAN is not possible without the additional device a router, or an external layer 2 bridge connected between the VLAN.



A Trunk link can transport multiple VLAN traffic through a single switch port. A trunk link is not assigned to a specific VLAN.

Types of links/ports.

Access links
  • Connecting to end devices (hosts or router)
  • Part of one VLAN
ACCESS LINK



Trunk links
  • Do not belong to any VLAN
  • It Carry multiple VLAN traffic
  • It’s a physical Link between two switches
TRUNK LINK


Frame tagging

In order to make sure that the same VLAN users on different switches communicate with each other there is a method of tagging happens on trunk links. A tag is added before a frame is sent and removed once it is received on the trunk link. Frame tagging happens only on the trunk links.
VLAN Frame Identification


A Trunk link can transport multiple VLAN traffic; a switch must identify frames with their respective VLANs as they are sent and received over a trunk link.

VLAN identification can be performed using  two methods, each using  a different frame identification mechanism:
  • Inter-switch link (ISL) protocol
  • IEEE 802.1Q (Dot1Q) protocol

Inter-switch link (ISL) is a Cisco-proprietary method for preserving the source VLAN identification of frame passing over the trunk link. ISL works with Ethernet, Token ring, and FDDI. ISL adds a 26-byte header and a byte trailer to the frame you can say its adds 30 bytes of tag. The ISL method of VLAN identification or trunking encapsulation no longer is supported across all Cisco catalyst switch platforms.

The IEEE 802.1Q protocol is also used to carry VLAN traffic, dot1q is an open standard trunking protocol, it works only on Ethernet, dot1q introduces us to the concept of Native VLAN on a trunk. The frame belongs to native VLAN is not encapsulation and with no tag. Dot1q is only adding 4 bytes tag will be added to the original frame just after the source address field.


Let's see the configuration:

Topology:-





GOAL:
  • configure VLAN 110, and VLAN 120 on both the switches 
  • shift the ports in to their respective VLAN as per our topology
  • configure  link between switch 1  and switch 2 as trunk link
  • make sure the users of same VLAN on the different switch must communicate with each other.




Switch>enable
Switch#configure terminal
Switch(config)#hostname sw1

sw1(config)#vlan 110
sw1(config-vlan)#exit


sw1(config)#vlan 120
sw1(config-vlan)#exit

sw1(config)#interface range FastEthernet 0/1-2
sw1(config-if-range)#switchport mode access
sw1(config-if-range)#switchport access vlan 110
sw1(config-if-range)#exit

sw1(config)#interface range fastEthernet 0/3-4
sw1(config-if-range)#switchport mode access
sw1(config-if-range)#switchport access vlan 120


sw1(config-if-range)#end

sw1#show vlan

VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11, Fa0/12
Fa0/13, Fa0/14, Fa0/15, Fa0/16
Fa0/17, Fa0/18, Fa0/19, Fa0/20
Fa0/21, Fa0/22, Fa0/23, Fa0/24
Gig0/1, Gig0/2
110 VLAN0110 active Fa0/1, Fa0/2
120 VLAN0120 active Fa0/3, Fa0/4
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
110 enet 100110 1500 - - - - - 0 0
120 enet 100120 1500 - - - - - 0 0
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------

Remote SPAN VLANs
------------------------------------------------------------------------------


Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------


Switch>enable
Switch#configure terminal
Switch(config)#hostname sw2

sw2(config)#vlan 110
Sw2(config-vlan)#exit

Sw2(config)#vlan 120
Sw2(config-vlan)#exit


Sw2(config)#interface range fastEthernet 0/1-2
Sw2(config-if-range)#switchport mode access
Sw2(config-if-range)#switchport access vlan 110
Sw2(config-if-range)#exit

Sw2(config)#interface range fastEthernet 0/3-4
Sw2(config-if-range)#switchport mode access
Sw2(config-if-range)#switchport access vlan 120
Sw2(config-if-range)#end


Sw2#show vlan

VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/5, Fa0/6, Fa0/7, Fa0/8
Fa0/9, Fa0/10, Fa0/11, Fa0/12
Fa0/13, Fa0/14, Fa0/15, Fa0/16
Fa0/17, Fa0/18, Fa0/19, Fa0/20
Fa0/21, Fa0/22, Fa0/23, Fa0/24
Gig0/1, Gig0/2
110 VLAN0110 active Fa0/1, Fa0/2
120 VLAN0120 active Fa0/3, Fa0/4
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
110 enet 100110 1500 - - - - - 0 0
120 enet 100120 1500 - - - - - 0 0
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0

VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------

Remote SPAN VLANs
------------------------------------------------------------------------------

Primary Secondary Type Ports

------- --------- ----------------- ------------------------------------------




HOST 1


host 2 can communicate  to host 3 both are in same VLAN 110.


host 3 can communicate with host 1 both are in same  VLAN 110, but host 3 can not communicate with host  5 its also in the same  VLAN 110, because there is no trunking is configure yet . 



sw1(config)#interface fastEthernet 0/10
sw1(config-if)#switchport mode trunk
sw1(config-if)#switchport trunk encapsulation dot1q
sw1(config-if)#switchport trunk allowed vlan 110-120
sw1(config-if)#end

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/10, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/10, changed state to up

sw2(config)#interface fastEthernet 0/10
sw2(config-if)#switchport mode trunk
sw1(config-if)#switchport trunk encapsulation dot1q
sw2(config-if)#switchport trunk allowed vlan 110 120
sw1(config-if)#end

(The ISL method of VLAN identification or trunking encapsulation no longer is supported across all Cisco catalyst switch platform.)
some cisco switch do not have option of ISL. so there is no need to specify encapsulation dot.1q ,


sw1#show interfaces trunk
Port Mode Encapsulation Status Native vlan
Fa0/10 on 802.1q trunking 1

Port Vlans allowed on trunk
Fa0/10 110-120

Port Vlans allowed and active in management domain
Fa0/10 110,120


Port Vlans in spanning tree forwarding state and not pruned
Fa0/10 110,120


sw2#show interfaces trunk
Port Mode Encapsulation Status Native vlan
Fa0/10 on 802.1q trunking 1

Port Vlans allowed on trunk
Fa0/10 110-120

Port Vlans allowed and active in management domain
Fa0/10 110,120

Port Vlans in spanning tree forwarding state and not pruned

Fa0/10 110,120






 after configuring trunk between both the switch now host 3 can communicate with host 5.

                         

 


 


Instagram

Facebook


Twitter



LINKEDIN








Saturday 8 December 2018

PPP Multilinks



Sometimes you notice a network design where you have more than one serial link between two routers.  A single serial link doesn’t provide enough bandwidth or maybe in case you want some extra redundancy. All the interfaces on a router need a different IP address, a design that looks like this:



Multilink PPP allows us to make a combination of multiple physical serial links into a single logical link or MLP bundle. MLP is used to aggregate multiple WAN links into one logical channel for the transportation of traffic from one router to another, MLP enable the load—balancing of traffic from different links  as we and allows some level of redundancy in case of line failure on a single link.MLP Supports a maximum of ten member links per bundle or single logical link. 



lets take a look of its configuration:

Friday 7 December 2018

What is BGP Route Reflectors (RR)? How to configure?




Route reflectors (RR) are one method to eliminate the full mesh of IBGP peers in your network. The route reflector allows all IBGP speakers within your autonomous system to learn about the available routes without creating loops.

There are three types of peering in route reflectors:


  1. EBGP neighbor
  2. IBGP client neighbor
  3. IBGP non-client neighbor

When configuring a route reflector (RR), we must tell the router whether the other IBGP router is a client or non-client. An IBGP client is an IBGP router that the route reflector will “reflect” routes to, the non-client is just a regular IBGP neighbor.


When a route reflector forwards a route update, there are a few rules that must be followed:

  • A route learned from an EBGP neighbor can be forwarded to another EBGP neighbor, a client, and a non-client.
  • A route learned from a client can be forwarded to another EBGP neighbor, client or non-client.
  • A route learned from a non-client can be forwarded to another EBGP neighbor and client, but not to a non-client.




In other words: Route Reflector-RR to advertise route received from an iBGP peers to other iBGP peers. All the valid clients update server Route Reflector-RR and server update to all the valid clients.
Each client only establishes a neighbor relationship with servers, clients are not allowed to establish neighbors with other clients. Route Reflector (servers) establish neighbor relationships with other servers (if you have more the one server) and clients.


I hope now you have an idea of what is route reflector, so let's see the configuration:







Route-Reflector Configuration:-

Topology:

Goal:
  • configure the topology as per our diagram.
  • configure EIGRP 65100 to provide connectivity between peers 
  • advertise all the directly connected interfaces, and configure BGP AS 65100 as per our diagram using loopbacks.
  • configure router 5 as a Route-Reflector server and the rest of the routers will play the client role.




R1#show ip interface brief

Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        10.1.1.1        YES manual up                    up
Serial3/0                    1.1.1.1         YES manual up                    up
Serial3/3                    4.1.1.2         YES manual up                    up
Serial3/6                 15.1.1.1        YES manual up                    up
Loopback0              11.0.0.1        YES manual up                    up
Loopback1              11.0.1.1        YES manual up                    up
Loopback2              11.0.2.1        YES manual up                    up
Loopback3              11.0.3.1        YES manual up                    up
R2#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        20.1.1.1        YES manual up                    up
Serial3/0                     1.1.1.2         YES manual up                    up
Serial3/1                     2.1.1.1         YES manual up                    up
Serial3/4                  25.1.1.1        YES manual up                    up
Loopback0              12.0.0.1        YES manual up                    up
Loopback1              12.0.1.1        YES manual up                    up
Loopback2              12.0.2.1        YES manual up                    up
Loopback3              12.0.3.1        YES manual up                    up



R3#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        30.1.1.1        YES manual up                    up
Serial3/1                    2.1.1.2         YES manual up                    up
Serial3/2                    3.1.1.1         YES manual up                    up
Serial3/5                  35.1.1.1        YES manual up                    up
Loopback0              13.0.0.1        YES manual up                    up
Loopback1              13.0.1.1        YES manual up                    up
Loopback2              13.0.2.1        YES manual up                    up
Loopback3              13.0.3.1        YES manual up                    up



R4#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        40.1.1.1        YES manual up                    up
Serial3/2                    3.1.1.2         YES manual up                    up
Serial3/3                    4.1.1.1         YES manual up                    up
Serial3/7                  45.1.1.1        YES manual up                    up
Loopback0              14.0.0.1        YES manual up                    up
Loopback1              14.0.1.1        YES manual up                    up
Loopback2              14.0.2.1        YES manual up                    up
Loopback3              14.0.3.1        YES manual up                    up



R5#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        50.1.1.1        YES manual up                    up
Serial3/4                   25.1.1.2        YES manual up                    up
Serial3/5                   35.1.1.2        YES manual up                    up
Serial3/6                   15.1.1.2        YES manual up                    up
Serial3/7                   45.1.1.2        YES manual up                    up
Loopback0              150.0.0.1       YES manual up                    up
Loopback1              150.0.1.1       YES manual up                    up
Loopback2              150.0.2.1       YES manual up                    up
Loopback3              150.0.3.1       YES manual up                    up


R1(config)#router eigrp 65100
R1(config-router)#network 1.0.0.0
R1(config-router)#network 4.0.0.0
R1(config-router)#network 15.0.0.0
R1(config-router)#network 11.0.0.0
R1(config-router)#network 10.0.0.0
R1(config-router)#no auto-summary
R1(config-router)#exit


R2(config)#router eigrp 65100
R2(config-router)#network 1.0.0.0
R2(config-router)#network 2.0.0.0
R2(config-router)#network 20.0.0.0
R2(config-router)#network 12.0.0.0
R2(config-router)#network 25.0.0.0
R2(config-router)#no auto-summary
R2(config-router)#exit


R3(config)#router eigrp 65100
R3(config-router)#network 2.0.0.0
R3(config-router)#network 3.0.0.0
R3(config-router)#network 13.0.0.0
R3(config-router)#network 30.0.0.0
R3(config-router)#no auto-summary
R3(config-router)#exit


R4(config)#router eigrp 65100
R4(config-router)#network 3.0.0.0
R4(config-router)#network 4.0.0.0
R4(config-router)#network 14.0.0.0
R4(config-router)#network 40.0.0.0
R4(config-router)#network 45.0.0.0
R4(config-router)#no auto-summary
R4(config-router)#exit


R5(config)#router eigrp 65100
R5(config-router)#network 150.0.0.0
R5(config-router)#network 50.0.0.0
R5(config-router)#network 15.0.0.0
R5(config-router)#network 25.0.0.0
R5(config-router)#network 35.0.0.0
R5(config-router)#network 45.0.0.0
R5(config-router)#no auto-summary
R5(config-router)#exit


R1(config)#router bgp 65100

R1(config-router)#neighbor 12.0.0.1 remote-as 65100
R1(config-router)#neighbor 12.0.0.1 update-source loopback 0

R1(config-router)#neighbor 14.0.0.1 remote-as 65100
R1(config-router)#neighbor 14.0.0.1 update-source loopback 0


R1(config-router)#neighbor 150.0.0.1 remote-as 65100
R1(config-router)#neighbor 150.0.0.1 update-source loopback 0


R1(config-router)#network 10.0.0.0
R1(config-router)#no synchronization
R1(config-router)#no auto-summary
R1(config-router)#exit

R2(config)#router bgp 65100
R2(config-router)#neighbor 11.0.0.1 remote-as 65100
R2(config-router)#neighbor 11.0.0.1 update-source loopback 0

R2(config-router)#neighbor 13.0.0.1 remote-as 65100
R2(config-router)#neighbor 13.0.0.1 update-source loopback 0

R2(config-router)#  neighbor 150.0.0.1 remote-as 65100
R2(config-router)#  neighbor 150.0.0.1 update-source loopback 0

R2(config-router)#network 20.0.0.0
R2(config-router)#no auto-summary
R2(config-router)#no synchronization
R2(config-router)#exit





R3(config)#router bgp 65100
R3(config-router)#neighbor 12.0.0.1 remote-as 65100
R3(config-router)#neighbor 12.0.0.1 update-source loopback 0


R3(config-router)#neighbor 14.0.0.1 remote-as 65100
R3(config-router)#neighbor 14.0.0.1 update-source loopback 0

R3(config-router)#neighbor 150.0.0.1 remote-as 65100
R3(config-router)#neighbor 150.0.0.1 update-source loopback 0

R3(config-router)#network 30.0.0.0
R3(config-router)#no auto-summary
R3(config-router)#no synchronization
R3(config-router)#exit


R4(config)#router  bgp 65100
R4(config-router)#neighbor 13.0.0.1 remote-as 65100
R4(config-router)#neighbor 13.0.0.1 update-source loopback 0

R4(config-router)#neighbor 11.0.0.1 remote-as 65100
R4(config-router)#neighbor 11.0.0.1 update-source loopback 0


R4(config-router)#  neighbor 150.0.0.1 remote-as 65100
R4(config-router)#  neighbor 150.0.0.1 update-source loopback 0



R4(config-router)#network 40.0.0.0
R4(config-router)#no auto-summary
R4(config-router)#no synchronization
R4(config-router)#exit


R5(config)#router bgp 65100
R5(config-router)#neighbor 11.0.0.1 remote-as 65100
R5(config-router)#neighbor 11.0.0.1 update-source loopback 0

R5(config-router)#neighbor 12.0.0.1 remote-as 65100
R5(config-router)#neighbor 12.0.0.1 update-source loopback 0


R5(config-router)#neighbor 13.0.0.1 remote-as 65100
R5(config-router)#neighbor 13.0.0.1 update-source loopback 0

R5(config-router)#neighbor 14.0.0.1 remote-as 65100
R5(config-router)#neighbor 14.0.0.1 update-source loopback 0

R5(config)#router bgp 65100
R5(config-router)#neighbor 11.0.0.1 route-reflector-client

*Dec  7 14:07:56.415: %BGP-5-ADJCHANGE: neighbor 11.0.0.1 Down RR client config change
*Dec  7 14:07:56.419: %BGP_SESSION-5-ADJCHANGE: neighbor 11.0.0.1 IPv4 Unicast topology base removed from session  RR client config change
*Dec  7 14:07:57.291: %BGP-5-ADJCHANGE: neighbor 11.0.0.1 Up


R5(config-router)#neighbor 12.0.0.1 route-reflector-client

*Dec  7 14:08:04.183: %BGP-5-ADJCHANGE: neighbor 12.0.0.1 Down RR client config change
*Dec  7 14:08:04.187: %BGP_SESSION-5-ADJCHANGE: neighbor 12.0.0.1 IPv4 Unicast topology base removed from session  RR client config change
*Dec  7 14:08:04.407: %BGP-5-ADJCHANGE: neighbor 12.0.0.1 Up

R5(config-router)#neighbor 13.0.0.1 route-reflector-client


*Dec  7 14:08:15.187: %BGP-5-ADJCHANGE: neighbor 13.0.0.1 Down RR client config change
*Dec  7 14:08:15.187: %BGP_SESSION-5-ADJCHANGE: neighbor 13.0.0.1 IPv4 Unicast topology base removed from session  RR client config change
*Dec  7 14:08:15.683: %BGP-5-ADJCHANGE: neighbor 13.0.0.1 Up

R5(config-router)#neighbor 14.0.0.1 route-reflector-client

*Dec  7 14:08:33.659: %BGP-5-ADJCHANGE: neighbor 14.0.0.1 Down RR client config change
*Dec  7 14:08:33.663: %BGP_SESSION-5-ADJCHANGE: neighbor 14.0.0.1 IPv4 Unicast topology base removed from session  RR client config change
*Dec  7 14:08:33.983: %BGP-5-ADJCHANGE: neighbor 14.0.0.1 Up

R5(config-router)#end


R5#show ip bgp 10.1.1.1
BGP routing table entry for 10.0.0.0/8, version 7
Paths: (1 available, best #1, table default, RIB-failure(17))
  Advertised to update-groups:
     2
  Refresh Epoch 2
  Local, (Received from a RR-client)
    11.0.0.1 (metric 2297856) from 11.0.0.1 (11.0.3.1)
      Origin IGP, metric 0, localpref 100, valid, internal, best
      rx pathid: 0, tx pathid: 0x0
R5#show ip bgp 20.1.1.1
BGP routing table entry for 20.0.0.0/8, version 9
Paths: (1 available, best #1, table default, RIB-failure(17))
  Advertised to update-groups:
     2
  Refresh Epoch 2
  Local, (Received from a RR-client)
    12.0.0.1 (metric 2297856) from 12.0.0.1 (12.0.3.1)
      Origin IGP, metric 0, localpref 100, valid, internal, best
      rx pathid: 0, tx pathid: 0x0
R5#show ip bgp 30.1.1.1
BGP routing table entry for 30.0.0.0/8, version 11
Paths: (1 available, best #1, table default, RIB-failure(17))
  Advertised to update-groups:
     2
  Refresh Epoch 2
  Local, (Received from a RR-client)
    13.0.0.1 (metric 2809856) from 13.0.0.1 (13.0.3.1)
      Origin IGP, metric 0, localpref 100, valid, internal, best
      rx pathid: 0, tx pathid: 0x0


R5#show ip bgp 40.1.1.1
BGP routing table entry for 40.0.0.0/8, version 13
Paths: (1 available, best #1, table default, RIB-failure(17))
  Advertised to update-groups:
     2
  Refresh Epoch 2
  Local, (Received from a RR-client)
    14.0.0.1 (metric 2297856) from 14.0.0.1 (14.0.3.1)
      Origin IGP, metric 0, localpref 100, valid, internal, best
      rx pathid: 0, tx pathid: 0x0


R1#show ip bgp 20.1.1.1
BGP routing table entry for 20.0.0.0/8, version 3
Paths: (2 available, best #2, table default, RIB-failure(17))
  Not advertised to any peer
  Refresh Epoch 1
  Local
    12.0.0.1 (metric 2297856) from 150.0.0.1 (150.0.3.1)
      Origin IGP, metric 0, localpref 100, valid, internal
      Originator: 12.0.3.1, Cluster list: 150.0.3.1
      rx pathid: 0, tx pathid: 0
  Refresh Epoch 1
  Local
    12.0.0.1 (metric 2297856) from 12.0.0.1 (12.0.3.1)
      Origin IGP, metric 0, localpref 100, valid, internal, best
      rx pathid: 0, tx pathid: 0x0



 


 


Instagram

Facebook


Twitter



LINKEDIN








Thursday 6 December 2018

Route Redistribution configuration



     

            we have already learned what is route redistribution and why we need, if you don't then click here . In this section we see configuration.















R1#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        10.1.1.1        YES manual up                    up
Serial3/0                    1.1.1.1         YES manual up                    up
Serial3/3                    4.1.1.2         YES manual up                    up
Serial3/6                  15.1.1.1        YES manual up                    up
Loopback0              11.0.0.1        YES manual up                    up
Loopback1              11.0.1.1        YES manual up                    up
Loopback2              11.0.2.1        YES manual up                    up
Loopback3              11.0.3.1        YES manual up                    up

R2#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        20.1.1.1        YES manual up                    up
Serial3/0                    1.1.1.2         YES manual up                    up
Serial3/1                    2.1.1.1         YES manual up                    up
Serial3/4                  24.1.1.1        YES manual up                    up
Loopback0              12.0.0.1        YES manual up                    up
Loopback1              12.0.1.1        YES manual up                    up
Loopback2              12.0.2.1        YES manual up                    up
Loopback3              12.0.3.1        YES manual up                    up

v
R3#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        30.1.1.1        YES manual up                    up
Serial3/1                    2.1.1.2         YES manual up                    up
Serial3/2                   3.1.1.1         YES manual up                    up
Serial3/5                 35.1.1.1        YES manual up                    up
Loopback0              13.0.0.1        YES manual up                    up
Loopback1              13.0.1.1        YES manual up                    up
Loopback2              13.0.2.1        YES manual up                    up
Loopback3              13.0.3.1        YES manual up                    up



R4#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        40.1.1.1        YES manual up                    up
Serial3/2                    3.1.1.2         YES manual up                    up
Serial3/3                    4.1.1.1         YES manual up                    up
Serial3/7                  45.1.1.1        YES manual up                    up
Loopback0              14.0.0.1        YES manual up                    up
Loopback1              14.0.1.1        YES manual up                    up
Loopback2              14.0.2.1        YES manual up                    up
Loopback3              14.0.3.1        YES manual up                    up


R5#show ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        50.1.1.1        YES manual up                    up
Serial3/4                   24.1.1.2        YES manual up                    up
Serial3/5                   35.1.1.2        YES manual up                    up
Serial3/6                   15.1.1.1        YES manual up                    up
Serial3/7                   45.1.1.2        YES manual up                    up
Loopback0              150.0.0.1       YES manual up                    up
Loopback1              150.0.1.1       YES manual up                    up
Loopback2              150.0.2.1       YES manual up                    up
Loopback3              150.0.3.1       YES manual up                    up

R1(config)#router eigrp 210
R1(config-router)#network 1.0.0.0
R1(config-router)#network 10.0.0.0
R1(config-router)#no auto-summary
R1(config-router)#exit

R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#network 15.0.0.0
R1(config-router)#network 11.0.0.0
R1(config-router)#no auto-summary
R1(config-router)#exit

R1(config)#router eigrp 140
R1(config-router)#network 4.0.0.0
R1(config-router)#no auto-summary
R1(config-router)#exit

R2(config)#router eigrp 210
R2(config-router)#network 1.0.0.0
R2(config-router)#network 20.0.0.0
R2(config-router)#no auto-summary
R2(config-router)#exit

R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#network 12.0.0.0
R2(config-router)#network 2.0.0.0
R2(config-router)#exit

R2(config)#router ospf 11
R2(config-router)#network 25.0.0.0 0.255.255.255 area 0
R2(config-router)#exit

R3(config)#router rip
R3(config-router)#version 2
R3(config-router)#network 2.0.0.0
R3(config-router)#network 13.0.0.0
R3(config-router)#no auto-summary
R3(config-router)#exit

R3(config)#router eigrp 53
R3(config-router)#network 35.0.0.0
R3(config-router)#network 30.0.0.0
R3(config-router)#no auto-summary
R3(config-router)#exit

R3(config)#router ospf 10
R3(config-router)#network 3.0.0.0 0.255.255.255 area 0
R3(config-router)#exit

R4(config)#router ospf 10
R4(config-router)#network 3.0.0.0 0.255.255.255 a
R4(config-router)#network 3.0.0.0 0.255.255.255 area 0
R4(config-router)#exit

R4(config)#router rip
R4(config-router)#version 2
R4(config-router)#network 45.0.0.0
R4(config-router)#network 14.0.0.0
R4(config-router)#no auto-summary
R4(config-router)#exit

R4(config)#router eigrp 140
R4(config-router)#network 4.0.0.0
R4(config-router)#network 40.0.0.0
R4(config-router)#no auto-summary
R4(config-router)#exit

R5(config)#router rip
R5(config-router)#ver 2
R5(config-router)#network 45.0.0.0
R5(config-router)#no auto-summary
R5(config-router)#exit

R5(config)#router ospf 11
R5(config-router)#network 24.0.0.0 0.255.255.255 a
R5(config-router)#network 24.0.0.0 0.255.255.255 area 0
R5(config-router)#network 50.0.0.0 0.255.255.255 area 0
R5(config-router)#exit

R5(config)#router eigrp 53
R5(config-router)#network 35.0.0.0
R5(config-router)#network 150.0.0.0
R5(config-router)#no auto-summary
R5(config-router)#exit

R5(config)#router rip
R5(config-router)#version 2
R5(config-router)#network 15.0.0.0
R5(config-router)#no auto-summary
R5(config-router)#exit

R1#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "eigrp 210"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(210)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 11.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    1.0.0.0
    10.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    1.1.1.2               90      00:38:42
  Distance: internal 90 external 170

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 23 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: rip
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/6             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    11.0.0.0
    15.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 120)

Routing Protocol is "eigrp 140"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(140)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 11.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    4.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    4.1.1.1               90      00:20:14
  Distance: internal 90 external 170



R2#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "eigrp 210"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(210)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 12.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    1.0.0.0
    20.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    1.1.1.1               90      00:39:50
  Distance: internal 90 external 170

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 7 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: rip
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/1             2     2
  Automatic network summarization is in effect
  Maximum path: 4
  Routing for Networks:
    2.0.0.0
    11.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    2.1.1.2              120      00:00:27
  Distance: (default is 120)

Routing Protocol is "ospf 11"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 12.0.3.1
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    25.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)


R3#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 11 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: rip
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/1             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    2.0.0.0
    13.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 120)

Routing Protocol is "eigrp 53"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(53)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 13.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    30.0.0.0
    35.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    35.1.1.2              90      00:29:09
  Distance: internal 90 external 170

Routing Protocol is "ospf 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 13.0.3.1
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    3.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)


R4#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "ospf 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 14.0.3.1
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    3.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 28 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: rip
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/7             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    14.0.0.0
    45.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    45.1.1.2             120      00:00:11
  Distance: (default is 120)

Routing Protocol is "eigrp 140"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(140)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 14.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    4.0.0.0
    40.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: internal 90 external 170


R5#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "ospf 11"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 150.0.3.1
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    24.0.0.0 0.255.255.255 area 0
    50.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)

Routing Protocol is "eigrp 53"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  EIGRP-IPv4 Protocol for AS(53)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 150.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    35.0.0.0
    150.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    35.1.1.1              90      00:30:12
  Distance: internal 90 external 170

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 20 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: rip
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/6             2     2
    Serial3/7             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    15.0.0.0
    45.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    45.1.1.1             120      00:00:01
  Distance: (default is 120)

R1(config)#router eigrp 210
R1(config-router)#redistribute rip metric 1000 20000 255 1 1500
R1(config-router)#redistribute eigrp 140 metric 1000 20000 255 1 1500
R1(config-router)#exit

R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#redistribute eigrp 210 metric 8
R1(config-router)#redistribute eigrp 140 metric 8
R1(config-router)#exit

R1(config)#router eigrp 140
R1(config-router)#redistribute eigrp 210 metric  1000 20000 255 1 1500
R1(config-router)#redistribute rip  metric  1000 20000 255 1 1500
R1(config-router)#exit

R2(config)#router eigrp 210
R2(config-router)#redistribute ospf 11 metric 1000 20000 255 1 1500
R2(config-router)#redistribute rip  metric 1000 20000 255 1 1500
R2(config-router)#exit

R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#redistribute ospf 11 metric 8
R2(config-router)#redistribute eigrp 210  metric 8
R2(config-router)#exit

R2(config)#router ospf 11
R2(config-router)#redistribute eigrp 210 subnets metric-type 1
R2(config-router)#redistribute rip  subnets metric-type 1
R2(config-router)#exit

R3(config)#router rip
R3(config-router)#version 2
R3(config-router)#redistribute eigrp 53 metric 8
R3(config-router)#redistribute ospf 10  metric 8
R3(config-router)#exit

R3(config)#router eigrp 53
R3(config-router)#redistribute rip metric 1000 20000 255 1 1500
R3(config-router)#redistribute ospf 10  metric 1000 20000 255 1 1500
R3(config-router)#exit

R3(config)#router ospf 10
R3(config-router)#redistribute rip subnets metric-type 1
R3(config-router)#redistribute eigrp 53  subnets metric-type 1
R3(config-router)#exit

R4(config)#router ospf 10
R4(config-router)#redistribute rip subnets metric-type 1
R4(config-router)#redistribute eigrp 140  subnets metric-type 1
R4(config-router)#exit

R4(config)#router rip
R4(config-router)#version 2
R4(config-router)#redistribute eigrp 140 metric 8
R4(config-router)#redistribute ospf 10  metric 8
R4(config-router)#exit

R4(config)#router eigrp 140
R4(config-router)#redistribute rip metric 1000 20000 255 1 1500
R4(config-router)#redistribute ospf 10  metric 1000 20000 255 1 1500
R4(config-router)#exit

R5(config)#router ospf 11
R5(config-router)#redistribute eigrp 53 subnets metric-type 1
R5(config-router)#redistribute rip  subnets metric-type 1
R5(config-router)#exit

R5(config)#router rip
R5(config-router)#version 2
R5(config-router)#redistribute eigrp 53 metric 8
R5(config-router)#redistribute ospf 11 metric 8
R5(config-router)#exit

R5(config)#router eigrp 53
R5(config-router)#redistribute ospf 11 metric 1000 20000 255 1 1500
R5(config-router)#redistribute rip  metric 1000 20000 255 1 1500
R5(config-router)#exit

R1#show ip route
Codes: L - local, 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, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is not set

      1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        1.0.0.0/8 is directly connected, Serial3/0
L        1.1.1.1/32 is directly connected, Serial3/0
D EX  2.0.0.0/8 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX  3.0.0.0/8 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
      4.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        4.0.0.0/8 is directly connected, Serial3/3
L        4.1.1.2/32 is directly connected, Serial3/3
      10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        10.0.0.0/8 is directly connected, FastEthernet0/0
L        10.1.1.1/32 is directly connected, FastEthernet0/0
      11.0.0.0/8 is variably subnetted, 9 subnets, 3 masks
D EX     11.0.0.0/8 [170/8192000] via 4.1.1.1, 00:18:50, Serial3/3
C        11.0.0.0/24 is directly connected, Loopback0
L        11.0.0.1/32 is directly connected, Loopback0
C        11.0.1.0/24 is directly connected, Loopback1
L        11.0.1.1/32 is directly connected, Loopback1
C        11.0.2.0/24 is directly connected, Loopback2
L        11.0.2.1/32 is directly connected, Loopback2
C        11.0.3.0/24 is directly connected, Loopback3
L        11.0.3.1/32 is directly connected, Loopback3
      12.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
D EX     12.0.0.0/8 [170/8192000] via 4.1.1.1, 00:09:50, Serial3/3
D EX     12.0.0.0/24 [170/8192000] via 1.1.1.2, 00:09:52, Serial3/0
D EX     12.0.1.0/24 [170/8192000] via 1.1.1.2, 00:09:52, Serial3/0
D EX     12.0.2.0/24 [170/8192000] via 1.1.1.2, 00:09:52, Serial3/0
D EX     12.0.3.0/24 [170/8192000] via 1.1.1.2, 00:09:52, Serial3/0
      13.0.0.0/24 is subnetted, 4 subnets
D EX     13.0.0.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX     13.0.1.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX     13.0.2.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX     13.0.3.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
      14.0.0.0/24 is subnetted, 4 subnets
D EX     14.0.0.0 [170/8192000] via 4.1.1.1, 00:18:59, Serial3/3
D EX     14.0.1.0 [170/8192000] via 4.1.1.1, 00:18:59, Serial3/3
D EX     14.0.2.0 [170/8192000] via 4.1.1.1, 00:18:59, Serial3/3
D EX     14.0.3.0 [170/8192000] via 4.1.1.1, 00:18:59, Serial3/3
      15.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        15.0.0.0/8 is directly connected, Serial3/6
L        15.1.1.1/32 is directly connected, Serial3/6
D     20.0.0.0/8 [90/2172416] via 1.1.1.2, 01:29:11, Serial3/0
D EX  24.0.0.0/8 [170/8192000] via 4.1.1.1, 00:15:10, Serial3/3
D EX  30.0.0.0/8 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX  35.0.0.0/8 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D     40.0.0.0/8 [90/2172416] via 4.1.1.1, 01:10:38, Serial3/3
D EX  45.0.0.0/8 [170/8192000] via 4.1.1.1, 00:18:59, Serial3/3
D EX  50.0.0.0/8 [170/8192000] via 4.1.1.1, 00:15:10, Serial3/3
      150.0.0.0/24 is subnetted, 4 subnets
D EX     150.0.0.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX     150.0.1.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX     150.0.2.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3
D EX     150.0.3.0 [170/8192000] via 4.1.1.1, 00:18:49, Serial3/3

R2#show ip route
Codes: L - local, 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, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is not set

      1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        1.0.0.0/8 is directly connected, Serial3/0
L        1.1.1.2/32 is directly connected, Serial3/0
      2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        2.0.0.0/8 is directly connected, Serial3/1
L        2.1.1.1/32 is directly connected, Serial3/1
R     3.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R     4.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
D     10.0.0.0/8 [90/2172416] via 1.1.1.1, 00:10:26, Serial3/0
      11.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
D EX     11.0.0.0/8 [170/8192000] via 1.1.1.1, 00:10:26, Serial3/0
R        11.0.0.0/24 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        11.0.1.0/24 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        11.0.2.0/24 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        11.0.3.0/24 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
      12.0.0.0/8 is variably subnetted, 9 subnets, 3 masks
D EX     12.0.0.0/8 [170/8192000] via 1.1.1.1, 00:10:26, Serial3/0
C        12.0.0.0/24 is directly connected, Loopback0
L        12.0.0.1/32 is directly connected, Loopback0
C        12.0.1.0/24 is directly connected, Loopback1
L        12.0.1.1/32 is directly connected, Loopback1
C        12.0.2.0/24 is directly connected, Loopback2
L        12.0.2.1/32 is directly connected, Loopback2
C        12.0.3.0/24 is directly connected, Loopback3
L        12.0.3.1/32 is directly connected, Loopback3
      13.0.0.0/24 is subnetted, 4 subnets
R        13.0.0.0 [120/1] via 2.1.1.2, 00:00:08, Serial3/1
R        13.0.1.0 [120/1] via 2.1.1.2, 00:00:08, Serial3/1
R        13.0.2.0 [120/1] via 2.1.1.2, 00:00:08, Serial3/1
R        13.0.3.0 [120/1] via 2.1.1.2, 00:00:08, Serial3/1
      14.0.0.0/24 is subnetted, 4 subnets
R        14.0.0.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        14.0.1.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        14.0.2.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        14.0.3.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
D EX  15.0.0.0/8 [170/8192000] via 1.1.1.1, 00:10:26, Serial3/0
      20.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        20.0.0.0/8 is directly connected, FastEthernet0/0
L        20.1.1.1/32 is directly connected, FastEthernet0/0
      24.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        24.0.0.0/8 is directly connected, Serial3/4
L        24.1.1.1/32 is directly connected, Serial3/4
R     30.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R     35.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R     40.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R     45.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R     50.0.0.0/8 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
      150.0.0.0/24 is subnetted, 4 subnets
R        150.0.0.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        150.0.1.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        150.0.2.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1
R        150.0.3.0 [120/8] via 2.1.1.2, 00:00:08, Serial3/1

R3#show ip route
Codes: L - local, 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, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is not set

R     1.0.0.0/8 [120/8] via 2.1.1.1, 00:00:10, Serial3/1
      2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        2.0.0.0/8 is directly connected, Serial3/1
L        2.1.1.2/32 is directly connected, Serial3/1
      3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        3.0.0.0/8 is directly connected, Serial3/2
L        3.1.1.1/32 is directly connected, Serial3/2
O E1  4.0.0.0/8 [110/84] via 3.1.1.2, 00:21:54, Serial3/2
R     10.0.0.0/8 [120/8] via 2.1.1.1, 00:00:10, Serial3/1
      11.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
R        11.0.0.0/8 [120/8] via 2.1.1.1, 00:00:10, Serial3/1
O E1     11.0.0.0/24 [110/84] via 3.1.1.2, 00:21:54, Serial3/2
O E1     11.0.1.0/24 [110/84] via 3.1.1.2, 00:21:54, Serial3/2
O E1     11.0.2.0/24 [110/84] via 3.1.1.2, 00:21:54, Serial3/2
O E1     11.0.3.0/24 [110/84] via 3.1.1.2, 00:21:54, Serial3/2
      12.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
R        12.0.0.0/8 [120/8] via 2.1.1.1, 00:00:10, Serial3/1
O E1     12.0.0.0/24 [110/84] via 3.1.1.2, 00:11:03, Serial3/2
O E1     12.0.1.0/24 [110/84] via 3.1.1.2, 00:11:03, Serial3/2
O E1     12.0.2.0/24 [110/84] via 3.1.1.2, 00:11:03, Serial3/2
O E1     12.0.3.0/24 [110/84] via 3.1.1.2, 00:11:03, Serial3/2
      13.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
C        13.0.0.0/24 is directly connected, Loopback0
L        13.0.0.1/32 is directly connected, Loopback0
C        13.0.1.0/24 is directly connected, Loopback1
L        13.0.1.1/32 is directly connected, Loopback1
C        13.0.2.0/24 is directly connected, Loopback2
L        13.0.2.1/32 is directly connected, Loopback2
C        13.0.3.0/24 is directly connected, Loopback3
L        13.0.3.1/32 is directly connected, Loopback3
      14.0.0.0/24 is subnetted, 4 subnets
O E1     14.0.0.0 [110/84] via 3.1.1.2, 00:22:05, Serial3/2
O E1     14.0.1.0 [110/84] via 3.1.1.2, 00:22:05, Serial3/2
O E1     14.0.2.0 [110/84] via 3.1.1.2, 00:22:05, Serial3/2
O E1     14.0.3.0 [110/84] via 3.1.1.2, 00:22:05, Serial3/2
R     15.0.0.0/8 [120/8] via 2.1.1.1, 00:00:10, Serial3/1
R     20.0.0.0/8 [120/8] via 2.1.1.1, 00:00:10, Serial3/1
O E1  24.0.0.0/8 [110/84] via 3.1.1.2, 00:16:21, Serial3/2
      30.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        30.0.0.0/8 is directly connected, FastEthernet0/0
L        30.1.1.1/32 is directly connected, FastEthernet0/0
      35.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        35.0.0.0/8 is directly connected, Serial3/5
L        35.1.1.1/32 is directly connected, Serial3/5
O E1  40.0.0.0/8 [110/84] via 3.1.1.2, 00:21:54, Serial3/2
O E1  45.0.0.0/8 [110/84] via 3.1.1.2, 00:22:05, Serial3/2
O E1  50.0.0.0/8 [110/84] via 3.1.1.2, 00:16:21, Serial3/2
      150.0.0.0/24 is subnetted, 4 subnets
D        150.0.0.0 [90/2297856] via 35.1.1.2, 01:19:24, Serial3/5
D        150.0.1.0 [90/2297856] via 35.1.1.2, 01:19:24, Serial3/5
D        150.0.2.0 [90/2297856] via 35.1.1.2, 01:19:24, Serial3/5
D        150.0.3.0 [90/2297856] via 35.1.1.2, 01:19:24, Serial3/5

R4#show ip route
Codes: L - local, 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, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is not set

O E1  1.0.0.0/8 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
O E1  2.0.0.0/8 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
      3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        3.0.0.0/8 is directly connected, Serial3/2
L        3.1.1.2/32 is directly connected, Serial3/2
      4.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        4.0.0.0/8 is directly connected, Serial3/3
L        4.1.1.1/32 is directly connected, Serial3/3
O E1  10.0.0.0/8 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
      11.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
O E1     11.0.0.0/8 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
D EX     11.0.0.0/24 [170/8192000] via 4.1.1.2, 00:40:04, Serial3/3
D EX     11.0.1.0/24 [170/8192000] via 4.1.1.2, 00:40:04, Serial3/3
D EX     11.0.2.0/24 [170/8192000] via 4.1.1.2, 00:40:04, Serial3/3
D EX     11.0.3.0/24 [170/8192000] via 4.1.1.2, 00:40:04, Serial3/3
      12.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
O E1     12.0.0.0/8 [110/84] via 3.1.1.1, 00:11:29, Serial3/2
D EX     12.0.0.0/24 [170/8192000] via 4.1.1.2, 00:11:30, Serial3/3
D EX     12.0.1.0/24 [170/8192000] via 4.1.1.2, 00:11:30, Serial3/3
D EX     12.0.2.0/24 [170/8192000] via 4.1.1.2, 00:11:30, Serial3/3
D EX     12.0.3.0/24 [170/8192000] via 4.1.1.2, 00:11:30, Serial3/3
      13.0.0.0/24 is subnetted, 4 subnets
O E1     13.0.0.0 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
O E1     13.0.1.0 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
O E1     13.0.2.0 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
O E1     13.0.3.0 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
      14.0.0.0/8 is variably subnetted, 8 subnets, 2 masks
C        14.0.0.0/24 is directly connected, Loopback0
L        14.0.0.1/32 is directly connected, Loopback0
C        14.0.1.0/24 is directly connected, Loopback1
L        14.0.1.1/32 is directly connected, Loopback1
C        14.0.2.0/24 is directly connected, Loopback2
L        14.0.2.1/32 is directly connected, Loopback2
C        14.0.3.0/24 is directly connected, Loopback3
L        14.0.3.1/32 is directly connected, Loopback3
O E1  15.0.0.0/8 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
O E1  20.0.0.0/8 [110/84] via 3.1.1.1, 00:25:48, Serial3/2
R     24.0.0.0/8 [120/8] via 45.1.1.2, 00:00:16, Serial3/7
O E1  30.0.0.0/8 [110/84] via 3.1.1.1, 00:25:38, Serial3/2
O E1  35.0.0.0/8 [110/84] via 3.1.1.1, 00:25:38, Serial3/2
      40.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        40.0.0.0/8 is directly connected, FastEthernet0/0
L        40.1.1.1/32 is directly connected, FastEthernet0/0
      45.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        45.0.0.0/8 is directly connected, Serial3/7
L        45.1.1.1/32 is directly connected, Serial3/7
R     50.0.0.0/8 [120/8] via 45.1.1.2, 00:00:16, Serial3/7
      150.0.0.0/24 is subnetted, 4 subnets
O E1     150.0.0.0 [110/84] via 3.1.1.1, 00:25:38, Serial3/2
O E1     150.0.1.0 [110/84] via 3.1.1.1, 00:25:38, Serial3/2
O E1     150.0.2.0 [110/84] via 3.1.1.1, 00:25:38, Serial3/2
O E1     150.0.3.0 [110/84] via 3.1.1.1, 00:25:38, Serial3/2

R5#show ip route
Codes: L - local, 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, H - NHRP, l - LISP
       + - replicated route, % - next hop override

Gateway of last resort is not set

R     1.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R     2.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R     3.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R     4.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R     10.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
      11.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
R        11.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        11.0.0.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        11.0.1.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        11.0.2.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        11.0.3.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
      12.0.0.0/8 is variably subnetted, 5 subnets, 2 masks
R        12.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        12.0.0.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        12.0.1.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        12.0.2.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        12.0.3.0/24 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
      13.0.0.0/24 is subnetted, 4 subnets
R        13.0.0.0 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        13.0.1.0 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        13.0.2.0 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
R        13.0.3.0 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
      14.0.0.0/24 is subnetted, 4 subnets
R        14.0.0.0 [120/1] via 45.1.1.1, 00:00:11, Serial3/7
R        14.0.1.0 [120/1] via 45.1.1.1, 00:00:11, Serial3/7
R        14.0.2.0 [120/1] via 45.1.1.1, 00:00:11, Serial3/7
R        14.0.3.0 [120/1] via 45.1.1.1, 00:00:11, Serial3/7
      15.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        15.0.0.0/8 is directly connected, Serial3/6
L        15.1.1.1/32 is directly connected, Serial3/6
R     20.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
      24.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        24.0.0.0/8 is directly connected, Serial3/4
L        24.1.1.2/32 is directly connected, Serial3/4
D     30.0.0.0/8 [90/2172416] via 35.1.1.1, 01:20:22, Serial3/5
      35.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        35.0.0.0/8 is directly connected, Serial3/5
L        35.1.1.2/32 is directly connected, Serial3/5
R     40.0.0.0/8 [120/8] via 45.1.1.1, 00:00:11, Serial3/7
      45.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        45.0.0.0/8 is directly connected, Serial3/7
L        45.1.1.2/32 is directly connected, Serial3/7
      50.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C        50.0.0.0/8 is directly connected, FastEthernet0/0
L        50.1.1.1/32 is directly connected, FastEthernet0/0
      150.0.0.0/16 is variably subnetted, 8 subnets, 2 masks
C        150.0.0.0/24 is directly connected, Loopback0
L        150.0.0.1/32 is directly connected, Loopback0
C        150.0.1.0/24 is directly connected, Loopback1
L        150.0.1.1/32 is directly connected, Loopback1
C        150.0.2.0/24 is directly connected, Loopback2
L        150.0.2.1/32 is directly connected, Loopback2
C        150.0.3.0/24 is directly connected, Loopback3
L        150.0.3.1/32 is directly connected, Loopback3


R1#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "eigrp 210"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  Redistributing: rip, eigrp 140
  EIGRP-IPv4 Protocol for AS(210)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 11.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    1.0.0.0
    10.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    1.1.1.2               90      00:12:16
  Distance: internal 90 external 170

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 21 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: eigrp 210, eigrp 140
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/6             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    11.0.0.0
    Interface             Send  Recv  Triggered RIP  Key-chain
    15.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 120)

Routing Protocol is "eigrp 140"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  Redistributing: eigrp 210, rip
  EIGRP-IPv4 Protocol for AS(140)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 11.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    4.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    4.1.1.1               90      00:12:22
  Distance: internal 90 external 170

R2#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "eigrp 210"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  Redistributing: rip, ospf 11
  EIGRP-IPv4 Protocol for AS(210)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 12.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    1.0.0.0
    20.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    1.1.1.1               90      00:14:01
  Distance: internal 90 external 170

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 26 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: eigrp 210, rip, ospf 11 (internal, external 1 & 2, nssa-external 1 & 2)

  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/1             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is in effect
  Maximum path: 4
    Interface             Send  Recv  Triggered RIP  Key-chain
  Routing for Networks:
    2.0.0.0
    12.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    2.1.1.2              120      00:00:07
  Distance: (default is 120)

Routing Protocol is "ospf 11"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 12.0.3.1
  It is an autonomous system boundary router
 Redistributing External Routes from,
    eigrp 210, includes subnets in redistribution
    rip, includes subnets in redistribution
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    25.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)

R3#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 14 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: rip, eigrp 53, ospf 10 (internal, external 1 & 2, nssa-external 1 & 2)

  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/1             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    2.0.0.0
    13.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    2.1.1.1              120      00:00:19
  Distance: (default is 120)

Routing Protocol is "eigrp 53"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  Redistributing: rip, ospf 10
  EIGRP-IPv4 Protocol for AS(53)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 13.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    30.0.0.0
    35.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    35.1.1.2              90      00:15:41
  Distance: internal 90 external 170

Routing Protocol is "ospf 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 13.0.3.1
  It is an autonomous system boundary router
 Redistributing External Routes from,
    rip, includes subnets in redistribution
    eigrp 53, includes subnets in redistribution
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    3.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
    14.0.3.1             110      00:15:48
  Distance: (default is 110)

R4#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "ospf 10"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 14.0.3.1
  It is an autonomous system boundary router
 Redistributing External Routes from,
    rip, includes subnets in redistribution
    eigrp 140, includes subnets in redistribution
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    3.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
    13.0.3.1             110      00:17:00
  Distance: (default is 110)

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 16 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: ospf 10 (internal, external 1 & 2, nssa-external 1 & 2)

  Redistributing: rip, eigrp 140
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/7             2     2
    Loopback0             2     2
    Loopback1             2     2
    Loopback2             2     2
    Loopback3             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    14.0.0.0
    45.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    45.1.1.2             120      00:00:12
  Distance: (default is 120)

Routing Protocol is "eigrp 140"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  Redistributing: ospf 10, rip
  EIGRP-IPv4 Protocol for AS(140)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 14.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    4.0.0.0
    40.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    4.1.1.2               90      00:17:04
  Distance: internal 90 external 170

R5#show ip protocols
*** IP Routing is NSF aware ***

Routing Protocol is "ospf 11"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Router ID 150.0.3.1
  It is an autonomous system boundary router
 Redistributing External Routes from,
    eigrp 53, includes subnets in redistribution
    rip, includes subnets in redistribution
  Number of areas in this router is 1. 1 normal 0 stub 0 nssa
  Maximum path: 4
  Routing for Networks:
    24.0.0.0 0.255.255.255 area 0
    50.0.0.0 0.255.255.255 area 0
  Routing Information Sources:
    Gateway         Distance      Last Update
  Distance: (default is 110)

Routing Protocol is "eigrp 53"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Default networks flagged in outgoing updates
  Default networks accepted from incoming updates
  Redistributing: ospf 11, rip
  EIGRP-IPv4 Protocol for AS(53)
    Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
    NSF-aware route hold timer is 240
    Router-ID: 150.0.3.1
    Topology : 0 (base)
      Active Timer: 3 min
      Distance: internal 90 external 170
      Maximum path: 4
      Maximum hopcount 100
      Maximum metric variance 1

  Automatic Summarization: disabled
  Maximum path: 4
  Routing for Networks:
    35.0.0.0
    150.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    35.1.1.1              90      00:18:32
  Distance: internal 90 external 170

Routing Protocol is "rip"
  Outgoing update filter list for all interfaces is not set
  Incoming update filter list for all interfaces is not set
  Sending updates every 30 seconds, next due in 25 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240
  Redistributing: ospf 11 (internal, external 1 & 2, nssa-external 1 & 2)

  Redistributing: eigrp 53, rip
  Default version control: send version 2, receive version 2
    Interface             Send  Recv  Triggered RIP  Key-chain
    Serial3/6             2     2
    Serial3/7             2     2
  Automatic network summarization is not in effect
  Maximum path: 4
  Routing for Networks:
    15.0.0.0
    45.0.0.0
  Routing Information Sources:
    Gateway         Distance      Last Update
    45.1.1.1             120      00:00:22
  Distance: (default is 120)


 


 


Instagram

Facebook


Twitter



LINKEDIN








What is Virtual Router Redundancy Protocol (VRRP)? How to configure Virtual Router Redundancy Protocol (VRRP)?

 Virtual Router Redundancy Protocol (VRRP) is a gateway redundancy networking protocol used to create a virtual gateway similar to HSRP . VR...