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

Cisco 1811 config help

Status
Not open for further replies.

joshuaEM

Technical User
Sep 9, 2010
4
0
0
US
Hey guys, I'm looking for some help with my Cisco 1811 config. I'll admit right now that I don't know what I'm doing so please be gentile.

Here's what I'm trying to do:

*Outside interface 0 is connected to Charter with a static public ip address.
*I want DHCP on the inside with a range from 192.168.1.100 - 250
*I want ports 2-9 to act as inside switch ports for the 192.168.1.x network.
*I want all private addresses to be able to access the internet via interface 0

Here's the current running config:

version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R-CHARTER-MID-01
!
boot-start-marker
boot-end-marker
!
no logging buffered
no logging console
enable password xxxxxxx
!
no aaa new-model
!
crypto pki trustpoint TP-self-signed-179046611
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-179046611
revocation-check none
rsakeypair TP-self-signed-179046611
!
!
crypto pki certificate chain TP-self-signed-179046611
certificate self-signed 01
30820257 308201C0 A0030201 02020101 300D0609 2A864886 F70D0101 04050030
30312E30 2C060355 04031325 494F532D 53656C66 2D536967 6E65642D 43657274
69666963 6174652D 31373930 34363631 31301E17 0D313030 39303931 39333733
365A170D 32303031 30313030 30303030 5A303031 2E302C06 03550403 1325494F
532D5365 6C662D53 69676E65 642D4365 72746966 69636174 652D3137 39303436
36313130 819F300D 06092A86 4886F70D 01010105 0003818D 00308189 02818100
96D1417E D87C57CB 86E7B79F 161EE662 10A90EC9 8E1E6448 89633F43 173D2689
437622FB 476AAA46 9CDCD6F8 085DDA68 8DE1DFFE 69ADCB7F D5F2BA76 9D399096
08407429 E92D9BAD C178DBBB B9A18B5E E786807B 5CDC5A4A 359316EC 73B95298
074D7B0C C8F65407 4ECC89A3 A49AE70A E7671F9F 10FE956A 6B56FB68 92C28E8B
02030100 01A38180 307E300F 0603551D 130101FF 04053003 0101FF30 2B060355
1D110424 30228220 522D4348 41525445 522D4D49 442D3031 2E535052 494E4753
57462E4C 4F43414C 301F0603 551D2304 18301680 14EF390F 718664AD 12EA6CA3
E3EAE347 3C221D80 4D301D06 03551D0E 04160414 EF390F71 8664AD12 EA6CA3E3
EAE3473C 221D804D 300D0609 2A864886 F70D0101 04050003 81810067 7EE0E415
264D1C72 AE10EF90 DEF8D319 226A2A67 46E4E2F5 1B5751C3 AA0FFC08 2B8BAFA2
7D6ECD05 6C5BD386 1D84E680 37E735CE 45B5EBAF FF98212B D4ACA316 242D5758
8DAE9383 66F095D8 7A7C7C9F CEBC697A D5406BF7 2F6B3996 46C9AE3F F3B0805D
20917169 E5878003 D71B903F DBF89C10 A33A1988 7419105B ADB854
quit
dot11 syslog
!
!
ip cef
no ip dhcp use vrf connected
ip dhcp excluded-address 192.168.1.1 192.168.1.99
ip dhcp excluded-address 192.168.1.251 192.168.1.254
!
ip dhcp pool pool1
import all
network 192.168.1.0 255.255.255.0
domain-name DOMAIN.LOCAL
dns-server 68.115.71.53 24.196.64.53
default-router 192.168.1.1
!
!
no ip domain lookup
ip domain name DOMAIN.LOCAL
ip name-server 24.196.64.53
ip name-server 68.115.71.53
ip ddns update method sdm_ddns1
DDNS both
!
!
multilink bundle-name authenticated
!
!
!
!
archive
log config
hidekeys
!
!
!
!
!
interface FastEthernet0
description OUTSIDE
ip address 71.86.xxx.xxx 255.255.255.xxx
ip nat outside
ip virtual-reassembly
no shutdown
duplex auto
speed auto
!
interface FastEthernet1
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet2
!
interface FastEthernet3
!
interface FastEthernet4
!
interface FastEthernet5
!
interface FastEthernet6
!
interface FastEthernet7
!
interface FastEthernet8
!
interface FastEthernet9
!
interface VLAN 1
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface Async1
no ip address
encapsulation slip
!
ip forward-protocol nd
!
!
ip http server
ip http secure-server
ip nat inside source list 10 interface FastEthernet0 overload
!
access-list 10 permit 192.168.1.0 0.0.0.255
!
!
!
!
!
!
control-plane
!
!
line con 0
line 1
line aux 0
line vty 0 4
!
end
 
looks to me like you're only missing your default route

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

Part and Inventory Search

Sponsor

Back
Top