- 华为交换机:使用user-bind static命令可以在全局或接口模式下配置ip地址、mac地址和接口的绑定。例如,如果要将192.168.1.100的ip地址和00e0-fc00-0001的mac地址绑定到GigabitEthernet0/0/1接口上,可以使用以下命令:
[Switch] user-bind static ip-address 192.168.1.100 mac-address 00e0-fc00-0001 interface GigabitEthernet0/0/1
接口模式下:
[Switch] interface GigabitEthernet0/0/1
[Switch-GigabitEthernet0/0/1] user-bind static ip-address 192.168.1.100 mac-address 00e0-fc00-0001
- 华三交换机:使用mac-address和ip address命令可以在接口模式下配置mac地址和ip地址的绑定。例如,如果要将192.168.1.100的ip地址和00e0-fc00-0001的mac地址绑定到GigabitEthernet0/0/2接口上,可以使用以下命令:
[H3C] interface GigabitEthernet0/0/2
[H3C-GigabitEthernet0/0/2] mac-address 00e0-fc00-0001
[H3C-GigabitEthernet0/0/2] ip address 192.168.1.100 24
- 思科交换机:使用switchport port-security mac-address和switchport port-security ip-address命令可以在接口模式下配置mac地址和ip地址的绑定。例如,如果要将192.168.1.100的ip地址和00e0-fc00-0001的mac地址绑定到FastEthernet0/1接口上,可以使用以下命令:
[Switch] interface FastEthernet0/1
[Switch-FastEthernet0/1] switchport port-security mac-address 00e0-fc00-0001
[Switch-FastEthernet0/1] switchport port-security ip-address 192.168.1.100
- 锐捷交换机:使用ip source check user-bind enable和user-bind static命令可以在接口模式下配置ip地址、mac地址和接口的绑定。例如,如果要将192.168.1.100的ip地址和00e0-fc00-0001的mac地址绑定到GigabitEthernet0/0/1接口上,可以使用以下命令:
[Ruijie] interface GigabitEthernet0/0/1
[Ruijie-GigabitEthernet0/0/1] ip source check user-bind enable
[Ruijie-GigabitEthernet0/0/1] user-bind static ip-address 192.168.1.100 mac-address 00e0-fc00-0001
标签:ip,GigabitEthernet0,mac,192.168,地址,address
From: https://www.cnblogs.com/wanghongwei-dev/p/18006592