目前,我正在使用此命令欺骗我的MAC地址:
macchanger eth0-甲
但是,我希望能够选择我使用的供应商。我知道switch-l显示了所有可用供应商的列表,但是假设我想使用Cisco的一个供应商,那么我使用什么命令来实际使用该特定供应商,而不是系统每次为我随机选择一个供应商?
最佳答案
您可以将这样的函数添加到.bashrc
那你可以:macspoof苹果eth0
macspoof () {
Vendor=$(macchanger -l | grep $1 | shuf -n 1 | awk '{print $3}')
Tail=$(echo $RANDOM | md5sum | sed 's/.\{2\}/&:/g' | cut -c 1-8)
Mac="$Vendor:$Tail"
sudo macchanger -m $Mac $2
}
关于linux - 在Linux中使用Macchanger时如何选择供应商,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29082719/