如何设置思科路由器具有DHCP服务器功能

DHCP及动态主机设置协议极大方便了网管管理局域网,一般DHCP都是搭建基于Windows/linux等基于系统平台的应用级别的DHCP服务器。今天,我们要讲的是将Cisco路由器配置成一个DHCP服务器,使它同时具有路由和DHCP功能。
 
 
 
配置DHCP具体命令:
 
 
dhcp#configureterminal
 
//进入全局模式
 
dhcp(config)#servicedhcp
 
//启用dhcp服务
 
dhcp(config)#noipdhcpconflictlogging
 
//关闭dhcp日志记录
 
dhcp(config)#ipdhcppoolctocio
 
//配置dhcp服务器的名称为ctocio
 
dhcp(dhcp-config)#network192.168.2.0255.255.255.0
 
//配置dhcp服务器可分配的网段
 
dhcp(dhcp-config)#default-router192.168.2.1
 
//配置默认网关为192.168.2.1
 
dhcp(dhcp-config)#dns-server192.168.2.1
 
//配置dns为192.168.2.1
 
dhcp(dhcp-config)#exit
 
//退出dhcp配置模式
 
dhcp(config)#ipdhcpexcluded-address192.168.2.2192.168.2.10
 
//配置dhcp排除分配的地址   
 
dhcp(config)#exit
 
//退出全局模式
 
dhcp(config)#showrun
 
//查看路由配置
 
客户端获取IP
 
在另一个和此路由器相连的路由器上,如果要为某个端口设置IP地址,通过下面的命令就可从DHCP服务器中获取IP地址。
 
Client#configureterminal
 
//进入全局模式
 
dhcp(config)#interfacefastethernet0/1
 
//进入fastethernet0/1接口
 
dhcp(config-if)#ipaddressdhcp
 
//从dhcp获取IP地址
 
InterfaceFastEthernet0/0assignedDHCPaddress192.168.2.11,mask255.255.255.0,hostnameR2这样的提示,客户端获取IP成功,这样避免配置专门的DHCP服务器,方便网络管理。

你可能感兴趣的:(如何设置思科路由器具有DHCP服务器功能)