.... This time I'll add the attachment At Tuesday, 3/04/2001 04:10 PM (+1000), Matt Hyne wrote: >For those that requested it, here is the config I have successfully used on the >Telstra ADSL network. > >This configuration has been tested on the 827 series but should also work on any >router with an ADSL WIC card. > >Ensure that you set up the enable and secret passwords and I also suggest username >security. > >I have also added PAT translations to show you how to get your Web server and SSH >server to respond to the Telstra allocated IP address. > >I have been using a dynamic DNS service (dns2go) on a Linux box inside so I can >telnet to the router's public dynamic IP address using a FQDN. > >Using the PAT translations in the config, this should also work for setting up your >own mail server too since Telstra don't plan to offer private IP addresses on their >ADSL network for some time and they will be expensive when they do. > >Hope this helps. > >Matt > > >-- >SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/ >More Info: http://slug.org.au/lists/listinfo/slug
! ! Cisco DSL router configuration for the TELSTRA BIGPOND ADSL NETWORK. ! ! Should work for 827, 1700, 2600 and 3600 series with ADSL WIC cards. ! ! This assumes your inside network is using addresses 10.1.1.0/24 and ! that these addresses are either assigned by a local DHCP server (ie linux) ! or they are static. You can also run the DHCP service on IOS. ! ! While for sites within Sydney the PVC settings on the ATM interface will ! work, I am not sure about other states or cities - you may need to talk to ! your local exchange (they are the only ones that will know for sure). ! ! [EMAIL PROTECTED] ! ! version 12.1 no service pad service timestamps debug uptime service timestamps log uptime service password-encryption ! hostname adsl-gw ! ! clock timezone AEST 10 ip subnet-zero ! ! interface Ethernet0 ip address 10.1.1.2 255.255.255.0 ip nat inside no ip mroute-cache ! ! ! See notes above about the correct VPI/VCI numbers (PVC) ! interface ATM0 no ip address no ip mroute-cache no atm ilmi-keepalive pvc 8/35 encapsulation aal5mux ppp dialer dialer pool-member 1 ! bundle-enable dsl operating-mode auto hold-queue 208 in ! ! Enter your Telstra assigned username and password ! in the fields below. ! interface Dialer0 ip address negotiated ip nat outside encapsulation ppp dialer pool 1 no cdp enable ppp authentication chap callin ppp chap hostname USERNAME@bigpond ppp chap password PASSWORD ! ip nat inside source list 8 interface Dialer0 overload ! ! These fancy PAT translations allow internal machines to appear ! as the Telstra assigned IP address - it is not a good idea to open ! telnet/ftp - better using SSH. ! ip nat inside source static tcp 10.1.1.11 80 interface Dialer0 80 ip nat inside source static tcp 10.1.1.11 22 interface Dialer0 22 ! ip classless ip route 0.0.0.0 0.0.0.0 Dialer0 ! access-list 8 permit 10.1.1.0 0.0.0.255 ! line con 0 exec-timeout 120 0 login local transport input none stopbits 1 line vty 0 4 exec-timeout 0 0 password 7 SUPRESSED login local ! scheduler max-task-time 5000 end
