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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Configuring a 2514 Router

Status
Not open for further replies.

Ludoggg

MIS
Oct 25, 2002
54
US
I need some assistance. I have my workstation plugged directly into my E0 interface on my router. When I do a
sh int e0, I get Ethernet0 is up, line protocol is down. What all should be looking to have this interface up and up? From a cabling perspective, I should be using a crossover from my workstation to my router? Let me know. Thanks.

kumputirgeek, CHDP, Network +
 
I now have my ethernet interfaces up and up. Had to disable keepalives. Now my issue is these DB15 to RJ45 adapters. I have tested my crossover cable and that works but I am not getting a link light on my PC NIC. I purchased adapter from pccables.com but I need to know the correct config for these adapters. Here is what I used to set the adapters.


kumputirgeek, CHDP, Network +
 
Hi.

For what do you need the adapter?, if you need to connect more PCs to the router just use a switch and you are ready to go.
 
he needs the adapters because the 2514 has aui and not rj45.

i dont think what you have will work.
you need ethernet trancievers to do the conversion from the aui to ethernet.

also be sure to check that your pc is set to auto negotiate or at least be set to 10mb.
 
I now have my transceivers on both my ethernet interfaces for my 2514 router. I have configured everything where I can ping all my DSL modem and my 2003 server but I can't get any web pages. My setup goes, wall | DSL modem| 2514 router | server. Like I said, eveything pings internally, just can get any web pages. No ACL's are configure unless I need to do that next. I was thinking DNS but not sure.

kumputirgeek, CHDP, Network +
 
your probably missing the nat config now...
if you want to post your config we can look at it and help more..
 
User Access Verification

Password:
Luther>en
Password:
Luther#sh ru
Building configuration...

Current configuration:
!
version 11.2
no service password-encryption
no service udp-small-servers
no service tcp-small-servers
!
hostname Luther
!
enable secret 5 $1$HCUH$hScHEMLc.SFyBJpUgNI6x1
!
ip subnet-zero
ip name-server 205.171.3.65
ip name-server 192.168.0.1
!
interface Ethernet0
ip address 192.168.1.4 255.255.255.0
ip access-group 102 in
ip access-group 101 out
no keepalive
!
interface Ethernet1
ip address 192.168.0.4 255.255.255.0
ip access-group 101 out
no keepalive
!
interface Serial0
no ip address
shutdown
!
interface Serial1
no ip address
shutdown
!
no ip classless
ip route 192.168.0.0 255.255.255.0 Ethernet1
!
line con 0
line aux 0
line vty 0 4
password thetapsi
login
!
end

Luther#
Luther#

kumputirgeek, CHDP, Network +
 
your missing a default route...
ip route 0.0.0.0 0.0.0.0 eth1
assuming eth1 is your wan interface.


also your
ip route 192.168.0.0 255.255.255.0 Ethernet1

is redundant because that network is a connected route...

look at your routing table before and after removing that command and youll see its still there.
 
Still no web access.

User Access Verification

Password:
Router>en
Password:
Router#sh run
Building configuration...

Current configuration:
!
version 11.2
no service password-encryption
no service udp-small-servers
no service tcp-small-servers
!
hostname Router
!
enable secret 5 $1$F3qs$morY70L4mcI8hy2SLv
!
!
interface Ethernet0
ip address 192.168.1.4 255.255.255.0
no keepalive
!
interface Ethernet1
ip address 192.168.0.4 255.255.255.0
no keepalive
!
interface Serial0
no ip address
shutdown
!
interface Serial1
no ip address
shutdown
!
router rip
network 192.168.0.0
network 192.168.1.0
!
no ip classless
ip route 0.0.0.0 0.0.0.0 Ethernet1
!
line con 0
line aux 0
line vty 0 4

kumputirgeek, CHDP, Network +
 
Router#sh 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, * - candidate defaul
U - per-user static route, o - ODR

Gateway of last resort is 0.0.0.0 to network 0.0.0.0

C 192.168.0.0/24 is directly connected, Ethernet1
C 192.168.1.0/24 is directly connected, Ethernet0
R x.x.x.x/24 [120/1] via 192.168.0.1, 00:00:18, Ethernet1
S* 0.0.0.0/0 is directly connected, Ethernet1
Router#

kumputirgeek, CHDP, Network +
 
ok before we go anyfurther..
are you on some kind of dhcp dsl? or are you doing PPPOE?

if pppoe then why are you running it this way? it would be much easier to run your dsl modem in bridged mode and create the dialer interface on the 2514 to connect to the internet.

i doubt your dsl modem likes to do any routing and youll probably have to do a nat on your 2514 to the modem which will end up natting again to go to the internet.

so right now...
if you log into the modem... does it have your lan routes in its routing table?
can you ping your wan ip on your modem from your workstation?
 
Thanks for all your help. Everything works now. I was able to configure RIP on both routers. The ultimate fix for this was configuring a default route to the public IP of DSL modem ip route 0.0.0.0 0.0.0.0 x.x.x.259.


kumputirgeek, CHDP, Network +
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top