busybox filesystem ifup

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了busybox filesystem ifup相关的知识,希望对你有一定的参考价值。

/********************************************************************
 *                   busybox filesystem ifup
 * 声明:
 *     本文主要是记录busybox文件系统中ifup使用报错的解决方式。
 *
 *                                 2016-1-24 深圳 南山平山村 曾剑锋
 *******************************************************************/

一、错误处理1:
    1. 现象:
        udevd version 126 started
        zengjf login: root
        login[1423]: root login on ttymxc0
        udhcpc (v1.24.1) started
        Setting IP address 0.0.0.0 on eth0
        eth0: Freescale FEC PHY driver [Generic PHY] (mii_bus:phy_addr=1:00, irq=-1)
        Sending discover...
        Sending discover...
        Sending discover...
        No lease, forking to background
        [[email protected] ~]# ifup -a
        ifup: cant open /etc/network/interfaces: No such file or directory
    2. 解决办法:
        cat /etc/network/interfaces
            # Loopback interface.
            auto lo
            iface lo inet loopback
            
            # dhcp
            auto eth0
            iface eth0 inet dhcp
            
            # fixed
            auto eth1
            iface eth1 inet static
                    address 192.168.1.254
                    netmask 255.255.255.0
                    broadcast 192.168.1.255

二、错误处理2:
    1. 现象:
        [[email protected] network]# ifup -a
        run-parts: /etc/network/if-pre-up.d: No such file or directory
        run-parts: /etc/network/if-up.d: No such file or directory
        ifup: cant open /var/run/ifstate: No such file or directory
        [[email protected] network]# 
    2. 解决方法:
        cd /etc/network
        mkdir if-down.d  if-post-down.d  if-pre-up.d  if-up.d
        mkdir /var/run

三、错误处理3:
    1. 现象:
        [[email protected] ]# ifup -a
        ip: RTNETLINK answers: File exists
        udhcpc (v1.24.1) started
        Setting IP address 0.0.0.0 on eth0
        Sending discover...
        Sending discover...
        Sending discover...
        No lease, failing
        ip: cant find device eth1        ip: SIOCGIFFLAGS: No such device
        [[email protected] ]#
    2. 解决办法:
        cat /etc/network/interfaces
            # Loopback interface.
            auto lo
            iface lo inet loopback
            
            # dhcp
            auto eth0
            iface eth0 inet dhcp
            
            # fixed
            #auto eth1
            #iface eth1 inet static
            #        address 192.168.1.254
            #        netmask 255.255.255.0
            #        broadcast 192.168.1.255

 

以上是关于busybox filesystem ifup的主要内容,如果未能解决你的问题,请参考以下文章

busybox filesystem udhcpc 原理

busybox filesystem add ldd function

busybox filesystem ts_config: No such file or directory

busybox filesystem httpd php-5.5.31 sqlit3 webserver

使用 linux 功能使用 sudo 运行 ifup 和 ifdown

Linux ifup eth0失败