想在DHCP地址池中绑定静态ip和mac
请指教怎么操作?
static-bind ip-address xxx.xxx.xxx.xx mask xxx.xxx.xxx.xxx 后面无法输Mac地址
(0)
最佳答案
静态分配IP么
如果本设备配置为DHCP服务器,且需要实现IP+MAC的静态绑定,命令如下:
dhcp enable
dhcp server ip-pool 123
static-bind ip-address 1.1.1.1 24
static-bind mac-address 0023-24a1-0605
(0)
那如果我有很多个ip和mac需要绑定,这样绑定,怎么知道那个ip对应绑定的mac呢
你先看看arp表
比如我要绑定 172.16.12.128对应的mac e470-b886-0f01 和 172.16.12.61对应的mac 3c55-7647-bb35 ,arp表里也是这样。怎么操作
那就用全局arp 绑定
可以 static-bind ip-address 172.16.12.128 static-bind mac-address e470-b886-0f01 static-bind ip-address 172.16.12.61 static-bind mac-address c55-7647-bb35 吗?
试一下 我也好长时间没配置了
好的 谢谢大佬,膜拜
IP+MAC方法一:
在全局模式使用arp static方式进行绑定,命令如下:
arp static 1.1.1.1 0023-24a1-0605
IP+MAC方法二:
进入接口使用动态绑定表项的方式进行绑定,命令如下:
Int GigabitEthernet1/0/1
ip source binding ip-address 1.1.1.1 mac-address 0023-24a1-0605
ip verify source ip-address mac-address
IP+MAC方法三:
如果本设备配置为DHCP服务器,且需要实现IP+MAC的静态绑定,命令如下:
dhcp enable
dhcp server ip-pool 123
static-bind ip-address 1.1.1.1 24
static-bind mac-address 0023-24a1-0605
(0)
方法3:那如果我有很多个ip和mac需要绑定,这样绑定,怎么知道那个ip对应绑定的mac呢
方法3:那如果我有很多个ip和mac需要绑定,这样绑定,怎么知道那个ip对应绑定的mac呢
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
好的 谢谢大佬,膜拜