为什么我的 DHCP 池不工作?

为什么我的 DHCP 池不工作?

我正在尝试创建一个配置,它正在执行我想要的大部分操作,但 DHCP 池没有分配地址。以下是目前的配置:

enable 
config t
hostname xxxxxx
enable password xxxxxxx
enable password secret xxxxxx
service password encryption
username xxxxx privilege 15 password 0 xxxxxxx
banner motd #This router is private property and may not be accessed without permission of the owner#
ip domain-lookup
ip domain-name cisco.com 
ip name-server 192.168.1.2
crypto key generate rsa 
512
line con 0 
password xxxxxxxxx
login local 
exec-timeout 0 0 
logging synchronous 
line vty 0 15
password xxxxxxxxxxx
login local 
exec-timeout 0 0 
logging synchronous
transport input all
exit
int f0/0
ip address 216.xxx.xxx.xxx
description connection to ISP 
no shut 
exit 
ip dhcp excluded-address 192.168.1.1
ip dhcp pool LAN
network 192.168.1.0 255.255.255.0
default-router 216.xxx.xxx.xxx
dns-server 8.8.8.8
exit 
int range fa0/1/0-3
switchport mode access
switchport access vlan 1
spanning-tree portfast 
exit 
ip route 0.0.0.0 0.0.0.0 216.xxx.xxx.xxx
int vlan1
ip address 192.168.1.1 255.255.255.0
no shut 
exit 
exit
wr

我已经盯着这个问题有一段时间了,所以我可能只是忽略了一些明显的东西,但如果能提供任何帮助我将非常感激。

--编辑-- 开始看到一些问题,我的 WAN 端口的 IP 地址缺少子网掩码,而且看起来此配置没有将交换机端口放在路由器上。如果此配置解决了问题,我会更新。

答案1

好的,以下是我在上面的配置文件中发现的错误:

1)接口 fa0/0 的配置缺少掩码,因此无法正确设置

2) fa0/1/0-3 的设置缺少“no shutter”命令,因此它们没有出现。

3)Vlan1 缺少 no shutdown 命令

4) 我正在考虑将 DHCP 池 LAN 中的默认路由器切换为 192.168.1.1,因为这似乎更符合我对 DHCP 池配置方式的经验。

5) 虽然这解决了一些与 DHCP 相关的问题,但 SSH 似乎仍然无法在 PacketTracer 中运行,所以我必须更深入地研究这个问题。

相关内容