Back
!----------------------------
!BRANCH Routing Table
!---------------------------

BRANCH#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
       i - IS-IS, 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 192.168.0.1 to network 0.0.0.0

     192.168.0.0/30 is subnetted, 2 subnets
C       192.168.0.0 is directly connected, Serial0
C       192.168.0.4 is directly connected, Serial1
C    192.168.2.0/24 is directly connected, FastEthernet0
D    192.168.3.0/24 [90/20514560] via 192.168.0.6, 00:30:52, Serial1
O*E2 0.0.0.0/0 [110/1] via 192.168.0.1, 00:10:04, Serial0
BRANCH#

!---------------------------------------------------------
!Configuration for BRANCH: 1700/IOS-c1700-nosy-mz.120-5.T1
!---------------------------------------------------------
enable
config t
!
hostname BRANCH
!
!
no ip domain-lookup
ip host ISP 2.0.0.1
ip host HQ 192.168.0.1
ip host REMOTE 192.168.0.6
!
interface FastEthernet0
 description BRANCH LAN
 ip address 192.168.2.1 255.255.255.0 
 no shutdown
!
interface Serial0
 description Link to HQ
 ip address 192.168.0.2 255.255.255.252
 no shutdown
!
interface Serial1
 description Link to REMOTE
 ip address 192.168.0.5 255.255.255.252
 clockrate 64000
 no shutdown
!
router eigrp 24
 redistribute ospf 1 metric 15000 250 255 1 1500
 network 192.168.0.0
 no auto-summary
!
router ospf 1
 redistribute eigrp 24 metric 30 metric-type 1
 network 192.168.0.0 0.0.0.3 area 0
 network 192.168.0.4 0.0.0.3 area 0
 network 192.168.2.0 0.0.0.255 area 0
!
banner motd &
**************************************
           !!!WARNING!!!
       AUTHORIZED ACCESS ONLY
      NETADMIN:  Allan Johnson
**************************************
&
!
line con 0
 exec-timeout 0 0
 password cisco
 logging synchronous
 login
line aux 0
line vty 0 4
 exec-timeout 0 0
 password cisco
 logging synchronous
 login
!
end
wr