imx287網路配置

2021-09-10 10:40:31 字數 1126 閱讀 4161

easyarm imx287開發板的乙太網介面為eth0,對於linux系統,一般採用ifconfig指令檢視或者配置網路裝置,常用的組合指令如下:

ifconfig 網路埠 ip位址 hwether mac位址 netmask 掩碼位址 broadcast 廣播位址 [up|down]

ifconfig eth0 192.168.0.136

檢視eth0 網絡卡當前的狀態:ifconfig eth0

採用udhcpc命令,動態或者網路ip

ifconfig eth0hw ether 00:11:22:33:44:55mac位址就如同身份證上的身份證號碼,具有全球唯一性。

ifconfig eth0 netmask 255.255.255.0

ifconfig eth0 broadcast 192.168.0.255

關閉eth0網絡卡ifconfig eth0 down

啟動eth0網絡卡ifconfig eth0 up

設定預設閘道器route add default gw 192.168.0.1

刪除閘道器設定route del default gw 192.168.0.1

檢視閘道器設定route -n

開啟/etc/resolv.conf,配置:

#nameserver ip address

nameserver 192.168.0.1

nameserver 192.168.0.2

即開機時自動執行指令碼,進行網路配置、

對於imx287,在/etc/init.d/s40network檔案末配置即可:

ifconfig eth0 " 192.168.0.136" netmask 255.255.255.0

route add default gw 192.168.0.1

ifconfig eth0 up

ifconfig eth1 up

18 網路配置

etc sysconfig network scripts 編輯相對應的網絡卡配置檔案 type ethernet proxy method none browser only no bootproto static dhcp動態獲取,或者靜態配置ip defroute yes ipv4 failu...

Linux萬兆網路配置

1 注意事項 建議在安裝linux系統前插好萬兆網絡卡,因為網口配置檔案是在安裝系統的過程中生成的,顛倒順序的話可能出現找不到對應配置檔案的情況,這時只能手動建立了。2 網絡卡識別 連線好萬兆網絡卡後,使用 ip addr 命令檢視網絡卡是否新增成功,使用 ethtool 網口名 命令檢視網口狀態是...

linux網路 (一) 網路配置

1.liunx網路 1.1介面和命名規則 eth 0 9 乙太網介面 wlan 0 9 無線網絡卡介面 lo 本地回環介面 1.2linux常規網路配置檔案 1.etc hosts 主機檔案 2.etc resolv.conf dns檔案 3.etc sysconfig network script...