I'm having an issue with this config. Trying to make a border router config with this.
Hardware:
Cisco 2621 router
Connection:
Wireless isp connection (dhcp, MAC address required)
Problem:
Can't get traffic from inside nat to outside nat. DHCP works, but can't ping outside network from internal network. Can ping core router of ISP, but nothing else. Thinking it's a NAT/Route issue, but don't know enough to say what it is. HELP!
config file:
Hardware:
Cisco 2621 router
Connection:
Wireless isp connection (dhcp, MAC address required)
Problem:
Can't get traffic from inside nat to outside nat. DHCP works, but can't ping outside network from internal network. Can ping core router of ISP, but nothing else. Thinking it's a NAT/Route issue, but don't know enough to say what it is. HELP!
config file:
Code:
show ver
Cisco Internetwork Operating System Software
IOS (tm) C2600 Software (C2600-BINO3S3-M), Version 12.2(15)T, RELEASE SOFTWARE (fc1)
TAC Support: http://www.cisco.com/tac
Copyright (c) 1986-2003 by cisco Systems, Inc.
Compiled Tue 11-Mar-03 14:16 by ccai
Image text-base: 0x80008098, data-base: 0x8180C4FC
ROM: System Bootstrap, Version 12.2(10r)1, RELEASE SOFTWARE (fc1)
Router uptime is 1 hour, 32 minutes
System returned to ROM by power-on
System image file is "flash:c2600-bino3s3-mz.122-15.T.bin"
cisco 2621 (MPC860) processor (revision 0x00) with 60416K/5120K bytes of memory.
Processor board ID JAD07020GMK (3144114430)
M860 processor: part number 0, mask 49
Bridging software.
X.25 software, Version 3.0.0.
2 FastEthernet/IEEE 802.3 interface(s)
1 Serial network interface(s)
32K bytes of non-volatile configuration memory.
16384K bytes of processor board System flash (Read/Write)
Configuration register is 0x2102
Router#show run
Building configuration...
Current configuration : 1596 bytes
!
version 12.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
logging queue-limit 100
enable secret 5 $1$7z1C$voBjmB3wbEvgJFB7H1hVv0
enable password password
!
clock timezone CST -6
no ip subnet-zero
!
!
ip domain name helloworld.local
!
ip dhcp pool home_lan
network 172.16.0.0 255.255.252.0
default-router 172.16.0.1
dns-server 4.2.2.2
!
ip audit notify log
ip audit po max-events 100
!
!
!
!
!
!
!
!
!
no voice hpi capture buffer
no voice hpi capture destination
!
!
mta receive maximum-recipients 0
!
!
!
!
interface FastEthernet0/0
description Outside interface
mac-address 000f.66d2.3926
ip address dhcp
ip nat outside
no ip mroute-cache
duplex auto
speed auto
!
interface Serial0/0
no ip address
no ip mroute-cache
shutdown
!
interface FastEthernet0/1
description Internal interface
ip address 172.16.0.1 255.255.252.0
ip nat inside
no ip mroute-cache
duplex auto
speed auto
no mop enabled
!
router eigrp 1
network 172.16.0.0
network 209.103.0.0
auto-summary
!
ip nat inside source list 100 interface FastEthernet0/0 overload
ip http server
ip classless
!
!
!
access-list 1 permit 172.16.0.0 0.0.3.255
access-list 1 deny any log
access-list 100 remark Inside Source Address for NAT Translation
access-list 100 permit ip 172.16.0.0 0.0.3.255 any
!
snmp-server community public RO
snmp-server enable traps tty
call rsvp-sync
!
!
mgcp profile default
!
dial-peer cor custom
!
!
!
!
line con 0
line aux 0
line vty 0 4
password password
login
!
!
end
Router#