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

华为DHCP中继

时间:2017-04-20 11:56:41      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:华为   dhcp   中继   

技术分享

一、首先PC需要启用DHCP获取IP地址


二、配置路由器的接口IP


三、配置DHCP server


R1(中继)配置如下:

dhcp enable


interface GigabitEthernet0/0/0

 ip address 10.1.1.254 255.255.255.0 

 dhcp select relay

 dhcp relay server-ip 12.1.1.2


interface GigabitEthernet0/0/1

 ip address 12.1.1.1 255.255.255.0   #和服务器相连接口的IP,同一网段


interface GigabitEthernet0/0/2

 ip address 20.1.1.254 255.255.255.0 

 dhcp select relay

 dhcp relay server-ip 12.1.1.2


R2(服务器)配置如下:

dhcp enable


ip pool 10

 gateway-list 10.1.1.254 

 network 10.1.1.0 mask 255.255.255.0 

 static-bind ip-address 10.1.1.10 mac-address 5489-984d-804d   #PC4的IP和MAC地址绑定

 dns-list 10.10.10.10 


ip pool 20

 gateway-list 20.1.1.254 

 network 20.1.1.0 mask 255.255.255.0 


interface GigabitEthernet0/0/1

 ip address 12.1.1.2 255.255.255.0 

 dhcp select global


ip route-static 10.1.1.0 255.255.255.0 12.1.1.1

ip route-static 20.1.1.0 255.255.255.0 12.1.1.1


dis ip routing-table查看配置的两条路由

技术分享dis ip pool name 10 used查看地址池10已用的IP地址

技术分享

结果验证:

技术分享

技术分享


本文出自 “互联互通” 博客,请务必保留此出处http://jschinamobile.blog.51cto.com/11464420/1917352

华为DHCP中继

标签:华为   dhcp   中继   

原文地址:http://jschinamobile.blog.51cto.com/11464420/1917352

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