arm linux下配置靜態IP

參考:https://blog.csdn.net/u011077672/article/details/71123319

 

以下是開發板下配置文件,粗體部分設置靜態IP,配置完後下次重啓生效

 

root@mys6ull14x14:~# cat /etc/network/interfaces                 

# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

 

# The loopback interface

auto lo

iface lo inet loopback

 

# Wireless interfaces

iface wlan0 inet dhcp

        wireless_mode managed

        wireless_essid any

        wpa-driver wext

        wpa-conf /etc/wpa_supplicant.conf

 

iface atml0 inet dhcp

 

# Wired or wireless interfaces

auto eth0

iface eth0 inet static

address 192.168.0.77

netmask 255.255.255.0

gateway 192.168.0.1

 

 

iface eth1 inet dhcp

 

# Ethernet/RNDIS gadget (g_ether)

# ... or on host side, usbnet and random hwaddr

iface usb0 inet static

        address 192.168.7.2

        netmask 255.255.255.0

        network 192.168.7.0

        gateway 192.168.7.1

 

# Bluetooth networking

iface bnep0 inet dhcp

 

 

iface ppp0 inet ppp

    provider quectel-dial

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章