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!

Configuring 827 router to act as ADSL modem for peer-to-peer network 1

Status
Not open for further replies.

beeblebrox

Technical User
Jun 6, 2001
5
0
0
CA
I am trying to configure an 827 to hook up to ADSL to provide high speed internet access to a small(less than 10 PCs) peer-to-peer network. I have the following info from the ISP

PVC 0/35
Primary and Secondary DNS servers
static IP address
authentication type - pap

Do I need any more info?
I also want to use the DHCP functions in the router for the network.

Any suggestions? I have been working with Cisco and the ISP(less than helpful because I didn't pay them to configure the router at $250/hr)

 
You should know the encapsulation type. For example, is PPPoE (point-to-point protocol over Ethernet) being used.

You'll also need to need to know the DSL phone number, your username and password.

Most ISP's will have a "cheat sheet", FAQ Web site or both to inform you of the necessary parameters.
 
beeblebrox,

Take a look at the following thread, a little past half way down you should see my modified config which should have 99% of what you need. I use a dynamic ip address from my isp, where you use a static. Other than that, my config should work for you...

thread557-68058

Let me know if this helped! Good luck! :) -soupnazi-
"No soup for you!"
 
Here is the config that I used.

!
! No configuration change since last restart
!
version 12.1
no service pad
service timestamps debug uptime
service timestamps log datetime localtime show-timezone
no service password-encryption
!
hostname Cisco827
!
logging buffered 500000 informational
enable secret test2
!
!
!
!
!
clock timezone CST -6
ip subnet-zero
ip name-server 141.225.253.21
ip name-server 141.225.253.22
!
ip dhcp pool DHCP_POOL
import all
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 141.225.253.21
!
bridge irb
!
!
!
interface Ethernet0
ip address 10.10.10.1 255.255.255.0
no ip directed-broadcast
ip nat inside
no cdp enable
!
interface ATM0
no ip address
no ip directed-broadcast
no atm ilmi-keepalive
pvc 8/35
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
bundle-enable
bridge-group 1
hold-queue 208 in
!
interface Dialer1
ip address negotiated
no ip directed-broadcast
ip nat outside
ip irdp
encapsulation ppp
dialer pool 1
no cdp enable
ppp chap hostname jdoe
ppp chap password 7 1419171F33172F3932
!
interface BVI1
ip address dhcp client-id Ethernet0
no ip directed-broadcast
ip nat outside
!
ip nat inside source list 1 interface Dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer1
no ip http server
!
access-list 1 permit 10.10.10.0 0.0.0.255
access-list 101 permit ip any any precedence critical
no cdp run
bridge 1 protocol ieee
bridge 1 route ip
!
line con 0
exec-timeout 120 0
transport input none
stopbits 1
line vty 0 4
exec-timeout 0 0
password test
login
!
sntp server 141.225.223.243 version 3
sntp broadcast client
scheduler max-task-time 5000
end
 
Soupnazi, thanks for the config. With a bit of tweaking and correction of my own typos, it is working great. Pas de probleme
 
Great!! Glad I was able to help! It's nice when things work isn't it?? :)
-soupnazi-
"No soup for you!"
 
My config is very similar to this. I have a couple of annoying problems. I can only access websites, ping from Dos, and check email the first 5 minutes after the router is rebooted, although I can still ping from the router.

Any Clue what is going on ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top