欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

自己亲自做的修改 mac macos 计算机的mac 地址 和ip地址 有大用 有大大用

change_mac_address

#!/bin/bash
#

#网卡名称
EnX=$(/usr/bin/osascript -e 'display dialog "请输入网卡名称" default answer "" with icon note buttons {"OK"} default button "OK"
    set result1 to result
    set the text_data to text returned of the result
    set the button_data to button returned of the result1
    if button_data = "Cancel" then
      return ""
    end if
    return text_data')  
   
sudo ifconfig $EnX ether A4:BB:6D:E6:AE:FA  
networksetup -detectnewhardware
sudo ifconfig $EnX up  
sleep 3s

sudo ifconfig $EnX ether A4:BB:6D:E6:AE:FA  
networksetup -detectnewhardware
sudo ifconfig $EnX up  
sleep 3s

sudo ifconfig $EnX ether A4:BB:6D:E6:AE:FA  
networksetup -detectnewhardware
sudo ifconfig $EnX up  

(/usr/bin/osascript -e  'display dialog "修改成功!"  buttons {"OK"} default button "OK" ')
 





因为有的时候存在特殊情况,需要修改苹果笔记本的MAC地址。下面主要记录一下修改的方法。

1.查询本机目前的MAC地址

openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//'

2.这时会要求输入开机密码,会断开airport无线网卡连接 (这一步的目的是为了断开无线连接),如果你的机器有密码会要求输入密码。

sudo /System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -z

3.修改mac地址的命令

       xx:xx:xx:xx:xx:xx =输入你想要修改成的MAC地址来代替。

  en0 = 输入你想要修改成的网卡代替

# su bbbb-admin

# sudo ifconfig en0 ether xx:xx:xx:xx:xx:xx    #记住这里 en0 是网卡名称 修改网卡mac

# ifconfig eth0 10.54.70.201/23                #记住这里 en0 是网卡名称 设置ip地址



4.重新连接网卡

networksetup -detectnewhardware

5.启动网卡

#  ifconfig en0 up                #记住这里 en0 是网卡名称 让网站启动起来 

6.查看配之后的mac地址

ifconfig

文章来源:https://blog.csdn.net/xiangzaixiansheng/article/details/104747045
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:https://www.rstk.cn/news/747380.html 


来自 https://www.rstk.cn/news/747380.html?action=onClick



mac 苹果电脑修改Mac地址方法


当某个环境下,只能指定网卡上网时,这个方法你就爽歪歪了

networksetup -listallhardwareports 查看当前所有端口Mac地址

networksetup -listallhardwareports

Hardware Port: Wi-Fi
Device: en0
Ethernet Address: 38:f9:d3:b3:1a:50
找到WIFI的网口: 默认en0, e4:ce:8f:32:51:82 是目标Mac地址

$sudo ifconfig en0 ether e4:ce:8f:32:51:82 //修改
$ifconfig en0 | grep ether //查看是否修改成功,这里修改的是虚拟Mac,看硬件是看不出来的

电脑重启mac地址复原



来自  https://www.jianshu.com/p/b1b94c552d4e

  





普通分类: