码迷,mamicode.com
首页 > 其他好文 > 详细

dhcp扩展--ip helper-address

时间:2014-11-15 06:42:20      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:interface   路由器   address   服务器   如图所示   

实验拓扑如图所示:

 

bubuko.com,布布扣

 

 

现状:

R1模拟电脑G0/0接口的地址为DHCP client

R3作为DHCP服务器。他们之间不直接相连。中间通过R2联通。

要求:

R1可以通过R2R3请求到地址。

 

实现:以下命令课直接粘贴,但请注意相应模式

 

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。其他协议也可以。但必须保证他们之间相互可以路由。可以通信。

 

 

测试:

 

R1g0/0shutdown 一下。再开启。观察到接口可以获得正确的ip地址.

 

 

 

 

本文出自 “snoopy_honey” 博客,请务必保留此出处http://sno0py.blog.51cto.com/8419234/1576653

dhcp扩展--ip helper-address

标签:interface   路由器   address   服务器   如图所示   

原文地址:http://sno0py.blog.51cto.com/8419234/1576653

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!