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

Simple soho setup

Status
Not open for further replies.

trismegistus

Technical User
Jun 14, 2002
81
GB
Hi

Does anybody have a simple working config that attaches a router to a BT ADSL modem (or other). The site is remote and I can't get the user to send me the config without truncating the text and making it unreadable.

The router is simply providing nat between a LAN and the dsl modem, but is not doing the job and I have no dsl facility to trial a config.

The dsl has genuine IP. We are using dhcp but no security enhancements etc. The router is a Soho71, but don't ask why we don't go straight into the dsl cloud from the router, its policy....
 
Hello - First of all the soho 71 is a dual ethernet router, so a modem is required to actually do the negotiation with the ISP. This why you cannot "go straight into the dsl cloud," which I am assuming you r referring to the DSLAM multiplexer. Basically this is the configuration you are looking for...I took this one from another thread actually. There was a few mistakes in the config orginally, but I added the changes. You need to find out the encapsulation type...in this case it is PPPOE. This is probably the most common on a DHCP ADSL line that I encounter. I do quite a bit of work with pacbell, on the business DSL side. They use AAL5snap encapsulation. Just so you know that this exact config may not work, there will be alterations.


current configuration: 1038 bytes
!
version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname router
!
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
ip subnet-zero
!
!
!
ip audit notify log
ip audit po max-events 100
vpdn enable
!
vpdn-group pppoe
request dialin
protocol pppoe
!
!
!
interface atm0
no ip address
no atm ilmi-keepalive
pvc 0/35
pppoe-client dial-pool-number 1
!
dsl operating-mode auto
!
interface fastethernet0
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip tcp adjust-mss 1452
speed auto
!
interface dialer1
mtu 1492
ip address negotiated
ip nat outside
encapsulation ppp
dialer pool 1
ppp chap hostname x
ppp chap password 0
ppp pap sent-username x password 0
!
ip nat inside souce list 1 interface dialer1 overload
ip classless
ip route 0.0.0.0 0.0.0.0 dialer1
no ip http server
ip pim bidir-enable
!
!
access-list 101 permit ip 192.168.1.0 255.255.255.0 any
!
!
line con 0
line aux 0
line vty 0 4
no scheduler allocate
end


brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top