Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Cisco 1700 on EsatBT config help please

Options
  • 26-07-2005 10:05pm
    #1
    Registered Users Posts: 755 ✭✭✭


    Hey guys,

    Bear with me here as this is the first Cisco router I've played with. Plenty of experience with Zyxels but that's hardly the same thing :).

    Basically I have EsatBT DSL at home and got hold of a Cisco 1721 router with DSL WIC 1ADSL in it from work to mess with. This was functioning on a site up to the other day so there's no faults with it or anything.

    I didn't know the enable password so had to reset it and start from scratch with configuration. I've copied from here there and everywhere and got to the following configuration but it isn't connecting properly.
    Building configuration...
    
    Current configuration : 955 bytes
    !
    version 12.3
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    !
    hostname Router
    !
    enable secret 5 $1$t2kF$udKN0mGGrkr0pPrcfGZnf/
    !
    no aaa new-model
    ip subnet-zero
    !
    !
    ip name-server 194.125.2.240
    ip name-server 159.134.237.6
    !
    vpdn enable
    !
    vpdn-group 1
     request-dialin
      protocol pppoe
    !
    !
    !
    !
    !
    interface ATM0
     no ip address
     no atm ilmi-keepalive
     pvc pvc 8/35
      encapsulation aal5snap
      pppoe-client dial-pool-number 1
     !
     dsl operating-mode auto
    !
    interface FastEthernet0
     ip address 192.168.1.254 255.255.255.0
     speed auto
    !
    interface Dialer1
     ip address negotiated
     encapsulation ppp
     dialer pool 1
     dialer remote-name redback
     dialer-group 1
     ppp authentication pap chap callin
     ppp chap hostname harrisondsl
     ppp chap password 0 password
    !
    ip classless
    ip route 0.0.0.0 0.0.0.0 Dialer1
    no ip http server
    !
    !
    !
    !
    line con 0
    line aux 0
    line vty 0 4
     login
    !
    no scheduler allocate
    !
    end
    

    I'm gettting this as it tries to connect every few seconds -

    *Mar 1 05:30:18.743: %DIALER-6-BIND: Interface Vi1 bound to profile Di1
    *Mar 1 05:30:18.747: %LINK-3-UPDOWN: Interface Virtual-Access1, changed state to up
    *Mar 1 05:30:18.839: %DIALER-6-UNBIND: Interface Vi1 unbound from profile Di1
    *Mar 1 05:30:18.843: %LINK-3-UPDOWN: Interface Virtual-Access1, changed state to down


    So can anybody point me in the right direction? If any debug info would help let me know and I'll post it. I'm going through the CCNA material at the moment but I'd like to get this online so I can play with things as I go through.



    Thanks very much for any help!
    Philip


Comments

  • Registered Users Posts: 755 ✭✭✭Zenith74


    Never mind, sorted it out. Esat passwords have a @iolbb at the end. Not the first time I've been caught out by that :(.

    Got to get NAT up and going next :)...


  • Registered Users Posts: 562 ✭✭✭ro2


    Here's the standard Eircom.net config with the NAT commands:
    Router#sh run
    Building configuration...
    
    Current configuration : 1896 bytes
    !
    version 12.2
    no service pad
    service timestamps debug uptime
    service timestamps log uptime
    service password-encryption
    !
    hostname Router
    !
    enable secret 5 $1$c2sdfs$Zx7uWhXsdfW0sdfsdfd/
    !
    ip subnet-zero
    ip name-server 159.134.237.6
    ip name-server 159.134.248.17
    !
    vpdn enable
    !
    vpdn-group 1
    request-dialin
    protocol pppoe
    !
    !
    !
    !
    interface Ethernet0
    ip address 10.252.234.1 255.255.255.0
    ip nat inside
    ip tcp adjust-mss 1452
    hold-queue 100 out
    !
    interface ATM0
    no ip address
    no atm ilmi-keepalive
    pvc 8/35
    pppoe-client dial-pool-number 1
    !
    dsl operating-mode auto
    !
    interface Dialer0
    no ip address
    !
    interface Dialer1
    ip address negotiated
    ip nat outside
    encapsulation ppp
    dialer pool 1
    dialer remote-name redback
    dialer-group 1
    ppp authentication pap chap callin
    ppp chap hostname corpsup
    ppp chap password 7 1418000A02032F7870
    !
    ip nat inside source static tcp 10.252.234.10 25 194.125.155.90 25 extendable
    ip classless
    ip route 0.0.0.0 0.0.0.0 Dialer1
    ip http server
    !
    !
    access-list 10 permit any
    !
    line con 0
    exec-timeout 120 0
    stopbits 1
    line vty 0 4
    access-class 23 in
    exec-timeout 120 0
    password 7 p012321f3423c
    login
    !
    scheduler max-task-time 5000
    end
    


Advertisement