樹莓派連線有線網路配置
阿新 • • 發佈:2019-01-09
本教程使用浙江大學玉泉校區的網路。其它網路同理可得。
1、配置mac地址
sudo ifconfig eth0 down hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig eth0 up
將上面兩行程式碼複製進/etc/rc.local即可開機自動更改。
單獨執行上面兩行即可修改mac地址。
2、設定IP與靜態閘道器等
備份/etc/network/interfaces檔案,並修改如下:
1)註釋掉
iface eth0 inet dhcp
2)新增以下幾行
# The loopback interface auto lo iface lo inet loopback auto eth0 iface eth0 inet static #your static IP address 192.168.1.118 #your gateway IP gateway 192.168.1.1 netmask 255.255.255.0 #your network address "family" network 192.168.1.0
其中network由IP決定,其最終結果為IP地址最後一位改為0.
3)執行以下命令重新載入network配置
sudo /etc/init.d/networking restart
4)配置DNS伺服器
在:/etc/resolv.conf中新增一條
nameserver 10.10.0.21
就完成了。
/***********************/
若提示以下錯誤:
[email protected]:~$ ping 10.10.10.34
connect: Network is unreachable
解決方法 可以在/etc/rc.local中在ifconfig eth0 up後面加
/etc/init.d/networking restart &