我有一个WiFi连接,它是被过滤的。因特网连接可以被一些选定的MAC地址的设备使用。我的手机是其中之一,我可以通过它使用连接。
现在我想用我的笔记本电脑连接,它有一个不同的MAC地址。我有Ubuntu14.04,我通过设置了连接(SSID和密码)。我将“设备MAC地址”选项卡保持为空白,而在“克隆MAC地址”选项卡中,我编写了我手机的MAC地址。保存网络后,重新启动网络管理器,
sudo service network-manager restart但我不能上网。当我试图连接到网络时,每次都会提示我进入密码选项卡。
有办法通过我的笔记本电脑连接吗?
发布于 2015-09-11 09:52:38
试着用这种方式改变mac address。
适用于wlan
sudo ifconfig wlan0 down
sudo ifconfig wlan0 hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig wlan0 up其中xx:xx:xx:xx:xx:xx表示mac地址
或者您可以在mac address中添加/etc/network/interfaces
sudo nano /etc/network/interfaces然后添加
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# add mac you wish to wlan0 int
auto wlan0
iface wlan0 inet dhcp
hwaddress ether 01:02:03:04:05:06https://askubuntu.com/questions/672862
复制相似问题