在生产环境中,我们需要使用多个网段,如果在连接这些网段的路由中配置 DHCP 服务,会增加我们的维护成本,这时我们可以使用 DHCP 的中继功能,来实现跨网段 IP 分配。
需求分析
PC0 可以获取 IP。
配置路由设备可以使其具备 DHCP 的功能,但图中的 DHCP 服务端与客户端之间存在另外一台路由设备,而该设备没有配置 DHCP 的功能。
项目方案
通过 DHCP 中继路由器实现。
客户端在向最近的路由器请求 IP,而最近的路由器并非 DHCP 的服务端,但是它知道要找谁要 IP,根据指向地址,中继将获取到的地址发给客户端。
方案步骤
1 2 3 4 5 6 7 8 9 10 11 12 13
| Continue with configuration dialog? [yes/no]: no Router>enable Router#configure terminal Router(config)#interface fastEthernet 0/0 Router(config-if)#ip address 192.168.1.1 255.255.255.0 Router(config-if)#no shutdown Router(config-if)#exit Router(config)#ip dhcp pool cjk Router(dhcp-config)#network 192.168.2.0 255.255.255.0 Router(dhcp-config)#default-router 192.168.2.1 Router(dhcp-config)#dns-server 8.8.8.8 Router(dhcp-config)#exit Router(config)#ip route 192.168.2.0 255.255.255.0 fastEthernet 0/0
|
1 2 3 4 5 6 7 8 9 10 11
| Continue with configuration dialog? [yes/no]: no Router>enable Router#configure terminal Router(config)#interface fastEthernet 0/1 Router(config-if)#ip address 192.168.1.2 255.255.255.0 Router(config-if)#no shutdown Router(config-if)#exit Router(config)#interface fastEthernet 0/0 Router(config-if)#ip address 192.168.2.1 255.255.255.0 Router(config-if)#ip helper-address 192.168.1.1 Router(config-if)#no shutdown
|
注意事项
在配置 IP 地址池时,所设置的网关是否是目标网段的网关;
DHCP 中继端需要直接指向 DHCP 服务端,不可指向其它中继。
条评论