Cisco路由器的dhcp服務配置命令及解釋
首先假設兩臺思科路由器,R1(服務端)連接R2(客戶端),組成一個簡單的鏈式局域網,下面就來實現DHCP,配置的命令及其解釋如下:
1、R1 dhcp服務的配置
dhcp#configure terminal
//進入全局模式
dhcp(config)#service dhcp
//打開dhcp功能
dhcp(config)#no ip dhcp conflictlogging
//關閉dhcp日志記錄
dhcp(config)#ip dhcp pool cisco
//配置dhcp服務器的名稱為cisco
dhcp(dhcp-config)#network 192.168.1.0 255.255.255.0
//配置dhcp服務器要分配的網段
dhcp(dhcp-config)#default-router 192.168.1.1
//配置默認網關為192.168.1.1
dhcp(dhcp-config)#dns-server 192.168.1.1
//配置dns服務器為192.168.1.1
dhcp(dhcp-config)#exit
//退出dhcp配置模式
dhcp(config)#ipdhcpexcluded-address 192.168.1.200 192.168.1.254
//配置dhcp不分配的地址
2、R2客戶端獲取IP地址
Client#configureterminal
//進入全局模式
dhcp(config)#interfacefastethernet0/0
//進入fastethernet0/0接口
dhcp(config-if)#ipaddress dhcp
//從dhcp服務器獲取IP地址
關鍵詞:Cisco,路由器,dhcp
閱讀本文后您有什么感想? 已有 人給出評價!
- 0
- 0
- 0
- 0
- 0
- 0