linux 配置网络/sbin/ifup: configuration for eth0 not found

在linux系统下配置网卡时出现了下面这个问题,

 /sbin/ifup: configuration for eth0 not found.

Usage: ifup

 

以下是这个问题的解决方法。

经查询及参考/etc/sysconfig/network-scripts/ifup-eth文件,

     if is_bonding_device ${DEVICE} ; then

            for device in `LANG=C grep -l "^[[:space:]]*MASTER=${DEVICE}" /etc/sysconfig/network-scripts/ifcfg-*` ; do

            is_ignored_file "$device" && continue

            /sbin/ifup ${device##*/}

            done

     fi

系统应该是在/etc/sysconfig/network-scripts/文件夹下查找device name的,可是我的这个文件夹下只有ifcfg-lo文件,没有ifcfg-eth0文件,这应该就是原因吧。我发现/etc/sysconfig/networking/devices目录下存在一个ifcfg-eth0文件,打开一看,就是所要求的配置文件啦。遂cp了一份到/etc/sysconfig/network-scripts/文件夹下。

ifup eth0命令激活,ok!

你可能感兴趣的:(linux)