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

Cisco 806 to LYNKSYS router connection

Status
Not open for further replies.

SF18C

IS-IT--Management
Feb 5, 2002
187
0
0
IT
Forgive this probably obviously simple question but how do I get my router to find my network. I have my network connected together with a linksys router, (I'm using it because it has 100MB connections). But my ISP connection comes into a Cisco 806 router using PPOE, I connected the WAN side of the Lynksys to the E0 interface on the Cisco. I can access the internet fine, but I can not ping any PC's on my network from the Cisco device, I'm tring to set up a Syslog server but the Cisco can't find the server. Any ideas?


/-----Cisco 806-------Lynksys Router-- /E1 E0| |WAN LAN \
WAN/ISP | | Home Network
Dynamic IP 10.10.10.1 10.10.10.2 192.168.1.X
From ISP


Current configuration : 1778 bytes
!
version 12.2
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname CiscoRouter
!
enable secret 5 **************
!
username ****** password *********
ip subnet-zero
ip name-server 192.168.1.100
ip dhcp excluded-address 10.10.10.1
ip dhcp excluded-address 10.10.10.1 10.10.10.9
!
ip dhcp pool CLIENT
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 192.168.1.100 212.185.253.9
netbios-name-server 192.168.1.100
!
vpdn enable
!
vpdn-group 1
request-dialin
protocol pppoe
!
!
!
!
interface Ethernet0
description LAN Side link to LYNKSYS
ip address 10.10.10.1 255.255.255.0
ip nat inside
ip tcp adjust-mss 1452
no cdp enable
hold-queue 32 in
hold-queue 100 out
!
interface Ethernet1
no ip address
pppoe enable
pppoe-client dial-pool-number 1
no cdp enable
!
interface Dialer1
ip address negotiated
ip mtu 1492
ip nat outside
encapsulation ppp
ip tcp adjust-mss 1452
dialer pool 1
dialer-group 1
ppp authentication chap pap callin
ppp chap hostname ********
ppp chap password ********
ppp pap sent-username ***** password *******
!
router rip
!
ip nat inside source list 102 interface Dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
ip http server
!
logging source-interface Ethernet0
access-list 70 permit 192.168.1.0 0.0.0.255
access-list 102 permit ip 10.10.10.0 0.0.0.255 any
dialer-list 1 protocol ip permit
!
line con 0
exec-timeout 120 0
stopbits 1
line vty 0 4
exec-timeout 0 0
login local
length 0
!
scheduler max-task-time 5000
end




 
Probably because the LinkSys is running NAT.


Try plugging the e0 to the INTERNAL side of the LynkSys, thereby only using the Switch. Of course, if you don't have DHCP set on the Cisco, you'd need to assign the 10.xx.xx.xx addresses to the computers. You'd also have to change the default route on the LynkSys


---SMR
 
You are doing NAT on the Cisco, and not on the Linksys, right? It looks like you are double NATing the traffic, once in the Cisco and once in the Linksys. But maybe, since RIP is on, you are learning the 192.168.1.0 network via RIP. Otherwise, the router won't know about the network.

My suggestion:
Turn off NAT in the Linksys, if possible.
Add the following route to the 800:
ip route 192.168.1.0 255.255.255.0 10.10.10.2

But the above solution will work, too, but you have to add the route. Otherwise, the 800 won't know where the network is, and will forward the traffic to the Dialer interface.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top