首页 > 代码库 > dhcp扩展--ip helper-address
dhcp扩展--ip helper-address
实验拓扑如图所示:
现状:
用R1模拟电脑G0/0接口的地址为DHCP client
R3作为DHCP服务器。他们之间不直接相连。中间通过R2联通。
要求:
R1可以通过R2从R3请求到地址。
实现:(以下命令课直接粘贴,但请注意相应模式)
R1:(全局配置模式下)
interface GigabitEthernet0/0
ip address dhcp
R2:(全局配置模式下)
interface GigabitEthernet0/0
ip address 12.12.12.2 255.255.255.0
ip helper-address 23.23.23.3(该接口会收到DHCP client的广播,此配置会让路由器将广播单播给地址23.23.23.3,即单播到DHCP)
duplex auto
speed auto
!
interface GigabitEthernet0/1
ip address 23.23.23.2 255.255.255.0
duplex auto
speed auto
router eigrp 100
network 12.12.12.0 0.0.0.255
network 23.23.23.0 0.0.0.255
no auto-summary
R3:
router eigrp 100
network 23.23.23.0 0.0.0.255
no auto-summary
!
interface GigabitEthernet0/1
ip address 23.23.23.3 255.255.255.0
duplex auto
speed auto
!
ip dhcp pool 1
network 12.12.12.0 255.255.255.0
default-router 12.12.12.2
dns-server 114.114.114.114
注意:路由协议本人选的是eigrp。其他协议也可以。但必须保证他们之间相互可以路由。可以通信。
测试:
将R1的g0/0口shutdown 一下。再开启。观察到接口可以获得正确的ip地址.。
本文出自 “snoopy_honey” 博客,请务必保留此出处http://sno0py.blog.51cto.com/8419234/1576653
dhcp扩展--ip helper-address