我想將一個設備連接到互聯網,a Roku player
,它有自己的MAC
地址。
我目前可以存取的網路要求我在連接到 Internet 之前使用我的憑證登入。這個過程是這樣的,當您第一次嘗試造訪網站時,您將被轉發到「登入」頁面,您可以在其中輸入您的憑證。
問題是Roku player
沒有瀏覽器,我可以用它來執行此步驟。因此,當我嘗試使用該設備時,它就不動了。
儘管我是連接的到互聯網,我沒有使用權透過路由器連接到它。所以我想,如果我使用我的筆記型電腦將我的MAC
地址欺騙到我的特定地址Roku player
並以這種方式登入註冊該設備,它可能會起作用。
這行得通嗎?如果是這樣,我該如何去做呢?
答案1
欺騙你的MAC
-Address 相對簡單:
一般步驟:
- 儲存您的
MAC
以供將來重置 - 暫時禁用您的介面以更改您的
MAC
- 設定您的新任意
MAC
- 再次啟用您的介面
使用不同的工具:
和
ip
:ip link show <interface> &> ip_savehafen.log
sudo ip link set dev <interface> down
sudo ip link set dev <interface> address <new MAC address>
sudo ip link set dev <interface> up
和
ifconfig
:ifconfig <interface> | head -n1 &> ic_savehafen.log
sudo ifconfig <interface> down
sudo ifconfig <interface> hw ether <new MAC address>
sudo ifconfig <interface> up