欢迎来到电脑知识学习网,专业的电脑知识大全学习平台!

手机版

路由器dhcp服务器设置(使用Cisco路由器配置DHCP服务器)

网络知识 发布时间:2022-01-06 08:58:41

项目名称:配置路由器的DHCP服务器

项目需求:配置路由器DHCP服务器

项目审核标准:实施完成所有路由器及交换机的端口地址配置

项目实施方案:

路由器dhcp服务器设置(使用Cisco路由器配置DHCP服务器)(1)

路由器R1的FastEthernet 0/1接口连接交换机的FastEthernet 0/1接口。

交换机的FastEthernet 0/2接口PC1的FastEthernet接口。

交换机的FastEthernet 0/3接口PC2的FastEthernet接口。

路由器的配置过程如下:

1.Router>enable
从用户模式进入特权模式
2.Router#configure terminal
从特权模式进入全局配置模式
3.Router(config)#hostname R1
更改设备名称
4.R1(config)#interface fastEthernet 0/1
进入接口
5.R1(config-if)#ip address 192.168.2.1 
255.255.255.0
配置IP地址
6.R1(config-if)#no shutdown
启用以太网口
7.R1(config-if)#exit
进入全局配置模式
8.R1(config)#ip dhcp pool 876long
创建DHCP地址池
9.R1(dhcp-config)#network 192.168.2.0 
255.255.255.0
发布地址池的网段
10.R1(dhcp-config)#default-router 192.168.2.1
设置网关地址
11.R1(dhcp-config)#dns-server 192.168.2.2
设置DNS地址
12.R1(dhcp-config)#exit
进入全局配置模式
13.R1(config)#ip dhcp excluded-address
192.168.2.1
排除网关地址192.168.2.1
14.R1(config)#ip dhcp excluded-address 
192.168.2.2
排除DNS地址 192.168.2.2
15.R1(config)#ip dhcp excluded-address 
192.168.2.3 192.168.2.20
设置预留地址
16.R1(config)#exit进入特权模式
17.R1(config)#write
保存当前配置
测试:
PC1 地址获取:
18.ipconfig /renew
PC>ipconfig /renew
IP Address......................: 192.168.2.21
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 192.168.2.1
DNS Server......................: 192.168.2.2
19.路由器上查看IP地址绑定情况:
R1#show ip dhcp binding 
IP address       Client-ID/              Lease expiration        Type
                 Hardware address
192.168.2.21     00E0.B08C.01C8           --                     Automatic
192.168.2.22     00E0.F76B.3AB3           --                     Automatic


责任编辑:电脑知识学习网

网络知识