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

Cisco 857 lan connectivity issues 1

Status
Not open for further replies.

jundalabee

IS-IT--Management
Nov 19, 2003
35
0
0
Hi,

I have been trying to configure my 857 via both gui and CLI. I'm not CLI expert, but I can get my way around

I can ping the default gateway from the router, but from a DHCP or static client I cant ping anything past the router.

Any ideas? Here's my config. Any help is appreciated.

!version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname <>
!
boot-start-marker
boot-end-marker
!
logging buffered 51200 warnings
!
no aaa new-model
!
resource policy
!
no ip dhcp use vrf connected
ip dhcp excluded-address 10.10.10.1
!
ip dhcp pool sdm-pool
import all
network 10.10.10.0 255.255.255.248
default-router 10.10.10.1
dns-server 139.130.4.4
lease 0 2
!
!
ip cef
ip domain name yourdomain.com
ip name-server 139.130.4.4
!
!
crypto pki trustpoint TP-self-signed-2714987535
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-2714987535
revocation-check none
rsakeypair TP-self-signed-2714987535
!
!
crypto pki certificate chain TP-self-signed-2714987535
certificate self-signed 01
3082024F 308201B8 A0030201 02020101 300D0609 2A864886 F70D0101 04050030
31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274
69666963 6174652D 32373134 39383735 3335301E 170D3032 30333031 30323037
33305A17 0D323030 31303130 30303030 305A3031 312F302D 06035504 03132649
4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D32 37313439
38373533 3530819F 300D0609 2A864886 F70D0101 01050003 818D0030 81890281
8100A7CA B4E70162 A0C25770 BA25C26B 6EADF412 77BB7D4B 5A0BF55C C5FBF727
D6DC4FD9 81FFF395 98C6F47A 8DBB608C 2F4119AF EE25B46C ADD294AA 1261872E
383FB720 1FFBF89A 028DC7EA A32B0D61 D932ABE9 4FF65102 14DF48E5 A634EE0E
768EE239 1CAA011B 49461638 615EBB24 9D4D7047 646B9722 5D92CD8C 9EB769E0
0E990203 010001A3 77307530 0F060355 1D130101 FF040530 030101FF 30220603
551D1104 1B301982 17796F75 726E616D 652E796F 7572646F 6D61696E 2E636F6D
301F0603 551D2304 18301680 14EAF3A4 27C5DC11 2D2EF27E A70B368D A5A70299
25301D06 03551D0E 04160414 EAF3A427 C5DC112D 2EF27EA7 0B368DA5 A7029925
300D0609 2A864886 F70D0101 04050003 81810089 9336B648 A4610B1D 8C5CAFA5
CA78BA7B 7546E85C DC774167 69BE6C24 F7AC499D 5ABA054D 6B534B1A 97025B78
861B6F94 87A0824A F261E957 C30B3ADA 36EF6BC8 0DBF2925 4D649BC0 585BB12B
552B5584 32679F74 B20BA069 E5455E45 3BF9914C 3D0F09C4 F199B019 BC8634EF
3529EC21 E1B62A2E CD8F96B2 6D5FE5CA 87FD7B
quit
username <> privilege 15 secret 5 <>
!
!
!
!
!
interface ATM0
no ip address
no atm ilmi-keepalive
dsl operating-mode auto
!
interface ATM0.1 point-to-point
description $ES_WAN$
no snmp trap link-status
pvc 8/35
pppoe-client dial-pool-number 1
!
!
interface FastEthernet0
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface Vlan1
description $ETH-SW-LAUNCH$$INTF-INFO-HWIC 4ESW$
ip address 10.10.10.1 255.255.255.248
ip tcp adjust-mss 1412
!
interface Dialer0
ip address negotiated
ip mtu 1452
encapsulation ppp
dialer pool 1
dialer-group 1
no cdp enable
ppp authentication chap callin
ppp chap hostname <>
ppp chap password 0 <>
!
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 60 life 86400 requests 10000
!
dialer-list 1 protocol ip permit
no cdp run
!
control-plane
!
banner login ^C
-----------------------------------------------------------------------
Cisco Router and Security Device Manager (SDM) is installed on this device.
This feature requires the one-time use of the username "cisco"
with the password "cisco". The default username and password have a privilege level of 15.

Please change these publicly known initial credentials using SDM or the IOS CLI.
Here are the Cisco IOS commands.

username <myuser> privilege 15 secret 0 <mypassword>
no username cisco

Replace <myuser> and <mypassword> with the username and password you want to use.

For more information about SDM please follow the instructions in the QUICK START
GUIDE for your router or go to -----------------------------------------------------------------------
^C
!
line con 0
login local
no modem enable
line aux 0
line vty 0 4
privilege level 15
login local
transport input telnet ssh
!
scheduler max-task-time 5000
end
 
you are missing your NAT statements:
under dialer0 add:
Code:
ip nat outside
under vlan1 add:
Code:
ip nat inside
create an ACL:
Code:
access-list 101 permit ip any any
now apply it:
Code:
ip nat inside source list 101 interface dialer0 overload

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top