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

Internet Access w/ DMVPN 1

Status
Not open for further replies.

ntwrkrbkj

IS-IT--Management
Jun 2, 2003
58
I am trying to allow internet access through the router while keeping the tunnel up; the tunnel functions with no probs.

Ok, if anybody can help me out here I would greatly appreciate it. I know I am doing something stupid here, but when you get so frustrated the obvious answers become the most obscure.

Thanks in advance, here is the config:

ip dhcp excluded-address 192.168.2.1 192.168.2.99
!
ip dhcp pool GARAGE
network 192.168.2.0 255.255.255.0
default-router 192.168.2.1
dns-server 70.34.117.6
option 150 ip 10.2.2.11
lease 10
!
ip audit po max-events 100
!
crypto isakmp policy 1
authentication pre-share
crypto isakmp key xxxxxxx address 0.0.0.0 0.0.0.0
!
!
crypto ipsec transform-set TRANSET esp-des esp-md5-hmac
mode transport
!
crypto ipsec profile VPN
set transform-set TRANSET
!
!
interface Tunnel0
bandwidth 1500
ip address 172.0.0.2 255.255.255.0
no ip redirects
ip mtu 1400
ip nhrp authentication test
ip nhrp map multicast xxx.xxx.xxx.xxx
ip nhrp map 172.0.0.1 xxx.xxx.xxx.xxx
ip nhrp network-id 100000
ip nhrp holdtime 300
ip nhrp nhs 172.0.0.1
ip ospf network broadcast
ip ospf priority 0
delay 1000
tunnel source FastEthernet0/0
tunnel mode gre multipoint
tunnel key 100000
tunnel protection ipsec profile VPN
!
interface FastEthernet0/0
ip address dhcp
ip nat outside
duplex auto
speed auto
!
interface BRI0/0
no ip address
shutdown
!
interface Ethernet1/0
ip address 192.168.2.1 255.255.255.0
ip nat inside
half-duplex
!
router ospf 1
log-adjacency-changes
network 172.0.0.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
!
ip nat inside source list 1 interface Ethernet1/0 overload
ip http server
no ip http secure-server
ip classless
!
!
access-list 1 permit 192.168.2.0 0.0.0.255
!
line con 0
password xxxxxxx
login
line aux line vty 0 4
password xxxxxxxx
login

A+, i-Net+, MCSA, MCSE, CCNA
 
This is the spoke router, btw.

A+, i-Net+, MCSA, MCSE, CCNA
 
If anybody could take a shot at this, I would be forever grateful.

Thanks.
 
Is it really that stupid of a question, or nobody knows? :)
 
hi

try change this :
ip nat inside source list 1 interface Ethernet1/0 overload
to :
ip nat inside source list 1 interface FastEthernet0/0 overload

I would use FastEthernet0/0 as Internal and Ethernet1/0 as Outside, but it should work if you replace your ip nat inside.......
 
DOH!

*shakes head*

Thanks....no wonder nobody responded, at least no one laughed :).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top