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

Cisco 1701 on BT

Status
Not open for further replies.

brand1068

IS-IT--Management
Apr 9, 2003
24
GB
Hi, im having a mare tryingt o setup a 1701 on a bt ADSL line. I've posted the config below and would be very greatful if someone could take a look.

Best,
Chris

*********************************************************

Using 2695 out of 29688 bytes
!
version 12.3
no service pad
service tcp-keepalives-in
service tcp-keepalives-out
service timestamps debug datetime msec localtime show-timezone
service timestamps log datetime msec localtime show-timezone
service password-encryption
service sequence-numbers
!
hostname yourname
!
boot-start-marker
boot-end-marker
!
security authentication failure rate 3 log
security passwords min-length 6
logging buffered 51200 debugging
logging console critical
enable secret 5 $1$EITJ$LlN1whayo4jySY/XmRNTL/
!
clock timezone PCTime 0
clock summer-time PCTime date Mar 30 2003 1:00 Oct 26 2003 2:00
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
no aaa new-model
ip subnet-zero
no ip source-route
!
!
ip dhcp excluded-address 10.10.10.1
!
ip dhcp pool sdm-pool1
import all
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
!
!
ip tcp synwait-time 10
ip domain name ************
no ip bootp server
ip cef
ip ips po max-events 100
ip ssh time-out 60
ip ssh authentication-retries 2
no ftp-server write-enable
!
!
!
username *********** privilege 15 secret 5 ******************
!
!
!
!
!
interface ATM0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip route-cache flow
no atm ilmi-keepalive
dsl operating-mode auto
!
interface ATM0.1 point-to-point
pvc 0/38
encapsulation aal5mux ppp dialer
dialer pool-member 1
!
!
interface BRI0
no ip address
no ip redirects
no ip unreachables
no ip proxy-arp
ip route-cache flow
shutdown
no cdp enable
!
interface FastEthernet0
description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-10/100 Ethernet$$ES_LAN$$FW_INSIDE$
ip address 10.10.10.1 255.255.255.0
no ip redirects
no ip unreachables
no ip proxy-arp
ip route-cache flow
speed auto
no cdp enable
!
interface Dialer0
ip address 217.37.158.134 255.255.255.248
encapsulation ppp
dialer pool 1
dialer-group 1
no cdp enable
ppp authentication chap callin
ppp chap hostname *********************
ppp chap password *********************
!
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer0
ip http server
ip http authentication local
ip http secure-server
ip http timeout-policy idle 5 life 86400 requests 10000
!
!
!
logging trap debugging
dialer-list 1 protocol ip permit
no cdp run
!
!
control-plane
!
banner login ^CAuthorized access only!
Disconnect IMMEDIATELY if you are not an authorized user!^C
!
line con 0
login local
transport output telnet
line aux 0
login local
transport output telnet
line vty 0 4
privilege level 15
login local
transport input telnet ssh
line vty 5 15
privilege level 15
login local
transport input telnet ssh
!
scheduler allocate 4000 1000
scheduler interval 500
end
 
Your config isnt correctly setup.

1. You are using a private subnet 10.10.10.0/24 on your LAN interface FastEthernet0. Doing so, u need the router configure with NAT.

f.e add the follwing commands.
!
Interface Dialer0
ip nat outside
!
and

!
ip nat inside source list 1 interface Dialer0 overload
!
!
access-list 1 permit 10.10.10.0 0.0.0.255
dialer-list 1 protocol ip permit
!

2. U have assigned an ip ifrom /29 subnet to your dialer interface, which is possible but u have to make with your isp if this is the correct ip. It might be possible u can't just pick a random free ip from this range.

If u want the public subnet 217.37.158.128/29 to be directly connected on the LAN interface Fa0, u could use something like this.

f.e add following commands

!
interface Dialer0
ip unnumbered FastEthernet0
!

!
interface FastEthernet0
ip address 217.37.158.134 255.255.255.248
!


Furthermore your post implies you have a problem, if so , it will be usefull to provide more information about what the problem exactly is and what u have tested yourself so far.

greetings,

Fatty



 
Hi m8.

I've been (trying) to set it up via the cisco sdm.

How do i add the commands you suggested ?

The eventual setup will be your number 2 it should have an external IP that just routes everything to the network. I have brought it home to try and get to grips with it as i couldnt get anything out of it at work :)

Currently I looks like its connected (at least the sdm shows that) but i cant get any traffic though.

Best,
Chris
 
Hi brand1068,

Personally, I never worked with cisco sdm, I suggest you just use CLI connecting by console. Just connect a pc from com port to console port on the cisco and use f.e. hyper terminal.

Just copy paste commands below in terminal.

en
config t
!
interface Dialer0
ip unnumbered FastEthernet0
!
interface FastEthernet0
ip address 217.37.158.134 255.255.255.248
!

ps depending on how your ISP has implemented this type of service in their network, u might need to change the ip adress used.

If this still doesnt work u could try the following.

!
interface Dialer0
ip address negotiated
!
!
interface FastEthernet0
ip unnumbered Dialer0
!

In this case your ISP will assign probably the right ip adress to your router using radius.

Let me know if this works.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top