1. 程式人生 > >開發板配置上網

開發板配置上網

################# 靜態IP配置 ################# 

vi /etc/network/interfaces

在檔案末尾新增以下內容:

auto eth0

iface eth0 inet static

address 192.168.199.129

netmask 255.255.255.0

gateway 192.168.199.1

即可實現主機和開發板之間的網路連線。

################# 動態IP配置 ################# 

# 檢視網絡卡

ifconfig -a


# 開啟eth0

ifconfig eth0 up

# 配置動態IP

udhcpc -i eth0