Anda di halaman 1dari 15

BOSON NETSIM FOR CCNP ROUTING

L 1
LAB

INITIAL
CONFIGURATION
LAB
Boson Software
12655 Race Track Road
Tampa, FL 33626
www.boson.com
Boson CCNP Routing
Initial Configuration Lab

Objective
Configure the lab, including hostnames, passwords, IP Addresses, and the
RIP routing protocol.

Lab Diagram

P1R3
Fast Ethernet 0/0 10.40.1.2

Switch1

FastEthernet 0/0 10.40.1.1 Subnet Mask


Loopback 0
255.255.255.0
P1R2
10.10.1.1 Serial 0/0 10.30.1.6

Loopback 0 Serial 0/0 10.30.1.5

P1R1
10.20.1.1 FastEthernet 0/0 10.100.100.1

Classroom Backbone

Command Summary

BSCI CCNP
Version # 2.1 Page 2

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
Command Description
configure terminal enter global configuration mode
hostname set the device name
interface interface-type interface-num changes from global config to interface
config
ip address ip_address set the IP address to the value ip_address
shutdown, no shutdown disables, or enables an interface
enable enter Privileged mode
disable return to User mode
exit back up one level in the menu structure
no ip domain-lookup disables DNS lookups
router protocol changes to router config mode
network network enables a routing protocol to route for an
attached network
version 2 enables RIP version 2
ip classless enables the router for classless routing
enable password password sets the enable password
enable secret password sets the enable secret
show controllers interface-type interface- shows cable orientation for serial interfaces
num
clock rate clockrate sets the clockrate for a DCE interface
exec-timeout 0 sets the timeout to never logout
logging synchronous returns a clean line after a console
message
show ip protocols view the routing protocols loaded
show interface check the interface data link layer status
show startup-config view the backup configuration file
show running-config view the active configuration file
show controller check the interface physical layer status

BSCI CCNP
Version # 2.1 Page 3

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing

Task 1

Settings on all routers


Property Your Setting
router name per diagram
enable password cisco
enable secret password cisco
virtual terminal password cisco

Task 1

Configuring Router 3

1. Set the initial parameters as per the chart Settings on All Routers.
2. Place the appropriate IP address on the FastEthernet0/0 interface and then
enable the interface.
3. Enable the RIPv2 routing protocol. Route for all connected interfaces,
including loopbacks.
4. Lastly, execute the command ip classless from global configuration mode.
This enables the use of classless routes. The full effect of the command will
be discussed later in the course.

Task 2

Configuring Router 2

1. Set the initial parameters as per the chart Settings on All Routers.

BSCI CCNP
Version # 2.1 Page 4

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
2. Place the appropriate IP address on the FastEthernet0/0 interface and then
enable the interface.
3. Enable the Loopback0 interface and place the appropriate IP address on the
interface.
4. Enable the Serial0/0 interface and place the appropriate IP address on the
interface.
5. Execute the command show controllers serial 0/0. If the controller is the
DCE, set the clock rate on the interface to 64000.
6. Enable the RIPv2 routing protocol. Route for all connected interfaces,
including loopbacks.

Task 3

Configuring Router 1

1. Set the initial parameters as per the chart Settings on All Routers.
2. Place the appropriate IP address on the FastEthernet 0/0 interface and then
enable the interface. (This connects to the backbone)
3. Enable the Loopback0 interface and place the appropriate IP address on the
interface.
4. Place the appropriate IP address on the interface and enable the Serial0/0
interface.
5. Execute the command show controllers serial 0/0. If the controller is the
DCE, set the clock rate on the interface to 64000.
6. Enable the RIPv2 routing protocol. Route for all connected interfaces,
including loopbacks.

BSCI CCNP
Version # 2.1 Page 5

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
Task 4

Verifying Configuration

1. Examine the routing table on Router 1, Router 2, and Router 3; do you have
routes to each subnet in your network?
2. Try to ping devices in your pod and other pods.
3. Save your configuration on all of your routers.

Note: It may be a good idea to save the config of each router to a text
file.

Lab is now complete!

BSCI CCNP
Version # 2.1 Page 6

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing

Lab Solutions

Task 1
1.
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname P1R3
P1R3(config)#enable password cisco
P1R3(config)#enable secret cisco
P1R3(config)#line vty 0 4
P1R3(config-line)#login
P1R3(config-line)#password cisco
2.
P1R3(config)#no ip domain-lookup
3.
P1R3(config)#interface Fastethernet 0/0
P1R3(config-if)#ip address 10.40.1.2 255.255.255.0
P1R3(config-if)#no shutdown

BSCI CCNP
Version # 2.1 Page 7

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
4.
P1R3(config)#router rip
P1R3(config-router)#version 2
P1R3(config-router)#network 10.0.0.0
5.
P1R3(config)#ip classless

Task 2
1.
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname P1R2
P1R2(config)#enable password cisco
P1R2(config)#enable secret cisco
P1R2(config)#line vty 0 4
P1R2(config-line)#login
P1R2(config-line)#password cisco
2.
P1R2(config)#interface fastethernet 0/0
P1R2(config-if)#ip address 10.40.1.1 255.255.255.0
P1R2(config-if)#no shutdown
3.
P1R2(config)#interface loopback 0
P1R2(config-if)#ip address 10.10.1.1 255.255.255.0
P1R2(config-if)#no shutdown
4.
P1R2(config)#interface serial 0/0
P1R2(config-if)#ip address 10.30.1.6 255.255.255.0
P1R2(config-if)#no shutdown
5.

BSCI CCNP
Version # 2.1 Page 8

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
P1R2#show controllers serial 0/0
Interface Serial0/0
Hardware is PowerQUICC MPC860
DTE V.35 clocks stopped.
6.
P1R2(config)#router rip
P1R2(config-router)#version 2
P1R2(config-router)#network 10.0.0.0

BSCI CCNP
Version # 2.1 Page 9

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing

Task 3
1.
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname P1R1
P1R1config)#enable password cisco
P1R1(config)#enable secret cisco
P1R1(config)#line vty 0 4
P1R1(config-line)#login
P1R1(config-line)#password cisco
2.
P1R1(config)#interface Fastethernet 0/0
P1R1(config-if)#ip address 10.100.100.1 255.255.255.0
P1R1(config-if)#no shutdown

BSCI CCNP
Version # 2.1 Page 10

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
3.
P1R2(config)#interface loopback 0
P1R2(config-if)#ip address 10.20.1.1 255.255.255.0
P1R2(config-if)#no shutdown
4.
P1R1(config)#interface serial 0/0
P1R1(config-if)#ip address 10.30.1.5 255.255.255.0
P1R1(config-if)#no shutdown
5.
P1R1#show controllers serial 0/0
HD unit 0, idb = 0x27D7C0, driver structure at 0x284D80
buffer size 1524 HD unit 0, V.35 DCE cable
P1R1(config)#interface serial 0/0
P1R1(config-if)#clock rate 64000
6.
P1R1(config)#router rip
P1R1(config-router)#version 2
P1R1(config-router)#network 10.0.0.0

BSCI CCNP
Version # 2.1 Page 11

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing

Task 4
1.
P1R1#show ip route
10.0.0.0/24 is subnetted, 5 subnets
R 10.10.1.0 [120/1] via 10.30.1.6, 00:00:03, Serial0/0
C 10.100.100.0 is directly connected, FastEthernet0/0
C 10.30.1.0 is directly connected, Serial0/0
C 10.20.1.0 is directly connected, Loopback0
R 10.40.1.0 [120/1] via 10.30.1.6, 00:00:03, Serial0/0

P1R2#show ip route
10.0.0.0/24 is subnetted, 5 subnets
C 10.10.1.0 is directly connected, Loopback0
R 10.100.100.0 [120/1] via 10.30.1.5, 00:00:05, Serial0/0
C 10.30.1.0 is directly connected, Serial0/0
R 10.20.1.0 [120/1] via 10.30.1.5, 00:00:05, Serial0/0
C 10.40.1.0 is directly connected, FastEthernet0/0

P1R3#sh ip route
10.0.0.0/24 is subnetted, 5 subnets
R 10.10.1.0 [120/1] via 10.40.1.1, 00:00:19, FastEthernet0/0
R 10.100.100.0 [120/2] via 10.40.1.1, 00:00:19, FastEthernet0/0
R 10.30.1.0 [120/1] via 10.40.1.1, 00:00:20, FastEthernet0/0
R 10.20.1.0 [120/2] via 10.40.1.1, 00:00:19, FastEthernet0/0
C 10.40.1.0 is directly connected, FastEthernet0/0
2. ping

BSCI CCNP
Version # 2.1 Page 12

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
3.
P1R1#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...

BSCI CCNP
Version # 2.1 Page 13

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing

Sample Initial Configuration Scripts


Pod 1 Router 1 Pod 1 Router 2
! !
hostname P1R1 hostname P1R2
! !
enable secret cisco enable secret cisco
enable password cisco enable password cisco
! !
no ip domain-lookup no ip domain-lookup
! !
! interface Loopback0
interface Loopback0 ip address 10.10.1.1 255.255.255.0
ip address 10.20.1.1 255.255.255.0 !
! interface FastEthernet0/0
interface FastEthernet0/0 ip address 10.40.1.1 255.255.255.0
ip address 10.100.100.1 255.255.255.0 speed auto
! !
interface Serial0/0 interface Serial0/0
ip address 10.30.1.5 255.255.255.0 ip address 10.30.1.6 255.255.255.0
no fair-queue no fair-queue
clockrate 64000 !
! router rip
router rip version 2
version 2 network 10.0.0.0
network 10.0.0.0 !
! ip classless
ip classless !
! line con 0
line con 0 exec-timeout 0 0
exec-timeout 0 0 logging synchronous
logging synchronous !
transport input none line vty 0 4
! exec-timeout 0 0
line vty 0 4 password cisco
exec-timeout 0 0 logging synchronous
password cisco login
logging synchronous !
login
!

Pod 1 Router 3
BSCI CCNP
Version # 2.1 Page 14

Copyright © 2004 Boson Software, Inc. All Rights Reserved


Boson CCNP Routing
!
hostname P1R3
!
enable secret cisco
enable password cisco
!
no ip domain-lookup
!
interface FastEthernet0/0
ip address 10.40.1.2 255.255.255.0
no ip directed-broadcast
!
router rip
version 2
network 10.0.0.0
!
ip classless
!
!
line con 0
exec-timeout 0 0
logging synchronous
transport input none
!
line vty 0 4
exec-timeout 0 0
password cisco
logging synchronous
login

BSCI CCNP
Version # 2.1 Page 15

Copyright © 2004 Boson Software, Inc. All Rights Reserved

Anda mungkin juga menyukai