Back
!----------------------------
!REMOTE Routing Table
!---------------------------

REMOTE#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.5 to network 0.0.0.0

     192.168.0.0/30 is subnetted, 2 subnets
D       192.168.0.0 [90/21024000] via 192.168.0.5, 00:12:20, Serial0
C       192.168.0.4 is directly connected, Serial0
D EX 192.168.2.0/24 [170/20576000] via 192.168.0.5, 00:30:16, Serial0
C    192.168.3.0/24 is directly connected, FastEthernet0
D*EX 0.0.0.0/0 [170/20576000] via 192.168.0.5, 00:09:28, Serial0
REMOTE#

!---------------------------------------------------------
!Configuration for REMOTE: 1700/IOS-c1700-nosy-mz.120-5.T1
!---------------------------------------------------------
enable
config t
!
hostname REMOTE
!
!
no ip domain-lookup
ip host ISP 2.0.0.1
ip host BRANCH 192.168.0.5
ip host HQ 192.168.0.1
!
interface FastEthernet0
 description REMOTE LAN
 ip address 192.168.3.1 255.255.255.0
 no shutdown
!
interface Serial0
 description Link to BRANCH
 ip address 192.168.0.6 255.255.255.252
 no shutdown
!
router eigrp 24
 network 192.168.0.0
 network 192.168.3.0
 no auto-summary
!
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