困在思科DHCP池问题

是的,我已经search,谷歌search,发誓,search更多,但还没有find我需要的答案..我也张贴在思科论坛上,但是,正如我在stackoverflow发现,堆栈*论坛通常倾向于明确,容易理解的答案,…嗨, 这里是:

我知道一些思科基础,但似乎我对思科DHCP池的知识less于我的想法。 我们公司有几个3825(1GB存储)路由器,我们不时部署这些小型临时networking,当我们的客户需要时,现在我必须使用这些路由器中的一个500-600人WiFi上一个两个一天的事件。 我采取了我的旧configuration之一,并将DHCP池从10.10.0.1/24更改为10.10.0.1/22。 假设这只是一个改变游泳池大小和反面具相匹配的问题。 在第二个范围(即:10.10.1.x或2.x)被发出之前,所有程序似乎都运行良好。 客户得到一个IP地址,但没有交通可能的外部世界。 我不知道为什么。 我已经发布了我的configuration完整的密码被删除,没有公共IP在里面所以没有问题。

一些额外的信息:我的连接是由会场提供的一个路由器,在我的0/0接口给我一个192.168.1.1的地址。

虽然没有在下面的configuration我曾尝试过:

ip route 0.0.0.0 0.0.0.0 192.168.1.1 ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/0 

这些似乎没有任何区别,…有没有人有一个想法,因为我失踪或做错了?

谢谢你的时间!

  version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname router1 ! boot-start-marker boot-end-marker ! enable secret PASSWORD no aaa new-model ! resource policy ! ip cef ! ! no ip dhcp use vrf connected ip dhcp excluded-address 10.10.0.1 10.10.0.20 ! ! ip dhcp pool pool1 import all network 10.10.0.0 255.255.252.0 dns-server 8.8.8.8 8.8.4.4 4.4.2.1 default-router 10.10.0.1 lease 0 0 10 ! ! ! voice-card 0 no dspfarm ! ! archive log config hidekeys ! ! ! interface GigabitEthernet0/0 ip address dhcp ip nat outside ip virtual-reassembly duplex auto speed auto media-type rj45 negotiation auto no keepalive ! interface GigabitEthernet0/1 ip address 10.10.0.1 255.255.255.0 ip nat inside ip virtual-reassembly duplex auto speed auto media-type rj45 negotiation auto no keepalive ! ! ! no ip http server no ip http secure-server ip nat inside source list 101 interface GigabitEthernet0/0 overload ! access-list 101 permit ip 10.10.0.0 0.0.3.255 any ! ! control-plane ! ! line con 0 stopbits 1 line aux 0 stopbits 1 line vty 0 4 password PASSWORD login ! scheduler allocate 20000 1000 ! end 

 ip address 10.10.0.1 255.255.255.0 

您的路由器将无法回复正在发送的数据,因为它本身仅限于原来的/ 24。

改变这个

 ip address 10.10.0.1 255.255.252.0