hi... i am usin packet tracer 5.0.. i hav connect two
routers A and B. A has 200.100.25.100 and 1.0.0.1 and router
B has 200.100.50.100 and 1.0.0.2... i hav connected 1.0.0.1
and 1.0.0.2... now i want to route 200.100.25.100 and
200.10.50.100 usin rip.. i enable rip in both the routers...
but whn i give the command show ip route... i jus get this

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 A# so can
sombody tell me where i hav gone wrong...

thanku

Answers were Sorted based on User's Feedback



hi... i am usin packet tracer 5.0.. i hav connect two routers A and B. A has 200.100.25.100 and 1.0..

Answer / shahin

Hi Buddy... same configuration i did in packet tracer... i m
sending u the "sh run" output.. check it out.. watever i got
to know from ur question is ... i didn't advertise the
1.0.0.0 network, which is i ur serial interface..!!!

Now check the shor running-configuration of ROUTER A -

Router#sh running-config
Building configuration...

Current configuration : 637 bytes
!
version 12.4
no service password-encryption
!
hostname Router
!
!
!
!
!
ip ssh version 1
!
!
interface FastEthernet0/0
ip address 200.100.25.100 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial1/0
ip address 1.0.0.1 255.0.0.0
clock rate 128000
!
interface Serial1/1
no ip address
shutdown
!
interface Serial1/2
no ip address
shutdown
!
interface Serial1/3
no ip address
shutdown
!
interface Vlan1
no ip address
shutdown
!
router rip
network 1.0.0.0
network 200.100.25.0
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
login
!
!
end


Now check the "show running-configuration" of ROUTER B -

Router#sh running-config
Building configuration...

Current configuration : 618 bytes
!
version 12.4
no service password-encryption
!
hostname Router
!
!
!
!
!
ip ssh version 1
!
!
interface FastEthernet0/0
ip address 200.100.50.100 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial1/0
ip address 1.0.0.2 255.0.0.0
!
interface Serial1/1
no ip address
shutdown
!
interface Serial1/2
no ip address
shutdown
!
interface Serial1/3
no ip address
shutdown
!
interface Vlan1
no ip address
shutdown
!
router rip
network 1.0.0.0
network 200.100.50.0
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
login
!
!
end


Now buddy, check it out carefully...!!!!

Is This Answer Correct ?    9 Yes 1 No

hi... i am usin packet tracer 5.0.. i hav connect two routers A and B. A has 200.100.25.100 and 1.0..

Answer / harish kumar

RouterA(config)#int e0
RouterA(config-if)#ip add 200.100.25.100 255.255.255.0
RouterA(config-if)#no shut
RouterA(config-if)#s0
RouterA(config-if)#int s0
RouterA(config-if)#ip add 1.0.0.1 255.0.0.0
RouterA(config-if)#no shut
RouterA(config-if)#clock rate 64000
RouterA(config-if)#exit
RouterA(config)#router rip
RouterA(config-router)#network 200.100.25.0
RouterA(config-router)#network 1.0.0.0
RouterA(config-router)#exit

RouterB(config)#int e0
RouterB(config-if)#ip add 200.10.50.100 255.255.255.0
RouterB(config-if)#no shut
RouterB(config-if)#int s0
RouterB(config-if)#ip add 1.0.0.2 255.0.0.0
RouterB(config-if)#no shut
RouterB(config-if)#exit
RouterB(config)#router rip
RouterB(config-router)#network 200.10.50.0
RouterA(config-router)#network 1.0.0.0
RouterA(config-router)#exit



i assume S/0 interface of router A is DCE.

Is This Answer Correct ?    6 Yes 0 No

hi... i am usin packet tracer 5.0.. i hav connect two routers A and B. A has 200.100.25.100 and 1.0..

Answer / karan

hiii buddy
when u enale rip in ur router
after that u hav to giv network address
like this
router(config)#router rip
router(config-router)#network 200.100.25.0
router(config-router)#network 1.0.0.0
router(config-router)#exit

Is This Answer Correct ?    5 Yes 1 No

hi... i am usin packet tracer 5.0.. i hav connect two routers A and B. A has 200.100.25.100 and 1.0..

Answer / anju

ok ok... i solved it... i cudnt do it coz i din set the clock rate... :)... a silly mistake but its important... :)... thanku all

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More CCNA Interview Questions

Identify the 3 guidelines for routers in the same autonomous system? A.) Must be configured for RIP B.) Interconnected C.) Assigned the same autonomous system number D.) Configured for the same routing protocol E.) Must be same model of router

1 Answers  


Which command would show all Ethernet interfaces with IPX configured on them? A.) show interface ipx ethernet B.) show ipx interface C.) show ipx interface ethernet D.) show ipx E.) show version F.) show run

1 Answers  


Which of the following are Session Layer standards? A.) ASCII and EBCDIC B.) MPEG and MIDI C.) NFS and SQL D.) JPEG and PICT

2 Answers  


Given the following IP address from the Class B address range 172.35.21.12. Your network plan requires no more than 126 hosts on a shored. Which value should you use as the subnet mask? A. 255.255.0.0 B. 255.255.128.0 C. 255.255.126.0 D. 255.255.255.128 E. 255.255.255.252

5 Answers  


Identify the command to display the configured IP routing protocols? A.) show protocols B.) show protocols all C.) show routing-protocols D.) show ip protocols

2 Answers  






Identify 3 methods not used to prevent routing loops? A.) Holddown timers B.) Sequence numbers C.) Triggered updates D.) Split horizon E.) Area hierarchies F.) Order of router startup

2 Answers  


Identify the command to determine if CDP is enabled? A.) show enable cdp B.) show cdp enabled C.) show cdp run D.) show cdp

1 Answers  


Define load balancing?

0 Answers  


Hi Friend. i have to let you know that now i have been selected for cisco india in bangalore. i am thanking to all of you guys that u have been posted such good question and the respective answer. from today i will be not able to visit this site on regular basic and hopeing that you will continue to post the question.the question you are posting is not very usefull to you but also usefull to another. i am again thanking to all of you and hope for best for your feature. Jitendera kumar sinha Network engineer-L2 cisco india Bangalore

0 Answers  


what is nat.types of nat

3 Answers  


How many access lists are allowed per interface? A. One per port, per protocol B. Two per port, per protocol C. Unlimited D. Router interface +1 per port.

6 Answers  


What is true about frame-relay DLCI? A.) DLCI represents a single physical circuit B.) DLCI is optional in all frame-relay networks C.) DLCI identifies a logical connection between DTE devices D.) DLCI is used to tag the beginning of a frame with VLAN information

1 Answers  


Categories