1.windows xp 的mac 地址修改
①.点选
--》 --》 --》 --》 --》 ---》 ---》 ---》 即可!
②.在运行中使用 “cmd” 调出dos 界面。在dos界面中使用 “ipconfig /all”查看网卡的配置信息
2.linux(redhat 5.4)
①.编辑网卡的信息文件
[root@mail ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
③.重新启动网卡
[root@mail ~]# service network restart
查看 eth0 网卡的 mac 地址
[root@mail ~]# ifconfig |grep eth0
eth0 Link encap:Ethernet HWaddr 00:0C:29:FD:45:E4
此时 mac 地址已经生效
3.H3C SecPath F100-C 修改接口mac 地址
①.查看接口的mac地址
[H3C]dis interface Ethernet 0/0
Ethernet0/0 current state :DOWN
Line protocol current state :DOWN
Description : Ethernet0/0 Interface
The Maximum Transmit Unit is 1500, Hold timer is 10(sec)
Internet Address is 192.168.0.1/24
IP Sending Frames' Format is PKTFMT_ETHNT_2, Hardware address is 3ce5-a658-3e7e
②.修改mac地址
[H3C]_ //此模式下临时修该前请备份相关参数
您已经进入了一个隐藏命令视图,该视图用于版权所有者的内部测试,其中一些命令使用不当可能导致业务中断,请在版权所有者的指导下慎重使用。
[H3C-hidecmd]en
input password (1-12 characters) :huawei-3com
This mode is for our engineers to test. Running these commands could result in exceptions. Please do not run these commands without owner's direction.
[H3C-diagnose]?
Diagnose 系统视图命令:
display 显示当前系统信息
gdb AUX是否为调试口
nslookup 查询域名服务
ping 检查网络连接或主机是否可达
quit 退出当前的命令视图
return 退到用户视图
save 保存当前有效配置
test 加密卡测试
tracert 跟踪到达目的地的路由
trapdebug 察看watchdog重起的异常堆栈信息
vrbd 显示VRP版本
[H3C-diagnose]test ethernet getmac 0
port 0 mac address is 3ce5-a658-3e7e, test success
[H3C-diagnose]test ethernet setmac 0 1111-1111-1111
test set mac address of ethernet0/0 success
[H3C-diagnose]save
将把当前的配置保存到存储设备中.
你确信吗?[Y/N]y
将运行时的配置写入存储设备中.
正在保存flash:/config.cfg, 请稍侯...
....................
将运行时的配置写入存储设备中成功.
[H3C-diagnose]test ethernet getmac 0
port 0 mac address is 1111-1111-1111, test success
配置保存后,通过清空save-configure 文件时是回不到最初的mac地址状态。必须再次修改即可!!!
重新启动是修改的配置生效
reboot y
③.查看接口的mac地址
[H3C]display interface Ethernet 0/0
Ethernet0/0当前状态:DOWN
链路层协议当前状态:DOWN
描述 : Ethernet0/0 Interface
最大传输单元是 1500, Hold 定时器包间隔时间为10(秒)
本接口地址是192.168.0.1/24
IP报文发送帧格式: PKTFMT_ETHNT_2, 硬件地址是 1111-1111-1111 //mac 地址成功修改
4.二层交换机
因为二层交换机只是用来转发数据帧,不对帧进行拆封打包,所以对转发数据来说,自身的MAC地址是无用的。但是有时候我们需要对交换机进行配置管理,这也就是说我们需要与交换机进行通信,此时它就需要一个MAC地址,相应此时的交换机就相当于平时通信的一台主机功能而已。
5.三层交换机
而对于3层交换机,一般都会有一个mac地址池,并且以最后一个octet+1递增。这些MAC地址并不是直接绑定给某个物理端口,而是做三层交换时拿给SVI使用,也即我们常用的vlan 网关
[Quidway]dis interface Ethernet 0/1
Ethernet0/1是 DOWN
发送的IP帧的帧格式是 PKTFMT_ETHNT_2 硬件地址是00e0-fc0e-ae44
修改方式!!!我还未找到,百度上说在web方式可以修该!!!
6.路由器
①.查看接口的mac地址配置
[Router-Ethernet0]dis int eth 0
Ethernet0当前状态:UP,链路层协议当前状态:UP
描述: Ethernet interface, Ethernet0 接口
最大传输单元: 1500
Internet地址是 192.168.101.14(24)
IP报文发送帧格式: Ethernet_II, 硬件地址: 00-e0-fc-57-e2-5b
②.在接口上配置mac地址
[Router-Ethernet0]mac-address 11-11-11-11-11-11
此时的配置已经生效
[Router-Ethernet0]dis int eth 0
Ethernet0当前状态:UP,链路层协议当前状态:UP
描述: Ethernet interface, Ethernet0 接口
最大传输单元: 1500
Internet地址是 192.168.101.14(24)
IP报文发送帧格式: Ethernet_II, 硬件地址: 11-11-11-11-11-11
③.初始化配置
reset saved-configuration
[Router]reboot
WARNING: Configuration has been changed ! Save configuration ? [Y/N]n
WARNING: System will REBOOT! Continue ?[Y/N]y
System is now rebooting, please wait
以上使部分设备的mac地址修改的总结!!!有待继续努力。。。
嗯,韩宇说的对!