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!

Setting up a router with DSL 3

Status
Not open for further replies.

marcvu

MIS
Mar 15, 2001
14
0
0
US
Just wanted to know if it is possible to setup a router with a DSL line or do you have to use the DSL router provided?
 
Sorry.. I've been distracted with other issues based in NY. I think I have my head back on track again ;-)

Were you able to debug the PPP connection ?

By the way.. you said they wont give you support unless you use their modem.. how's their support now ? or have they washed their hands of it?

Have you tried the static map via NAT yet?

MikeS Find me at
"Diplomacy; the art of saying 'nice doggie' till you can find a rock" Wynn Catlin
 
hi!

I want to use PPP over Ethernet with a Cisco 2514. The Cisco Website told me, that this is not supported. What du you think? Is it possible and with ios I need?

Thank you

vy Markus
 
Ok, I've been having the same sort of problem I guess you could say. The NAT entries are in properly and the access lists are put in correctly (at least I think they are), but It still won't work properly.

I've done some packet sniffing and it seems that things are getting through. It gets a SYN, then sends a SYN/ACK, and then receives a RESET back. Networking isn't really my area of specialty...

This is what the running config on my 827 looks like:

Code:
version 12.1
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname DSLRouter
!
enable secret ****************
enable password *****************
!
!
!
!
!
clock timezone CDT -6
clock summer-time CDT recurring
ip subnet-zero
no ip source-route
no ip finger
no ip domain-lookup
ip name-server 216.165.128.161
ip name-server 216.165.128.165
!
!
interface Ethernet0
 ip address 10.10.10.1 255.255.255.0
 ip nat inside
 no ip route-cache
 no ip mroute-cache
!
interface ATM0
 no ip address
 no ip route-cache
 no ip mroute-cache
 no atm ilmi-keepalive
 pvc 0/100
  encapsulation aal5mux ppp dialer
  dialer pool-member 1
 !
 bundle-enable
 dsl operating-mode auto
 hold-queue 224 in
!
interface Dialer0
 bandwidth 1544
 ip address negotiated
 ip nat outside
 encapsulation ppp
 dialer pool 1
 dialer-group 1
 ppp pap sent-username mnuahs password 7 *************
!
ip nat inside source list 1 interface Dialer0 overload
ip nat inside source static udp 10.10.10.50 6257 interface Dialer0 6257
ip nat inside source static tcp 10.10.10.50 6699 interface Dialer0 6699
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer0
no ip http server
!
access-list 1 permit any
dialer-list 1 protocol ip permit  

---various terminal options and such-----

sntp server 132.163.4.101
scheduler max-task-time 5000
end

Help?
 
Ehh, nevermind.... s-) Boy do I feel stupid now... Forgot to write it and reload....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top