17 February, 2011

CCNA Skills Integration Challenge PT Activity 8.6.1


     This article aimed at solving CCNA Skills Integration Challenge PT Activity 8.6.1 and exam CCNA, also for basic configuration of network equipment Cisco Systems
First of all we must configure HQ as a hub router. Entering console:
Router>enable 
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname HQ
HQ(config)#interface serial 0/0/0
HQ(config-if)#encapsulation frame-relay 
HQ(config-if)#no shutdown 
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up
HQ(config-if)#frame-relay lmi-type q933a 
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up
HQ(config-if)#exit
HQ(config)#interface serial 0/0/0.41 point-to-point
%LINK-5-CHANGED: Interface Serial0/0/0.41, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0.41, changed state to up
HQ(config-subif)#ip address 10.255.255.1 255.255.255.252
HQ(config-subif)#frame-relay interface-dlci 41
HQ(config-subif)#exit
HQ(config)#interface serial 0/0/0.42 point-to-point 
%LINK-5-CHANGED: Interface Serial0/0/0.42, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0.42, changed state to up
ipad
HQ(config-subif)#ip address 10.255.255.5 255.255.255.252
HQ(config-subif)#frame-relay interface-dlci 42
HQ(config-subif)#exit
HQ(config)#interface serial 0/0/0.43 point-to-point 
%LINK-5-CHANGED: Interface Serial0/0/0.43, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0.43, changed state to up
HQ(config-subif)#ip address 10.255.255.9 255.255.255.252
HQ(config-subif)#frame-relay interface-dlci 43
HQ(config-subif)#exit
HQ#copy r s
Destination filename [startup-config]? 
Building configuration...
[OK]



Second action in this task is configuring other routers as spokes. Configuring steps:
Router>enable 
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname B1
B1(config)#interface serial 0/0/0
B1(config-if)#encapsulation frame-relay
B1(config-if)#frame-relay lmi-type q933a 
B1(config-if)#ip address 10.255.255.2 255.255.255.252
B1(config-if)#no shutdown 
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up
B1#
%SYS-5-CONFIG_I: Configured from console by console
ping 10.255.255.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.255.255.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 5/8/10 ms
B1#copy r s
Destination filename [startup-config]? 
Building configuration...
[OK]
And we have to repeat this step for another two spoke routers, with changing several parameters as IP address and lmi-types if needed.
Router>enable 
Router#conf t
Router(config)#hostname B2
B2(config)#interface serial 0/0/0
B2(config-if)#encapsulation frame-relay
B2(config-if)#frame-relay lmi-type q933a 
B2(config-if)#ip address 10.255.255.6 255.255.255.252
B2(config-if)#no shutdown 
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up
B2#
%SYS-5-CONFIG_I: Configured from console by console
ping 10.255.255.5
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.255.255.5, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 5/8/10 ms
B1#copy r s
Destination filename [startup-config]? 
Building configuration...
[OK]
And last third router B3:
Router>enable
Router#configure t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname B3
B3(config)#interface serial 0/0/0
B3(config-if)#encapsulation frame-relay ietf
B3(config-if)#frame-relay lmi-type ansi
B3(config-if)#ip address 10.255.255.10 255.255.255.252
B3(config-if)#no shutdown
%LINK-5-CHANGED: Interface Serial0/0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0/0, changed state to up
do ping 10.255.255.9
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.255.255.9, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 8/9/10 ms
B3(config-if)#exit
B3#
B3#copy r s
Destination filename [startup-config]?
Building configuration...
[OK]
That's all for step one. Step 2 Congifuring the LAN interface on HQ router.
HQ>enable
HQ#conf t
Enter configuration commands, one per line. End with CNTL/Z.
HQ(config)#interface fa0/0
HQ(config-if)#ip address 10.0.1.1 255.255.255.0
HQ(config-if)#no shutdown
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
HQ(config-if)#do copy r s
Destination filename [startup-config]?
Building configuration...
[OK]
Step 3 is a verifying all configs with simple ping command, HQ must ping each Routers.

1 comment:

  1. Maybe you should add "Task 1 only" to your title

    ReplyDelete