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

WIC 1ADSL question

Status
Not open for further replies.

beskee

Technical User
Nov 30, 2004
5
0
0
GB
HI

I just started to set up a WIC 1 ADSL interface on a cisco 1720 and I have two questions?

1) The adsl connection that I currently have needs a username and password, how do configure the router with this.

2) Is it possible to set the interface up to get the ip address dynamicaly from service provider if I don't have a static?

Thanks

Mathew
 
Something like :-

!
interface ATM0
no ip address
no ip mroute-cache
no atm ilmi-keepalive
pvc 1/50
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
dsl operating-mode auto
no fair-queue
hold-queue 244 in
!
interface FastEthernet0
ip address 10.0.0.1 255.0.0.0
ip nat inside
speed auto
full-duplex
!
interface Dialer0
ip address negotiated
ip nat outside
encapsulation ppp
dialer pool 1
dialer-group 1
ppp chap hostname your-username
ppp chap password xxxxxxxxxxxx
!
ip nat inside source list 7 interface Dialer0 overload
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer0
no ip http server
ip pim bidir-enable
!
!
access-list 7 permit 10.0.0.0 0.0.0.255
access-list 7 deny any
dialer-list 1 protocol ip permit
!

Chris.

**********************
Chris Andrew, CCNA, CCSA
chris@iproute.co.uk
**********************
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top