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!

Configuring ADSL card on Cisco 2691 Router

Status
Not open for further replies.

skk391

Technical User
Mar 3, 2009
332
GB
Hi all,

I have a 2691 router that I use for internal routing. I have installed an ADSL card into a spare slot. I need some guidelines on how to configure it so that I can provide internet connection to one of the subnets.

I have done a little reading... But wanted to put it pass this forum...

I need to configure the ATM interface I take it that this is the card interface itself.

Then map this to the dialler 1 interface ? unsure what this is. Is it here where I enter in the internet connection details

Then configure NAT ?

Thanks

 
Just a little update..

I have got the following details from my ISP:
encap type
vpi
vci
static ip
auth

I take it that I need to confirm the ATM card with these details but I am unsure what the dialler int is and how to config it?

 
I am uk based and we set our DSL's like this.

interface ATM0 (SLOT NUMBER)
no ip address
no atm ilmi-keepalive
pvc 0/38
encapsulation aal5mux ppp dialer
dialer pool-member 1

interface Dialer1
description *** ADSL ON BT NUMBER XXXX XXXX ***
ip address negotiated (May be different for your ISP)
ip nat outside (If required)
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp chap hostname "username"
ppp chap password "password
 
Thanks TheProvider...

any chance that you will be able to give me some background on this config... trying to work out what is going to so that I understand it better. Is the ATM the actual ADSL card in the router and what is the dialer interface. What is its role?

I take it that the 'dialer pool-memener 1 'maps' the ATM interface to the dialer interface ?

Many thanks
 
The ATM is indeed the actual card. The Dialer interface is as such virtual.

The Dial pool member is just using what is stated in the dialer as Dialer pool,
 
you would also need an ip route

0.0.0.0 0.0.0.0 dialer 1 and a specific NAT statement if you are natting.
 
Thanks,

The setup is at work so I get it configured hopefully tomorrow. May have some questions for you then!

thanks again ...
 
Hi guys. I have the following config and Im trying to get the ADSL card installed and configured. Can anyone help me please.
-----------------------------------------------------------------
Router#show config
Using 1465 out of 57336 bytes
!
version 12.4
service config
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
!
resource policy
!
ip cef
!
!
no ip dhcp use vrf connected
ip dhcp excluded-address 192.168.1.1 192.168.1.30
ip dhcp excluded-address 192.168.0.1 192.168.0.20
!
ip dhcp pool *********
network 192.168.0.0 255.255.255.192
domain-name **********
dns-server 208.67.222.222
default-router 192.168.0.5
lease 4
!
!
!
!
!
!
!
!
!
!
!
interface ATM0/0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
pvc 0/38
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
!
interface FastEthernet0/0
ip address 192.168.0.5 255.255.255.192
ip nat inside
ip virtual-reassembly
duplex auto
speed auto
!
interface FastEthernet0/1
ip address 10.1.1.116 255.0.0.0
shutdown
duplex auto
speed auto
!
interface Dialer1
description **ADSL ON BT 346346234646346 **
ip address <static ip from ISP 255.255.255.254>
ip nat outside
ip virtual-reassembly
encapsulation ppp
dialer pool 1
dialer-group 1
ppp chap hostname <username from ISP>
ppp chap password 0 <password from ISP>
!
ip route 0.0.0.0 0.0.0.0 Dialer1
!
!
ip http server
no ip http secure-server
ip nat inside source list 1 interface Dialer1 overload
!
access-list 1 permit 192.168.0.0 0.0.0.255
!
!
!
!
!
control-plane
!
!
!
!
line con 0
line aux 0
line vty 0 4
!
!
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top