Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CCNA prep and Lab Environment

Status
Not open for further replies.

FunTechie

IS-IT--Management
Aug 11, 2003
12
US
Good morning all.
In preparation for an upcoming CCNA test, I have setup a lab environment using 2 Cisco 2600 and am simulating a Frame Relay connection using a cross-over T1 cable. Does anybody have some insight with this type of setup ?? The problem I'm experiencing is I can not send packets across the 2 serial ports. I have a laptop connected to each Ethernet port using a switch/hub. The serial interfaces can be pinged from the laptop on the existing router. Specifically, Router1(INSIDE) has a 192.168.101.1 address on the Ethernet port and the serial interface on the same router has an IP of 192.168.100.1/30. Router2(OUTSIDE) has a 192.168.102.1 address on it's Ethernet port and the serial interface has an IP of 192.168.100.2/30. If I use the "sho int s" command on each router, there appears to be packets traveling across but I can not get a response from either laptop confirming communications. If anybody has some insight, I would certainly appreciate the help. Below is my running-config for both routers.

OUTSIDE#sho run
Building configuration...

Current configuration:
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname OUTSIDE
!
!
!
!
!
!
ip subnet-zero
ip dhcp excluded-address 192.168.102.1
!
ip dhcp pool OUTSIDE
network 192.168.102.0 255.255.255.0
!
!
!
!
process-max-time 200
!
interface Ethernet0/0
ip address 192.168.102.1 255.255.255.0
no ip directed-broadcast
random-detect
!
interface Serial0/0
no ip address
no ip directed-broadcast
no ip mroute-cache
shutdown
!
interface Serial0/1
no ip address
no ip directed-broadcast
encapsulation frame-relay IETF
no ip mroute-cache
no keepalive
!
interface Serial0/1.1 point-to-point
ip address 192.168.100.2 255.255.255.252
no ip directed-broadcast
no ip mroute-cache
frame-relay interface-dlci 103
!
ip classless
ip route 192.168.101.0 255.255.255.0 192.168.100.1
no ip http server
!
!
line con 0
transport input none
line aux 0
line vty 0 4
login
!
!
end


INSIDE#sho run
Building configuration...

Current configuration : 908 bytes
!
version 12.1
no service single-slot-reload-enable
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname INSIDE
!
!
!
!
!
!
ip subnet-zero
ip dhcp excluded-address 192.168.101.1
!
ip dhcp pool INSIDE
network 192.168.101.0 255.255.255.0
!
!
!
!
interface Ethernet0/0
ip address 192.168.101.1 255.255.255.0
!
interface Serial0/0
no ip address
shutdown
no fair-queue
!
interface Serial0/1
no ip address
encapsulation frame-relay IETF
no ip route-cache
no ip mroute-cache
no keepalive
service-module t1 clock source internal
service-module t1 timeslots 1-24
!
interface Serial0/1.1 point-to-point
ip address 192.168.100.1 255.255.255.252
no ip route-cache
no ip mroute-cache
frame-relay interface-dlci 102
!
ip classless
ip route 192.168.102.0 255.255.255.0 192.168.100.2
ip http server
!
!
line con 0
line aux 0
line vty 0 4
login
!
end

Thanks !!!!!
 
It looks like you don't have any routing protocols defined. Try adding RIP.
router#config t
Enter configuration commands, one per line. End with CNTL/Z.
router(config)#router rip
router(config-router)#network 192.168.100.0
router(config-router)#network 192.168.101.0
and the same for the other router with its attached networks....


Thanks,

Matt Wray
MCSE, MCSA, MCP, CCNA

 
Thanks for the response Matt.
No, I did not have RIP turned on but I have managed to figure out that the problem was specific to the DLCI number being used. After changing the DLCI #, everything worked beautifully. I was just excited that everything seemed to work afterwards. Now, I intend to attached these routers to my network and offer Internet access. We'll see how that goes. Thanks again.

Ed
 
Hi Ed, could you tell me what was the problem if the DLCI #s you used, I can't see any. Please let me know as I found it interesting for future reference.
Thanks.

Ni
 
Hi Mattwray,

There's no need for routing protocol rip, the static routes have already been defined on both routers for the non-directly connected networks which are both the ethernet lan networks.

And Why shud DLCI numbers make a difference, just changing numbers shud not have made a difference. So cant understand how the number change helped



Vikram
SAP BASIS R3\IBM AIX\Tivoli Administrator, CCNA
 
Good morning Vikram and Ni.
Regarding the DLCI #'s, I have setup a simulated Frame-Relay connection between these 2 routers using a DLCI of 102 and 103. Please keep in mind that I am a newbie to routers and am learning as I go. With that said, using a Frame-Relay connection requires a DLCI # at each end asigned by the service provider. I think the DLCI #'s are different on each end in a live environment. However, in my case, I setup a simulated Frame-Relay and apparently the needed to use the same DLCI # for communication. It took me a week of play and reading through Tek-Tips to figure this out because I could see packets getting to each interface but could not understand why these packets would not go through. Anyway, after changing the DLCI #'s to 103 on bath ends, then I could send ping packets across the 3 networks and get a reponse. Does this help ??? If anybody has further insight into this, I would love to know more. Thanks.

Ed
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top