CCNA4 Module 1 Challenge Lab #1 (NetLab Friendly)

advertisement
CCNA4 Module 1 Challenge Lab #1 (NetLab Friendly)
Objective
Configure Static NAT and Dynamic NAT with Port Address Translation
Step 1 Basic Router Configuration
•
Erase each router’s configuration and reload. Configure each router with you Instructor’s
required basic configurations.
•
Configure and activate all interfaces according to the topology and the equipment you are using.
•
Configure a default route on GATEWAY pointing to ISP
•
Configure ISP with a static route pointing to the NAT pool for GATEWAY
Step 2 Configure Static NAT and Dynamic NAT with Port Address Translation
•
Configure GATEWAY to statically translate the Inside Web Server address (10.0.1.1) to the first
address in the NAT pool
•
Using the rest of the NAT pool, configure GATEWAY to dynamically translate hosts that belong
to the 10.0.0.0/24 network. Make sure you enable PAT so that more that one host can share the
same IP address.
•
Designate how interfaces will participate in the NAT process
Step 3 Verify and Monitor NAT Configuration
1-1
•
From GATEWAY, issue two extended pings. The first ping should use the address 10.0.0.1 as
the source and the second ping should use 10.0.1.1 as the source. Both pings should work. If
not, troubleshoot your configurations.
•
Use the NAT show commands to view translations and statistics.
CCNA 4: WAN Technologies v 3.x – Module 1 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
CCNA4 Module 1 Challenge Lab #2
Router
Name
Interface
Name
Interface Address
Subnet Mask
RTA
RTB
RTC
ISP
Objective
•
Prior Skills: Demonstrate use of dynamic routing, static routing, and advertising a default route.
•
New Skills: Demonstrate proper configuration of NAT and DHCP.
Scenario
A Dr. Sue Menow has hired you to set up her network of three clinics: Central Clinic (RTA), East
Clinic (RTB), and West Clinic (RTC). She has bought three routers and has contracted with a service
provider for three T1 links. She wants you to configure her routers so that the hosts at the East and
West Clinics have access to the Internet through the Central Clinic’s router.
1-3
CCNA 4: WAN Technologies v 3.x – Module 1 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
Design Considerations
You can use any four routers at your disposal. RTA is shown to be attached through a LAN interface
to ISP. Although this is not realistic (you would use a WAN interface), the design allows you to use
any routers from the CCNA Lab Bundle. If you have access to a 2600 router with four serial
interfaces, use this router for RTA. Also, the LAN attached to RTA can be simulated with a loopback
interface. However, this could be an actual LAN if the router you use has two LAN interfaces.
Implementation Requirements
•
Cable the lab with available equipment in the configuration shown in the graphic. Label the
graphic with the appropriate interface names (such as S0, S0/0, E0, Fa0, etc.). Label serial
interfaces with the appropriate DTE or DCE designation.
•
Design an appropriate VLSM addressing scheme using the following method to assign subnets
and interface addresses.
o
1st Level of subnetting: assign subnet zero to the LAN off of RTB
o
2nd Level of subnetting: assign subnet zero to the LAN off of RTC
o
3rd Level of subnetting: assign subnet zero to the LAN off of RTA
o
4th Level of subnetting: assign subnet zero to the link between RTA and RTB; assign
subnet one to the link between RTA and RTC.
o
For LAN interfaces, use the first available host address in the assigned subnet.
o
For WAN interfaces, assign the first available host address to RTA. This requirement
includes the “WAN” link RTA shares with ISP.
•
Fill in the table below the topology with your addressing design and label the topology with the
assigned subnets. Helpful Hint: Also label the interfaces with the last octet of the interface’s IP
address.
•
Erase each router’s configuration and reload. Configure each router with basic configurations.
o
Hostnames
o
Passwords
o
Host Table
o
Console Line and Telnet Lines
o
Interface Addresses
•
Configure RIPv2 inside the network. DO NOT configure RIPv2 between RTA and ISP. Helpful
Hint: At this point, RTB should be able to ping RTC.
•
Configure NAT on RTA.
•
Configure DHCP on RTB for its LAN and on RTC for its LAN. For each DHCP configuration,
exclude the first three addresses from the DHCP pool.
•
On ISP, configure a static route to the enterprise. Helpful Hint: The static route points to the
enterprise’s NAT pool—not the inside private addresses.
•
On RTA, configure a default route to ISP. To distribute the default route to RTB and RTC, you
must enter the following command within the RTA’s RIP routing process:
RTA(config-router)#default-information originate
2-3
CCNA 4: WAN Technologies v 3.x – Module 1 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
Implementation Verification Steps
•
Capture output from DOS showing that both workstations received an IP address and can ping
the Simulated Web Server. This will verify your DHCP, NAT and default routing configurations.
•
Capture show commands verifying DHCP and NAT configuration. Helpful Hint: NAT times out
entries quickly, so have the workstations ping the Simulated Web Server continuously until you
get the show output for NAT. To do this, use the following example:
C:\ping 147.32.15.35 –n 1000
This will ping the Simulated Web Server 1000 times. You can stop the ping with the Ctrl + C key
combination.
3-3
•
Capture the routing tables on all four routers.
•
Capture the running configuration on all four routers.
•
Clean up your verification captures and make appropriate notations.
CCNA 4: WAN Technologies v 3.x – Module 1 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
CCNA4 Module 3 Challenge Lab
Objective
•
Configure PPP with CHAP authentication; DHCP and NAT Servers; Verify connectivity
Step 1 Cable the Lab as shown
Step 2 Configure the ISP router
Use the script below to configure the ISP router.
Router>enable
Router#config t
Router(config)#hostname ISP
ISP(config)#enable secret class
ISP(config)#no ip domain-lookup
ISP(config)#ip http server
ISP(config)#ip host HQ 200.20.2.2
ISP(config)#banner motd &!!!!AUTHORIZED ACCESS ONLY!!!!&
ISP(config)#ip route 137.38.39.40 255.255.255.248 200.20.2.2
ISP(config)#line console 0
ISP(config-line)#password cisco
ISP(config-line)#login
ISP(config-line)#logging synchronous
ISP(config-line)#exec-timeout 0 0
ISP(config-line)#line vty 0 4
ISP(config-line)#password cisco
ISP(config-line)#login
ISP(config-line)#logging synchronous
ISP(config-line)#exec-timeout 0 0
ISP(config-line)#interface serial 0
ISP(config-if)#description LINK TO CORPORATE CUSTOMER
ISP(config-if)#ip address 200.20.2.1 255.255.255.252
ISP(config-if)#encapsulation ppp
ISP(config-if)#clock rate 64000
ISP(config-if)#no shutdown
ISP(config-if)#interface Loopback 0
ISP(config-if)#description SIMULATED WEB SERVER
ISP(config-if)#ip address 145.46.47.48 255.255.255.255
ISP(config-if)#end
ISP#copy run start
1-2
CCNA 4: WAN Technologies v 3.x – Module 3 Challenge Lab
Copyright © 2006, Cisco Systems, Inc.
Step 3 HQ Basic Configurations
•
Configure HQ with basic router configurations including PPP encapsulation on the WAN link
•
Bring up both interfaces.
•
DO NOT configure CHAP yet.
•
Make sure HQ can ping ISP’s serial interface. If not, you can troubleshoot using the debug ppp
negotiation command.
HQ#ping 200.20.2.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 200.20.2.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/6/8 ms
HQ#
Step 4 Configure CHAP Authentication
•
Using the password isplink, configure CHAP as the Authentication protocol on both ISP and
HQ.
o
•
The link between HQ and ISP will go down until you configure both sides of the link
correctly.
Make sure HQ can ping ISP’s serial interface. If not, you can troubleshoot using the debug ppp
authentication command.
o
Remember: usernames must match the hostname of the remote router and passwords
are case sensitive.
Step 5 Configure the DHCP Server
•
Configure HQ as the DHCP Server for the 192.168.1.0/24 network
o
•
Exclude the first three IP addresses from the DHCP pool
Verify that the workstation dynamically obtained the correct configuration information and can
ping its default gateway. If not, troubleshoot.
C:\>ipconfig
Connection-specific
IP Address. . . . .
Subnet Mask . . . .
Default Gateway . .
DNS
. .
. .
. .
Suffix
. . . .
. . . .
. . . .
.
.
.
.
:
: 192.168.1.4
: 255.255.255.0
: 192.168.1.1
Step 6 Configure the NAT Server
•
Configure HQ with a NAT server to dynamically assign global outside IP addresses from the
NAT pool 137.38.39.40/29 to local inside packets attempting to access the Internet. Any packet
with an IP address from the 192.168.1.0/24 network will be translated.
o
Make sure you use PAT so that more than one user can be translated to use the same
global outside IP address.
Step 7 Verify Connectivity
•
On the workstation, open up a web browser window. Type the IP address 145.46.47.48 in the
Address field and hit the Enter key.
o
2-2
If a password authentication dialog box appears, then you have full connectivity. Type
cisco as the usename and class as the password. The web page for the ISP router
should appear.
CCNA 4: WAN Technologies v 3.x – Module 3 Challenge Lab
Copyright © 2006, Cisco Systems, Inc.
CCNA4 Mod4 Challenge Lab #1 (Adtran Required)
Objectives
•
Configure basic Frame Relay in a Full Mesh/One Subnet Topology
•
Use show commands to verify Frame Relay is fully operational
•
Disable Inverse ARP and configure static entries in the frame relay map
•
Configure a different Frame Relay encapsulation
•
Configure and verify RIPv2 is properly advertising LAN subnets
•
Configure and verify OSPF is properly advertising LAN subnets
•
Add an ISP router, configure a default route, propagate the default route and configure NAT
•
Verify full, end-to-end connectivity and document configurations
Step 1 Cable and document the topology
a. Cable the topology as shown.
b. Fill in the table below with the configuration information you will use to complete the lab
Instructor’s Initials _______
1-5
CCNA 4: WAN Technologies v3.x – Module 4 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
Router
Interface
IP Address
Subnet Mask
ISP
RTA
RTB
RTC
Step 2 Configure basic Frame Relay and RIPv2 routing
a. DO NOT CONFIGURE ISP YET!! Configure RTA, RTB, and RTC with basic router configurations.
b. Configure frame relay encapsulation on the appropriate interfaces. You only need one command!!
c.
Configure RIP v2 routing. DO NOT ADVERTISE the 200.20.2.0/30 network attached to RTA
d. Verify Frame Relay is operational with the show frame-relay map and show frame-relay
pvc commands. Your output should look similar to the output below although your DLCI and IP
addresses may differ. Only RTA is shown. Make sure RTB and RTC also have fully active PVCs.
RTA#show frame-relay map
Serial0 (up): ip 10.0.0.2
broadcast,,
Serial0 (up): ip 10.0.0.3
broadcast,,
dlci 17(0x11,0x410), dynamic,
status defined, active
dlci 18(0x12,0x420), dynamic,
status defined, active
RTA#show frame-relay pvc
PVC Statistics for interface Serial0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 17, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 543
output pkts 467
in bytes 26428
out bytes 27966
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 19
out bcast bytes 1960
pvc create time 00:21:15, last time pvc status changed 00:18:05
DLCI = 18, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 323
output pkts 182
in bytes 40206
out bytes 12370
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 24
out bcast bytes 2130
pvc create time 00:21:17, last time pvc status changed 00:12:07
e. Verify routing is configured correctly with the show ip route command. Your output should look
similar to the output below. Only RTA is shown. Make sure RTB and RTC also have complete
routing tables. All three routers should have four networks: two directly connected and two learned
through RIP.
RTA#show ip route
2-5
CCNA 4: WAN Technologies v3.x – Module 4 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
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 not set
C
C
R
R
10.0.0.0/29 is
10.0.0.0 is
192.168.1.0/24
192.168.2.0/24
192.168.3.0/24
subnetted, 1 subnets
directly connected, Serial0
is directly connected, Ethernet0
[120/1] via 10.0.0.2, 00:00:20, Serial0
[120/1] via 10.0.0.3, 00:00:11, Serial0
Instructor’s Initials _______
Step 3 Add additional commands to your Frame Relay configuration
a. Disable Inverse ARP on the serial interfaces with the no frame-relay inverse-arp command
b. Configure ansi as the LMI type.
c.
Change the Frame Relay encapsulation to ietf
d. Enter the following commands to refresh you Frame Relay map, which should now be empty.
RTA#clear frame-relay or clear frame-relay inarp
RTA#show frame-relay map
e. Enter static map statements to configure the correct IP address to DLCI mappings for each of the
PVCs.
f.
Verify the static mappings are working correctly by pinging remote routes. Your Frame Relay map
should now look similar to the one below.
RTA#show frame map
Serial0 (up): ip 10.0.0.2 dlci 17(0x11,0x410), static,
broadcast,
IETF, status defined, active
Serial0 (up): ip 10.0.0.3 dlci 18(0x12,0x420), static,
broadcast,
IETF, status defined, active
Instructor’s Initials _______
Step 4 Change routing protocols from RIP to OSPF
a. Remove RIP routing on all three routers by entering no router rip.
b. Add the following command to serial interfaces (excluding the interface attached to ISP)
RTA(config-if)#ip ospf network broadcast
c.
Configure RTA to always be elected as the DR in the OSPF DR/BDR election.
d. Configure OSPF with process ID of 1 and add network statements for directly connected networks.
DO NOT ADVERTISE the 200.20.2.0/30 network attached to RTA.
e. Verify routing is configured correctly with the show ip route command. Your output should look
similar to the output below. Only RTA is shown. Make sure RTB and RTC also have complete
routing tables. All three routers should have four networks: two directly connected and two learned
through OSPF.
RTA#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 not set
C
3-5
10.0.0.0/29 is subnetted, 1 subnets
10.0.0.0 is directly connected, Serial0
CCNA 4: WAN Technologies v3.x – Module 4 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
C
O
O
f.
192.168.1.0/24 is directly connected, Ethernet0
192.168.2.0/24 [110/74] via 10.0.0.2, 00:03:17, Serial0
192.168.3.0/24 [110/74] via 10.0.0.3, 00:03:17, Serial0
Verify that RTA is the DR. Your neighbor tables should look similar to the output shown below.
Notice that both RTB and RTC have RTA listed as the DR and RTA has a higher priority.
RTA#show ip ospf neighbor
Neighbor ID
192.168.3.1
192.168.2.1
Pri
1
1
State
FULL/DROTHER
FULL/BDR
Dead Time
00:00:37
00:00:39
Address
10.0.0.3
10.0.0.2
Interface
Serial0
Serial0
Dead Time
00:00:37
00:00:35
Address
10.0.0.3
10.0.0.1
Interface
Serial0
Serial0
Dead Time
00:00:34
00:00:38
Address
10.0.0.1
10.0.0.2
Interface
Serial0
Serial0
RTB#show ip ospf neighbor
Neighbor ID
192.168.3.1
192.168.1.1
Pri
1
2
State
FULL/DROTHER
FULL/DR
RTC#show ip ospf neighbor
Neighbor ID
192.168.1.1
192.168.2.1
Pri
2
1
State
FULL/DR
FULL/BDR
Instructor’s Initials _______
Step 5 Add Internet connectivity, configure NAT, and configure default routing
a. Configure ISP with basic router configurations. Add the loopback interface and configure the serial
interface.
b. DO NOT CONFIGURE ANY ROUTING ON ISP!! No static or dynamic routing is needed.
c.
Verify that ISP can ping RTA
d. Configure PAT (NAT overload) on RTA. Since you have not been assigned a pool of addresses,
RTA the real IP address you assigned it from the 200.20.2.0/30 network.
e. Configure RTA with a default route pointing to ISP. Use the default-information originate
command within the OSPF routing process on RTA to propagate the default route to RTB and RTC.
f.
Verify that RTB and RTC can ping the Web Server attached to ISP. Your routing tables should look
similar to the routing tables shown on the next page.
Instructor’s Initials _______
4-5
CCNA 4: WAN Technologies v3.x – Module 4 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
RTA#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 0.0.0.0 to network 0.0.0.0
C
C
C
O
O
S*
200.20.2.0/30 is subnetted, 1 subnets
200.20.2.0 is directly connected, Serial1
10.0.0.0/29 is subnetted, 1 subnets
10.0.0.0 is directly connected, Serial0
192.168.1.0/24 is directly connected, Ethernet0
192.168.2.0/24 [110/74] via 10.0.0.2, 00:16:02, Serial0
192.168.3.0/24 [110/74] via 10.0.0.3, 00:16:02, Serial0
0.0.0.0/0 is directly connected, Serial1
RTB#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 10.0.0.1 to network 0.0.0.0
C
O
C
O
O*E2
10.0.0.0/29 is subnetted, 1 subnets
10.0.0.0 is directly connected, Serial0
192.168.1.0/24 [110/74] via 10.0.0.1, 00:19:43, Serial0
192.168.2.0/24 is directly connected, Ethernet0
192.168.3.0/24 [110/74] via 10.0.0.3, 00:19:44, Serial0
0.0.0.0/0 [110/1] via 10.0.0.1, 00:19:44, Serial0
RTC#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 10.0.0.1 to network 0.0.0.0
C
O
O
C
O*E2
5-5
10.0.0.0/29 is subnetted, 1 subnets
10.0.0.0 is directly connected, Serial0
192.168.1.0/24 [110/74] via 10.0.0.1, 00:18:32, Serial0
192.168.2.0/24 [110/74] via 10.0.0.2, 00:18:32, Serial0
192.168.3.0/24 is directly connected, Ethernet0
0.0.0.0/0 [110/1] via 10.0.0.1, 00:18:32, Serial0
CCNA 4: WAN Technologies v3.x – Module 4 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
CCNA4 Module 4 Challenge Lab #2 (with optional ISDN configuration)
Objectives
1-6
•
Configure basic Frame Relay in a Partial Mesh/Subinterface Topology
•
Use show commands to verify Frame Relay is fully operational
•
Configure and verify EIGRP is properly advertising LAN subnets
•
Add an ISP router, configure a default route, propagate the default route and configure NAT
•
Configure HQ as the DHCP server for LANs attached to HQ, SALES and MAIN
•
Configure ISDN with dialer profiles and test end-to-end connectivity
CCNA 4: WAN Technologies v 3.x – Module 4 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
Step 1 Cable and document the topology
a. Cable the topology as shown. The ISDN portion is optional.
b. Fill in the table below with the configuration information you will use to complete the lab
Instructor’s Initials _______
Router
Interface
IP Address
Subnet Mask
ISP
HQ
MAIN
SALES
REMOTE
Step 2 Configure Partial Mesh Frame Relay with Subinterfaces and EIGRP routing
a. DO NOT CONFIGURE ISP OR REMOTE YET!! Configure the Frame Relay core routers HQ, MAIN,
and SALES with basic router configurations.
b. Configure frame relay encapsulation on the physical interface and activate it. Make sure there is no
IP address. Use the DLCI to define subinterfaces and configure with appropriate IP addresses and
DLCI commands. Don’t forget to add the ip ospf network broadcast command on all subinterfaces or
OSPF will not converge
c.
Configure EIGRP routing with AS number 100. DO NOT ADVERTISE the 200.20.2.0/30 network
attached to HQ, yet.
d. Verify Frame Relay is operational with the show frame-relay map command. Your output should
look similar to the output below.
HQ#show frame-relay map
Serial0.18 (up): point-to-point dlci, dlci 18(0x12,0x420), broadcast
status defined, active
Serial0.16 (up): point-to-point dlci, dlci 16(0x10,0x400), broadcast
status defined, active
MAIN#show frame-relay map
Serial0.17 (up): point-to-point dlci, dlci 17(0x11,0x410), broadcast
status defined, active
SALES#show frame-relay map
Serial0.17 (up): point-to-point dlci, dlci 17(0x11,0x410), broadcast
status defined, active
2-6
CCNA 4: WAN Technologies v 3.x – Module 4 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
e. Verify routing is configured correctly with the show ip route command. Your output should look
similar to the output below.
HQ#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
<some Codes: output omitted>
Gateway of last resort is not set
C
C
D
D
C
172.16.0.0/16 is variably subnetted, 5 subnets, 4 masks
172.16.7.128/30 is directly connected, Serial0.16
172.16.7.132/30 is directly connected, Serial0.18
172.16.4.0/23 [90/2195456] via 172.16.7.130, 00:02:38, Serial0.16
172.16.6.0/24 [90/2195456] via 172.16.7.134, 00:01:48, Serial0.18
172.16.0.0/22 is directly connected, Ethernet0
MAIN#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
<some Codes: output omitted>
Gateway of last resort is not set
C
D
C
D
D
172.16.0.0/16 is variably subnetted, 5 subnets, 4 masks
172.16.7.128/30 is directly connected, Serial0.17
172.16.7.132/30 [90/2681856] via 172.16.7.129, 00:01:16, Serial0.17
172.16.4.0/23 is directly connected, Ethernet0
172.16.6.0/24 [90/2707456] via 172.16.7.129, 00:01:10, Serial0.17
172.16.0.0/22 [90/2195456] via 172.16.7.129, 00:02:02, Serial0.17
SALES#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
<some Codes: output omitted>
Gateway of last resort is not set
D
C
D
C
D
172.16.0.0/16 is variably subnetted, 5 subnets, 4 masks
172.16.7.128/30 [90/2681856] via 172.16.7.133, 00:00:15, Serial0.17
172.16.7.132/30 is directly connected, Serial0.17
172.16.4.0/23 [90/2707456] via 172.16.7.133, 00:00:15, Serial0.17
172.16.6.0/24 is directly connected, Ethernet0
172.16.0.0/22 [90/2195456] via 172.16.7.133, 00:00:15, Serial0.17
Instructor’s Initials _______
Step 3 Add Internet connectivity, configure NAT, and configure default routing
a. Configure ISP with basic router configurations. Add the loopback interface and configure the serial
interface.
b. Set a static route on ISP pointing to the private address space, 172.16.0.0/16
c.
Configure the HQ interface attached to ISP and verify that HQ can ping ISP
d. Configure HQ with a default route pointing to ISP. Then configure EIGRP to advertise the default
route to MAIN and SALES.
HQ(config)#ip default-network 200.20.2.0
HQ(config)#router eigrp 100
HQ(config-router)#network 200.20.2.0
e. Configure the NAT to statically assign the Inside Public Web Server, 172.16.0.2, the public IP
address, 163.0.0.0
f.
3-6
Configure a NAT pool for rest of the public IP addresses in the address space, 163.0.0.0/28. Note:
This will require more than one command.
CCNA 4: WAN Technologies v 3.x – Module 4 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
g. Verify HQ can ping the Web Server at 145.46.47.48. If not, troubleshoot.
HQ#ping web
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 145.46.47.48, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/40/56 ms
h. Verify that MAIN and SALES can ping the Web Server at 145.46.47.48. If not, troubleshoot.
MAIN#ping web
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 145.46.47.48, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 72/83/116 ms
SALES#ping web
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 145.46.47.48, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 84/94/124 ms
i.
Verify that ISP can ping the Inside Web Server at the public address, 163.0.0.0
ISP#ping 163.0.0.0
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 163.0.0.0, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/45/72 ms
j.
Your routing tables should look similar to the routing tables shown below and pings to the Web
Server should be successful.
HQ#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
* - candidate default, U - per-user static route, o - ODR
<some Codes: output omitted>
Gateway of last resort is 0.0.0.0 to network 0.0.0.0
*
C*
C
C
D
D
C
S*
200.20.2.0/30 is subnetted, 1 subnets
200.20.2.0 is directly connected, Serial1
172.16.0.0/16 is variably subnetted, 5 subnets, 4 masks
172.16.7.128/30 is directly connected, Serial0.16
172.16.7.132/30 is directly connected, Serial0.18
172.16.4.0/23 [90/2195456] via 172.16.7.130, 00:12:08, Serial0.16
172.16.6.0/24 [90/2195456] via 172.16.7.134, 00:11:18, Serial0.18
172.16.0.0/22 is directly connected, Ethernet0
0.0.0.0/0 is directly connected, Serial1
MAIN#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
* - candidate default, U - per-user static route, o - ODR
<some Codes: output omitted>
Gateway of last resort is 172.16.7.129 to network 200.20.2.0
D*
C
D
C
D
D
4-6
200.20.2.0/30 is subnetted, 1 subnets
200.20.2.0 [90/2681856] via 172.16.7.129, 00:04:36, Serial0.17
172.16.0.0/16 is variably subnetted, 5 subnets, 4 masks
172.16.7.128/30 is directly connected, Serial0.17
172.16.7.132/30 [90/2681856] via 172.16.7.129, 00:15:58, Serial0.17
172.16.4.0/23 is directly connected, Ethernet0
172.16.6.0/24 [90/2707456] via 172.16.7.129, 00:15:51, Serial0.17
172.16.0.0/22 [90/2195456] via 172.16.7.129, 00:16:43, Serial0.17
CCNA 4: WAN Technologies v 3.x – Module 4 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
SALES#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
* - candidate default, U - per-user static route, o - ODR
<some Codes: output omitted>
Gateway of last resort is 172.16.7.133 to network 200.20.2.0
D*
D
C
D
C
D
200.20.2.0/30 is subnetted, 1 subnets
200.20.2.0 [90/2681856] via 172.16.7.133, 00:05:27, Serial0.17
172.16.0.0/16 is variably subnetted, 5 subnets, 4 masks
172.16.7.128/30 [90/2681856] via 172.16.7.133, 00:16:40, Serial0.17
172.16.7.132/30 is directly connected, Serial0.17
172.16.4.0/23 [90/2707456] via 172.16.7.133, 00:16:40, Serial0.17
172.16.6.0/24 is directly connected, Ethernet0
172.16.0.0/22 [90/2195456] via 172.16.7.133, 00:16:41, Serial0.17
ISP#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
<some Codes: output omitted>
Gateway of last resort is not set
C
C
S
200.20.2.0/30 is subnetted, 1 subnets
200.20.2.0 is directly connected, Serial0
145.46.0.0/32 is subnetted, 1 subnets
145.46.47.48 is directly connected, Loopback0
163.0.0.0/28 is subnetted, 1 subnets
163.0.0.0 is directly connected, Serial0
Instructor’s Initials _______
Step 4 Configure Easy IP on HQ for LANs attached to HQ, SALES, and MAIN
a. The HQ router will server as the DHCP server for LANs attached to HQ, SALES, and MAIN.
Configure all three DHCP pools on HQ. Add corpnet.com as the domain name.
b. Excluded the first three address in each DHCP so that these addresses will not be dynamically
assigned to hosts.
c.
Configure SALES and MAIN with a helper address so that DCHP broadcasts will be forwarded to
HQ.
d. Verify workstations attached to HQ, MAIN and SALES dynamically received correct IP
configurations. The IP address assigned may be different than below, but no address below a .4
address should be assigned.
=================
HQ workstation
=================
Ethernet adapter Local Area Connection:
Connection-specific
IP Address. . . . .
Subnet Mask . . . .
Default Gateway . .
DNS
. .
. .
. .
Suffix
. . . .
. . . .
. . . .
.
.
.
.
:
:
:
:
corpnet.com
172.16.0.4
255.255.252.0
172.16.0.1
.
.
.
.
:
:
:
:
corpnet.com
172.16.4.4
255.255.254.0
172.16.4.1
.
.
.
.
:
:
:
:
corpnet.com
172.16.6.4
255.255.255.0
172.16.6.1
=================
MAIN workstation
=================
Ethernet adapter Local Area Connection:
Connection-specific
IP Address. . . . .
Subnet Mask . . . .
Default Gateway . .
DNS
. .
. .
. .
Suffix
. . . .
. . . .
. . . .
=================
SALES workstation
=================
Ethernet adapter Local Area Connection:
Connection-specific
IP Address. . . . .
Subnet Mask . . . .
Default Gateway . .
5-6
DNS
. .
. .
. .
Suffix
. . . .
. . . .
. . . .
CCNA 4: WAN Technologies v 3.x – Module 4 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
Step 5 ISDN with Dialer Profiles, PPP with CHAP, and DHCP on REMOTE
a. The ISDN link between SALES and REMOTE should be configured with dialer profiles using the
following requirements.
o
Permit any IP traffic to dial the ISDN link
o
PPP encapsulation with CHAP authentication
o
Load threshold should be set at 50%
o
Idle timeout should be 60 seconds and fast idle 15 seconds
b. Configure SALES with a static route pointing to the LAN attached to REMOTE. . Note: If you use the
“outbound interface” argument, it must be set to the dialer interface.
c.
Redistribute the SALES static route in the EIGRP routing process. Disable EIGRP hello messages
out the dialer interface on SALES with the passive-interface command so that EIGRP will not call the
ISDN link.
SALES(config)#router eigrp 100
SALES(config-router)#redistribute static
SALES(config-router)#passive-interface Dialer0
d. Configure REMOTE with a default route pointing to SALES. Note: If you use the “outbound interface”
argument, it must be set to the dialer interface.
e. Configure REMOTE with Easy IP, excluding the first three IP addresses and setting corpnet.com as
the domain name
f.
Verify a workstation attached REMOTE dynamically received that correct IP address configuration.
IP address assigned may be different than below, but no address below a .4 address should be
assigned.
===================
REMOTE workstation
===================
Ethernet adapter Local Area Connection:
Connection-specific
IP Address. . . . .
Subnet Mask . . . .
Default Gateway . .
DNS
. .
. .
. .
Suffix
. . . .
. . . .
. . . .
.
.
.
.
:
:
:
:
corpnet.com
172.16.7.4
255.255.255.0
172.16.7.1
g. Verify that the REMOTE workstation can ping the web server at 145.46.47.48.
C:\>ping 145.46.47.48
Pinging 145.46.47.48 with 32 bytes of data:
Reply
Reply
Reply
Reply
from
from
from
from
145.46.47.48:
145.46.47.48:
145.46.47.48:
145.46.47.48:
bytes=32
bytes=32
bytes=32
bytes=32
time=1ms
time=1ms
time=2ms
time=1ms
TTL=255
TTL=255
TTL=255
TTL=255
Ping statistics for 145.46.47.48:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 2ms, Average = 1ms
6-6
CCNA 4: WAN Technologies v 3.x – Module 4 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
CCNA4 Module 5 Challenge Lab #1: Frame Relay Full Mesh
Objective
Configure and Verify Frame Relay in a Full Mesh Topology
Optional Objectives at Instructor’s Discretion:
•
Configure EIGRP to advertise summary routes for simulated LANs
•
Add a ISP router and configure default routing, PPP with CHAP and NAT overload
•
Configure HQ as the DHCP server for LANs attached to HQ, MAIN, and SALES
•
Add a REMOTE router over an ISDN link using PPP with CHAP
Step 1 Cable and Label the Topology
Connect all the necessary equipment to complete the lab. Connect additional routers as needed for
the optional portions of the lab.
1-8
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
Step 2 Configure the Core Topology with Frame Relay and Routing Configuration
Configure all routers with basic configurations including instructor required configurations and all IP
addresses. You may want to skip configuring Loopbacks until Step 3.
Configure Frame Relay encapsulation on serial interfaces. After allowing sufficient time to pass
(sometimes up to 2 minutes), the three routers should have complete Frame Relay maps
HQ#show frame-relay map
Serial0 (up): ip 10.0.0.1 dlci 16(0x10,0x400),
dynamic, broadcast, status defined, active
Serial0 (up): ip 10.0.0.2 dlci 17(0x11,0x410),
dynamic, broadcast, status defined, active
If you are having difficulty obtaining the above output, use show frame-relay pvc to verify that
both PVCs are actually listed. You may have a physical layer problem.
Once Frame Relay is up dynamically, configure static maps with the frame-relay map command
and configure the LMI type to be ansi.
Configure EIGRP as the routing protocol. Make sure to turn off automatic summarization. Without the
Loopbacks configured, HQ’s routing table should look like the following:
HQ#show ip route
<output omitted>
Gateway of last resort is not set
D
C
C
D
10.0.0.0/8 is variably subnetted, 13 subnets, 6 masks
10.2.0.0/24 [90/2195456] via 10.0.0.2, 06:39:40, Serial0
10.3.0.0/24 is directly connected, Ethernet0
10.0.0.0/29 is directly connected, Serial0
10.1.0.0/24 [90/2195456] via 10.0.0.1, 06:37:52, Serial0
Step 3 Configure EIGRP Summary Routes (Optional)
Configure the Loopbacks shown on the topology. HQ’s routing table then should look like the one
below. MAIN and SALES will have similarly large tables.
HQ#show ip route
<output omitted>
Gateway of last resort is not set
D
D
C
C
D
D
D
D
D
D
D
D
D
C
C
C
C
2-8
10.0.0.0/8 is variably subnetted, 17 subnets, 7 masks
10.0.0.8/30 [90/41024000] via 10.0.0.1, 00:00:54, Serial0
10.2.0.0/24 [90/2195456] via 10.0.0.2, 00:00:54, Serial0
10.3.0.0/24 is directly connected, Ethernet0
10.0.0.0/29 is directly connected, Serial0
10.1.0.0/24 [90/2195456] via 10.0.0.1, 00:00:54, Serial0
10.24.0.0/14 [90/2297856] via 10.0.0.2, 00:00:55, Serial0
10.28.0.0/14 [90/2297856] via 10.0.0.2, 00:00:55, Serial0
10.16.0.0/14 [90/2297856] via 10.0.0.2, 00:00:55, Serial0
10.20.0.0/14 [90/2297856] via 10.0.0.2, 00:00:55, Serial0
10.40.0.0/13 [90/2297856] via 10.0.0.1, 00:00:55, Serial0
10.32.0.0/13 [90/2297856] via 10.0.0.1, 00:00:57, Serial0
10.56.0.0/13 [90/2297856] via 10.0.0.1, 00:00:57, Serial0
10.48.0.0/13 [90/2297856] via 10.0.0.1, 00:00:57, Serial0
10.64.0.0/12 is directly connected, Loopback0
10.80.0.0/12 is directly connected, Loopback1
10.96.0.0/12 is directly connected, Loopback2
10.112.0.0/12 is directly connected, Loopback3
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
Configure HQ, MAIN and SALES each with an EIGRP summary route to advertise to the other two
EIGRP neighbors. CCNA3 Module 3 can be helpful. After doing so, HQ’s routing table will look like
the one below:
HQ#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 not set
D
D
C
C
D
D
D
D
C
C
C
C
10.0.0.0/8 is variably subnetted, 12 subnets, 6 masks
10.0.0.8/30 [90/41024000] via 10.0.0.1, 06:37:52, Serial0
10.2.0.0/24 [90/2195456] via 10.0.0.2, 06:39:40, Serial0
10.3.0.0/24 is directly connected, Ethernet0
10.0.0.0/29 is directly connected, Serial0
10.1.0.0/24 [90/2195456] via 10.0.0.1, 06:37:52, Serial0
10.16.0.0/12 [90/2297856] via 10.0.0.2, 06:39:41, Serial0
10.32.0.0/11 [90/2297856] via 10.0.0.1, 06:37:53, Serial0
10.64.0.0/10 is a summary, 06:41:56, Null0
10.64.0.0/12 is directly connected, Loopback0
10.80.0.0/12 is directly connected, Loopback1
10.96.0.0/12 is directly connected, Loopback2
10.112.0.0/12 is directly connected, Loopback3
Step 4 Add ISP Router, Configure PPP, NAT, and Default Routing (Optional)
Add an ISP router to the topology and configure it according to the topology. The Web Server can be
a Loopback interface. Configure PPP with CHAP across the link.
Configure NAT on HQ by overloading the interface IP address that belongs to the 2.0.0.0/30
network.
On HQ, add a default route pointing to ISP. Configure HQ to advertise the default route in its EIGRP
routing process with the following commands:
HQ(config)#ip default-network 2.0.0.0
HQ(config)#router eigrp 100
HQ(config-route)#network 2.0.0.0
MAIN and SALES should both have a Gateway of Last Resort (a default router) and be able to ping
the Web Server on ISP. SALES’s routing table should look like the following:
SALES#show ip route
<output omitted>
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is 10.0.0.3 to network 2.0.0.0
D*
D
D
C
C
D
C
D
C
C
C
D
3-8
2.0.0.0/30 is subnetted, 1 subnets
2.0.0.0 [90/2681856] via 10.0.0.3, 01:39:41, Serial0
10.0.0.0/8 is variably subnetted, 13 subnets, 7 masks
10.2.0.0/24 [90/2195456] via 10.0.0.2, 06:43:57, Serial0
10.3.0.0/24 [90/2195456] via 10.0.0.3, 01:10:51, Serial0
10.0.0.0/29 is directly connected, Serial0
10.1.0.0/24 is directly connected, Ethernet0
10.16.0.0/12 [90/2297856] via 10.0.0.2, 06:43:57, Serial0
10.40.0.0/13 is directly connected, Loopback1
10.32.0.0/11 is a summary, 06:47:39, Null0
10.32.0.0/13 is directly connected, Loopback0
10.56.0.0/13 is directly connected, Loopback3
10.48.0.0/13 is directly connected, Loopback2
10.64.0.0/10 [90/2297856] via 10.0.0.3, 06:44:27, Serial0
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
Step 5 Configure DHCP Server (Optional)
Configure HQ as the DHCP server for LANs attached to HQ, MAIN, and SALES. Exclude the first
three addresses from each pool.
Configure both MAIN and SALES to send DHCP requests to HQ
Step 6 Add a REMOTE router over an ISDN link
Configure SALES and REMOTE with ISDN. Use either legacy DDR or dialer profiles.
Use PPP with CHAP as the encapsulation
Configure a default route pointing to SALES and configure SALES with a static route pointing to
REMOTE’s LAN. Redistribute SALES’ static route in the EIGRP routing process with the
redistribute static command.
Step 6 Verification
If all goes well, then your routers should have output similar to the following:
!------------------------------!HQ c2500-js-l.122-13b.bin
!------------------------------HQ#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 0.0.0.0 to network 0.0.0.0
*
C*
2.0.0.0/30 is subnetted, 1 subnets
2.0.0.0 is directly connected, Serial1
10.0.0.0/8 is variably subnetted, 13 subnets, 6 masks
D
10.0.0.8/30 [90/41024000] via 10.0.0.1, 06:37:52, Serial0
D
10.2.0.0/24 [90/2195456] via 10.0.0.2, 06:39:40, Serial0
C
10.3.0.0/24 is directly connected, Ethernet0
C
10.0.0.0/29 is directly connected, Serial0
D
10.1.0.0/24 [90/2195456] via 10.0.0.1, 06:37:52, Serial0
D
10.16.0.0/12 [90/2297856] via 10.0.0.2, 06:39:41, Serial0
D
10.32.0.0/11 [90/2297856] via 10.0.0.1, 06:37:53, Serial0
D
10.64.0.0/10 is a summary, 06:41:56, Null0
C
10.64.0.0/12 is directly connected, Loopback0
C
10.80.0.0/12 is directly connected, Loopback1
C
10.96.0.0/12 is directly connected, Loopback2
C
10.112.0.0/12 is directly connected, Loopback3
D EX
10.128.0.0/10 [170/41024000] via 10.0.0.1, 00:46:33, Serial0
S*
0.0.0.0/0 is directly connected, Serial1
HQ#show frame-relay map
Serial0 (up): ip 10.0.0.1 dlci 16(0x10,0x400), dynamic,
broadcast, CISCO, status defined, active
Serial0 (up): ip 10.0.0.2 dlci 17(0x11,0x410), dynamic,
broadcast, CISCO, status defined, active
4-8
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
HQ#show frame-relay pvc
PVC Statistics for interface Serial0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 16, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 11282
output pkts 7050
in bytes 1631988
out bytes 413359
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 4670
out bcast bytes 298760
pvc create time 3d00h, last time pvc status changed 06:39:03
DLCI = 17, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 11160
output pkts 6244
in bytes 688386
out bytes 396307
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 4677
out bcast bytes 299238
pvc create time 3d00h, last time pvc status changed 06:41:05
!------------------------------!MAIN c2500-js-l.122-13b.bin
!------------------------------MAIN#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 10.0.0.3 to network 2.0.0.0
D*
D
C
D
C
D
C
C
D
C
C
D
D
D
2.0.0.0/30 is subnetted, 1 subnets
2.0.0.0 [90/2681856] via 10.0.0.3, 01:38:38, Serial0
10.0.0.0/8 is variably subnetted, 13 subnets, 7 masks
10.0.0.8/30 [90/41024000] via 10.0.0.1, 06:42:49, Serial0
10.2.0.0/24 is directly connected, Ethernet0
10.3.0.0/24 [90/2195456] via 10.0.0.3, 01:09:48, Serial0
10.0.0.0/29 is directly connected, Serial0
10.1.0.0/24 [90/2195456] via 10.0.0.1, 06:42:49, Serial0
10.24.0.0/14 is directly connected, Loopback2
10.28.0.0/14 is directly connected, Loopback3
10.16.0.0/12 is a summary, 06:46:48, Null0
10.16.0.0/14 is directly connected, Loopback0
10.20.0.0/14 is directly connected, Loopback1
10.32.0.0/11 [90/2297856] via 10.0.0.1, 06:42:51, Serial0
10.64.0.0/10 [90/2297856] via 10.0.0.3, 06:45:13, Serial0
EX
10.128.0.0/10 [170/41024000] via 10.0.0.1, 00:52:06, Serial0
MAIN#show frame map
Serial0 (up): ip 10.0.0.1 dlci 16(0x10,0x400), static,
broadcast,
IETF, status defined, active
Serial0 (up): ip 10.0.0.3 dlci 18(0x12,0x420), static,
broadcast,
IETF, status defined, active
5-8
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
MAIN#show frame pvc
PVC Statistics for interface Serial0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 16, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 11796
output pkts 11735
in bytes 1630278
out bytes 752777
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 9335
out bcast bytes 597380
pvc create time 3d00h, last time pvc status changed 06:45:19
DLCI = 18, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 6360
output pkts 11263
in bytes 401626
out bytes 698119
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 9357
out bcast bytes 598788
pvc create time 3d00h, last time pvc status changed 06:46:21
!------------------------------!SALES c2500-d-l.120-5.T.bin
!------------------------------SALES#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 10.0.0.3 to network 2.0.0.0
D*
C
D
D
C
C
D
C
D
C
C
C
D
S
2.0.0.0/30 is subnetted, 1 subnets
2.0.0.0 [90/2681856] via 10.0.0.3, 01:39:41, Serial0
10.0.0.0/8 is variably subnetted, 13 subnets, 7 masks
10.0.0.8/30 is directly connected, BRI0
10.2.0.0/24 [90/2195456] via 10.0.0.2, 06:43:57, Serial0
10.3.0.0/24 [90/2195456] via 10.0.0.3, 01:10:51, Serial0
10.0.0.0/29 is directly connected, Serial0
10.1.0.0/24 is directly connected, Ethernet0
10.16.0.0/12 [90/2297856] via 10.0.0.2, 06:43:57, Serial0
10.40.0.0/13 is directly connected, Loopback1
10.32.0.0/11 is a summary, 06:47:39, Null0
10.32.0.0/13 is directly connected, Loopback0
10.56.0.0/13 is directly connected, Loopback3
10.48.0.0/13 is directly connected, Loopback2
10.64.0.0/10 [90/2297856] via 10.0.0.3, 06:44:27, Serial0
10.128.0.0/10 [1/0] via 10.0.0.10
SALES#show frame map
Serial0 (up): ip 10.0.0.2 dlci 17(0x11,0x410), dynamic,
broadcast,
IETF, status defined, active
Serial0 (up): ip 10.0.0.3 dlci 18(0x12,0x420), dynamic,
broadcast,
IETF, status defined, active
6-8
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
SALES#show frame pvc
PVC Statistics for interface Serial0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 17, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 679
output pkts 637
in bytes 35906
out bytes 63694
dropped pkts 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 224
out bcast bytes 37200
pvc create time 01:47:35, last time pvc status changed 01:47:35
DLCI = 18, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0
input pkts 2069
output pkts 1988
in bytes 97612
out bytes 145299
dropped pkts 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 224
out bcast bytes 37200
pvc create time 01:47:37, last time pvc status changed 01:47:37
SALES#show isdn status
Global ISDN Switchtype = basic-ni
ISDN BRI0 interface
dsl 0, interface ISDN Switchtype = basic-ni
Layer 1 Status:
ACTIVE
Layer 2 Status:
TEI = 64, Ces = 1, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI = 65, Ces = 2, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
Spid Status:
TEI 64, ces = 1, state = 8(established)
spid1 configured, spid1 sent, spid1 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 1
TEI 65, ces = 2, state = 8(established)
spid2 configured, spid2 sent, spid2 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 2
Layer 3 Status:
0 Active Layer 3 Call(s)
Activated dsl 0 CCBs = 0
The Free Channel Mask: 0x80000003
Total Allocated ISDN CCBs = 0
!------------------------------!REMOTE c800-y6-mw.122-8.T5.bin
!------------------------------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 10.0.0.9 to network 0.0.0.0
C
C
C
S*
7-8
10.0.0.0/8 is variably subnetted, 3 subnets, 3 masks
10.0.0.8/30 is directly connected, BRI0
10.0.0.9/32 is directly connected, BRI0
10.128.0.0/10 is directly connected, Loopback0
0.0.0.0/0 [1/0] via 10.0.0.9
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
REMOTE#show isdn status
Global ISDN Switchtype = basic-ni
ISDN BRI0 interface
dsl 0, interface ISDN Switchtype = basic-ni
Layer 1 Status:
ACTIVE
Layer 2 Status:
TEI = 64, Ces = 1, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI = 65, Ces = 2, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI 64, ces = 1, state = 8(established)
spid1 configured, spid1 sent, spid1 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 1
TEI 65, ces = 2, state = 8(established)
spid2 configured, spid2 sent, spid2 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 2
Layer 3 Status:
1 Active Layer 3 Call(s)
CCB:callid=C, sapi=0, ces=1, B-chan=1, calltype=DATA, hdlctype=HDLC-TRUNK
Active dsl 0 CCBs = 1
The Free Channel Mask: 0x80000002
Number of L2 Discards = 0, L2 Session ID = 6
Total Allocated ISDN CCBs = 1
8-8
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #1
Copyright © 2006, Cisco Systems, Inc.
CCNA4 Module 5 Challenge Lab #2: Frame Relay Subinterfaces
Objective
Configure and Verify Frame Relay in a Full Mesh Topology
Optional Objectives at Instructor’s Discretion:
•
Add a ISP router and configure default routing, PPP with CHAP and NAT overload
•
Configure each router to be its own DHCP server.
•
Add a REMOTE router over an ISDN link using PPP with CHAP
Step 1 Cable and Label the Topology
Connect all the necessary equipment to complete the lab. Connect additional routers as needed for
the optional portions of the lab.
1-7
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
Step 2 Configure the Core Topology with Frame Relay and Routing Configuration
Configure all routers with basic configurations including instructor required configurations and all IP
addresses. You may want to skip configuring Loopbacks until Step 3.
Configure Frame Relay encapsulation using subinterfaces. After allowing sufficient time to pass
(sometimes up to 2 minutes), the three routers should have complete Frame Relay maps
HQ#show frame-relay map
Serial0/0.18 (up): point-to-point dlci, dlci 18(0x12,0x420), broadcast
status defined, active
Serial0/0.17 (up): point-to-point dlci, dlci 17(0x11,0x410), broadcast
status defined, active
If you are having difficulty obtaining the above output, use show frame-relay pvc to verify that
both PVCs are actually listed. You may have a physical layer problem.
Configure OSPF as the routing protocol. Make sure you only advertise those networks that are in the
shaded OSPF area. Do not advertise the link between HQ and ISP or the link between SALES and
REMOTE. Without an ISP and REMOTE router yet, HQ’s routing table should look like the following:
HQ#show ip route
<output omitted>
Gateway of last resort is not set
C
C
O
O
C
C
O
10.0.0.0/8 is variably subnetted, 8 subnets, 3 masks
10.10.0.1/32 is directly connected, Loopback0
10.0.0.8/30 is directly connected, Serial0/0.18
10.2.0.0/24 [110/782] via 10.0.0.2, 00:17:59, Serial0/0.17
10.3.0.0/24 [110/782] via 10.0.0.9, 00:17:59, Serial0/0.18
10.0.0.0/30 is directly connected, Serial0/0.17
10.1.0.0/24 is directly connected, FastEthernet0/0
10.0.0.4/30 [110/845] via 10.0.0.2, 00:17:59, Serial0/0.17
Step 3 Add ISP Router, Configure PPP, NAT, and Default Routing (Optional)
Add an ISP router to the topology and configure it according to the topology. The Web Server can be
a Loopback interface. Configure PPP with CHAP across the link. Make sure that ISP has a static
route pointing to the NAT pool, not the 10.0.0.0/8 address space.
Configure NAT on HQ using the assigned pool shown in the topology. The first address in the pool,
3.0.0.0, will be statically assigned to the Simulated Inside Web Server at 10.10.0.1. The rest of the
addresses in the NAT pool can be dynamically assigned to other hosts within the 10.0.0.0/8 address
space.
On HQ, add a default route pointing to ISP. Configure HQ to advertise the default route in its OSPF
routing by using the default-information originate command
MAIN and SALES should both have a Gateway of Last Resort (a default router) and be able to ping
the Web Server on ISP. SALES’s routing table should look like the following:
SALES#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 10.0.0.10 to network 0.0.0.0
O
C
C
C
O
C
O
2-7
10.0.0.0/8 is variably subnetted, 10 subnets, 3 masks
10.10.0.1/32 [110/782] via 10.0.0.10, 00:21:25, Serial0/0.16
10.0.0.8/30 is directly connected, Serial0/0.16
10.0.0.14/32 is directly connected, Dialer0
10.0.0.12/30 is directly connected, Dialer0
10.2.0.0/24 [110/782] via 10.0.0.5, 00:21:25, Serial0/0.17
10.3.0.0/24 is directly connected, FastEthernet0/0
10.0.0.0/30 [110/845] via 10.0.0.5, 00:21:25, Serial0/0.17
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
O
10.1.0.0/24 [110/782] via 10.0.0.10, 00:21:25, Serial0/0.16
S
10.4.0.0/24 [1/0] via 10.0.0.14
C
10.0.0.4/30 is directly connected, Serial0/0.17
O*E2 0.0.0.0/0 [110/1] via 10.0.0.10, 00:07:02, Serial0/0.16
Step 4 Configure DHCP Server (Optional)
Configure each router to be its own DHCP server. Exclude the first three addresses from each pool.
Step 5 Add a REMOTE router over an ISDN link
Configure SALES and REMOTE with ISDN using dialer profiles.
Use PPP with CHAP as the encapsulation
Configure a default route pointing to SALES and configure SALES with a static route pointing to
REMOTE’s LAN. Redistribute SALES’ static route in the OSPF routing process with the
redistribute static subnets command. Otherwise, HQ and MAIN will not learn about the
LAN on REMOTE.
Step 6 Verification
If all goes well, then your routers should have output similar to the following:
!------------------------------!HQ c2600-i-mz.122-12k.bin
!------------------------------HQ#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 2.0.0.1 to network 0.0.0.0
2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
2.0.0.0/30 is directly connected, Serial0/1
2.0.0.1/32 is directly connected, Serial0/1
10.0.0.0/8 is variably subnetted, 8 subnets, 3 masks
C
10.10.0.1/32 is directly connected, Loopback0
C
10.0.0.8/30 is directly connected, Serial0/0.18
O
10.2.0.0/24 [110/782] via 10.0.0.2, 00:17:59, Serial0/0.17
O
10.3.0.0/24 [110/782] via 10.0.0.9, 00:17:59, Serial0/0.18
C
10.0.0.0/30 is directly connected, Serial0/0.17
C
10.1.0.0/24 is directly connected, FastEthernet0/0
O E2
10.4.0.0/24 [110/20] via 10.0.0.9, 00:17:59, Serial0/0.18
O
10.0.0.4/30 [110/845] via 10.0.0.2, 00:17:59, Serial0/0.17
S*
0.0.0.0/0 [1/0] via 2.0.0.1
C
C
HQ#show frame-relay map
Serial0/0.18 (up): point-to-point dlci, dlci 18(0x12,0x420), broadcast
status defined, active
Serial0/0.17 (up): point-to-point dlci, dlci 17(0x11,0x410), broadcast
status defined, active
3-7
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
HQ#show frame-relay pvc
PVC Statistics for interface Serial0/0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 17, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.17
input pkts 884
output pkts 898
in bytes 73221
out bytes 74042
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 527
out bcast bytes 55132
pvc create time 01:24:19, last time pvc status changed 01:08:59
DLCI = 18, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.18
input pkts 1683
output pkts 1575
in bytes 104032
out bytes 117277
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 481
out bcast bytes 50545
pvc create time 01:24:21, last time pvc status changed 00:19:01
!------------------------------!MAIN c2600-do3s-mz.120-5.T1
!------------------------------MAIN#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 10.0.0.1 to network 0.0.0.0
10.0.0.0/8 is variably subnetted, 8 subnets, 3 masks
10.10.0.1/32 [110/65] via 10.0.0.1, 00:19:37, Serial0/0.16
10.0.0.8/30 [110/845] via 10.0.0.1, 00:19:37, Serial0/0.16
[110/845] via 10.0.0.6, 00:19:37, Serial0/0.18
C
10.2.0.0/24 is directly connected, FastEthernet0/0
O
10.3.0.0/24 [110/65] via 10.0.0.6, 00:19:37, Serial0/0.18
C
10.0.0.0/30 is directly connected, Serial0/0.16
O
10.1.0.0/24 [110/65] via 10.0.0.1, 00:19:37, Serial0/0.16
O E2
10.4.0.0/24 [110/20] via 10.0.0.6, 00:19:37, Serial0/0.18
C
10.0.0.4/30 is directly connected, Serial0/0.18
O*E2 0.0.0.0/0 [110/1] via 10.0.0.1, 00:05:14, Serial0/0.16
O
O
MAIN#show frame-relay map
Serial0/0.16 (up): point-to-point dlci, dlci 16(0x10,0x400), broadcast
status defined, active
Serial0/0.18 (up): point-to-point dlci, dlci 18(0x12,0x420), broadcast
status defined, active
4-7
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
MAIN#show frame-relay pvc
PVC Statistics for interface Serial0/0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 16, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.16
input pkts 1221
output pkts 1155
in bytes 89085
out bytes 90535
dropped pkts 6
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 532
out bcast bytes 54748
pvc create time 01:15:05, last time pvc status changed 01:10:05
DLCI = 18, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.18
input pkts 538
output pkts 597
in bytes 51812
out bytes 57696
dropped pkts 7
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 477
out bcast bytes 49076
pvc create time 01:12:41, last time pvc status changed 00:20:07
!------------------------------!SALES c2600-i-mz.122-12k.bin
!------------------------------SALES#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 10.0.0.10 to network 0.0.0.0
10.0.0.0/8 is variably subnetted, 10 subnets, 3 masks
O
10.10.0.1/32 [110/782] via 10.0.0.10, 00:21:25, Serial0/0.16
C
10.0.0.8/30 is directly connected, Serial0/0.16
C
10.0.0.14/32 is directly connected, Dialer0
C
10.0.0.12/30 is directly connected, Dialer0
O
10.2.0.0/24 [110/782] via 10.0.0.5, 00:21:25, Serial0/0.17
C
10.3.0.0/24 is directly connected, FastEthernet0/0
O
10.0.0.0/30 [110/845] via 10.0.0.5, 00:21:25, Serial0/0.17
O
10.1.0.0/24 [110/782] via 10.0.0.10, 00:21:25, Serial0/0.16
S
10.4.0.0/24 [1/0] via 10.0.0.14
C
10.0.0.4/30 is directly connected, Serial0/0.17
O*E2 0.0.0.0/0 [110/1] via 10.0.0.10, 00:07:02, Serial0/0.16
SALES#show frame-relay map
Serial0/0.16 (up): point-to-point dlci, dlci 16(0x10,0x400), broadcast
status defined, active
Serial0/0.17 (up): point-to-point dlci, dlci 17(0x11,0x410), broadcast
status defined, active
5-7
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
SALES#show frame-relay pvc
PVC Statistics for interface Serial0/0 (Frame Relay DTE)
Local
Switched
Unused
Active
2
0
0
Inactive
0
0
0
Deleted
0
0
0
Static
0
0
0
DLCI = 16, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.16
input pkts 1198
output pkts 1400
in bytes 83552
out bytes 73962
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 177
out bcast bytes 18496
pvc create time 00:23:21, last time pvc status changed 00:23:21
DLCI = 17, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial0/0.17
input pkts 165
output pkts 171
in bytes 17404
out bytes 17808
dropped pkts 0
in pkts dropped 0
out pkts dropped 0
out bytes dropped 0
in FECN pkts 0
in BECN pkts 0
out FECN pkts 0
out BECN pkts 0
in DE pkts 0
out DE pkts 0
out bcast pkts 171
out bcast bytes 17808
pvc create time 00:23:22, last time pvc status changed 00:23:22
SALES#show isdn status
Global ISDN Switchtype = basic-ni
ISDN BRI0/0 interface
dsl 0, interface ISDN Switchtype = basic-ni
Layer 1 Status:
ACTIVE
Layer 2 Status:
TEI = 64, Ces = 1, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI = 65, Ces = 2, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI 64, ces = 1, state = 8(established)
spid1 configured, spid1 sent, spid1 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 1
TEI 65, ces = 2, state = 5(init)
spid2 configured, spid2 sent, spid2 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 2
Layer 3 Status:
1 Active Layer 3 Call(s)
CCB:callid=5, sapi=0, ces=2, B-chan=2, calltype=DATA
Active dsl 0 CCBs = 1
The Free Channel Mask: 0x80000001
Number of L2 Discards = 0, L2 Session ID = 10
Total Allocated ISDN CCBs = 1
SALES#
SALES#show isdn active
-------------------------------------------------------------------------------ISDN ACTIVE CALLS
-------------------------------------------------------------------------------Call
Calling
Called
Remote Seconds Seconds Seconds Charges
Type
Number
Number
Name
Used
Left
Idle
Units/Currency
-------------------------------------------------------------------------------In
5554000
5551235
REMOTE
586
59
0
--------------------------------------------------------------------------------
6-7
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
!------------------------------!REMOTE c2600-i-mz.122-12k.bin
!------------------------------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 10.0.0.13 to network 0.0.0.0
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C
10.0.0.12/30 is directly connected, Dialer0
C
10.4.0.0/24 is directly connected, FastEthernet0/0
S*
0.0.0.0/0 [1/0] via 10.0.0.13
REMOTE#
REMOTE#ping web
00:20:55: %LINK-3-UPDOWN: Interface BRI0/0:2, changed state to up.
00:20:55: %DIALER-6-BIND: Interface BR0/0:2 bound to profile Di0.!
00:20:58: %LINEPROTO-5-UPDOWN: Line protocol on Interface BRI0/0:2, changed state to up.!
Success rate is 40 percent (2/5), round-trip min/avg/max = 96/96/96 ms
00:21:01: %ISDN-6-CONNECT: Interface BRI0/0:2 is now connected to 5551235 SALES
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.0.0.1, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 100/100/100 ms
REMOTE#sh isdn status
Global ISDN Switchtype = basic-ni
ISDN BRI0/0 interface
dsl 0, interface ISDN Switchtype = basic-ni
Layer 1 Status:
ACTIVE
Layer 2 Status:
TEI = 64, Ces = 1, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI = 65, Ces = 2, SAPI = 0, State = MULTIPLE_FRAME_ESTABLISHED
TEI 64, ces = 1, state = 8(established)
spid1 configured, spid1 sent, spid1 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 1
TEI 65, ces = 2, state = 8(established)
spid2 configured, spid2 sent, spid2 valid
Endpoint ID Info: epsf = 0, usid = 70, tid = 2
Layer 3 Status:
1 Active Layer 3 Call(s)
CCB:callid=8005, sapi=0, ces=1, B-chan=2, calltype=DATA
Active dsl 0 CCBs = 1
The Free Channel Mask: 0x80000001
Number of L2 Discards = 0, L2 Session ID = 8
Total Allocated ISDN CCBs = 1
REMOTE#show isdn active
-------------------------------------------------------------------------------ISDN ACTIVE CALLS
-------------------------------------------------------------------------------Call
Calling
Called
Remote Seconds Seconds Seconds Charges
Type
Number
Number
Name
Used
Left
Idle
Units/Currency
-------------------------------------------------------------------------------Out
---N/A--5551235
SALES
56
38
21
0
--------------------------------------------------------------------------------
7-7
CCNA 4: WAN Technologies v 3.x – Module 5 Challenge Lab #2
Copyright © 2006, Cisco Systems, Inc.
Download