咱們爲何要更改MAC地址,也許你不但願你的實際MAC地址(物理地址)暴露在公共網絡上。另外一種狀況是,網絡管理員可能在網絡設備中阻止了一個特定的MAC地址。 |
環境linux
Centos7.7 Minimalc++
GNU MAC changer 1.7.0git
查詢網卡和MAC地址github
[root@localhost ~]# ip link show 1: lo:mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: ens33:mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000 link/ether 00:0c:29:48:4c:9a brd ff:ff:ff:ff:ff:ff
網卡名稱是ens33,MAC地址是00:0c:29:48:4c:9a。請記下本身的MAC地址,稍後作完實驗恢復到原來的MAC地址。centos
使用macchanger工具更改MAC地址網絡
Macchanger能夠查看、修改MAC地址。ide
安裝macchanger工具
[root@localhost ~]# git clone https://github.com/alobbs/macchanger [root@localhost ~]# yum -y install autoconf automake gcc gcc-c++ texinfo
如何使用macchangeroop
使用下面的命令生成一個隨機的mac地址爲ens33網卡:spa
[root@localhost ~]# macchanger -r ens33 Current MAC: 00:0c:29:48:4c:9a (VMware, Inc.) Permanent MAC: 00:0c:29:48:4c:9a (VMware, Inc.) New MAC: a2:97:a2:55:53:be (unknown)
查看一下ens33的MAC地址是否改變了
[root@localhost ~]# ip link show ens33 2: ens33:mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000 link/ether a2:97:a2:55:53:be brd ff:ff:ff:ff:ff:ff
能夠更改爲一個本身指定的mac地址,使用下面的命令更改:
[root@localhost ~]# macchanger --mac=XX:XX:XX:XX:XX:XX
若是想要恢復到真實的MAC地址,請使用下面的命令:
[root@localhost ~]# macchanger -p ens33 Current MAC: a2:97:a2:55:53:be (unknown) Permanent MAC: 00:0c:29:48:4c:9a (VMware, Inc.) New MAC: 00:0c:29:48:4c:9a (VMware, Inc.)
總結
咱們爲何要更改MAC地址,也許你不但願你的實際MAC地址(物理地址)暴露在公共網絡上。另外一種狀況是,網絡管理員可能在網絡設備中阻止了一個特定的MAC地址。