ifconfig:找不到命令


10

我进入root安装了Fedora 18 的远程计算机。

ifconfig

但是我得到了

ifconfig: command not found

并且

     [root@kitch proxy]# /sbin/ifconfig
     -bash: /sbin/ifconfig: No such file or directory
    [root@kitch proxy]# sudo yum provides ifconfig
    fedora/filelists_db                                                                                                          |  25 MB  00:00:04
    updates/filelists_db                                                                                                         |  12 MB  00:00:02
    net-tools-2.0-0.2.20121106git.fc18.x86_64 : Basic networking tools
    Repo        : fedora
    Matched from:
    Filename    : /sbin/ifconfig

然后我输入 ip link show

        [root@kitch proxy]# ip link show
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
        link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    2: em1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT qlen 1000
        link/ether 00:1a:a0:23:86:6c brd ff:ff:ff:ff:ff:ff

ip addr show

    t@kitch proxy]# ip addr show
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
        link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
        inet 127.0.0.1/8 scope host lo
        inet6 ::1/128 scope host
           valid_lft forever preferred_lft forever
    2: em1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
        link/ether 00:1a:a0:23:86:6c brd ff:ff:ff:ff:ff:ff
        inet 138.96.116.9/21 brd 138.96.119.255 scope global em1
        inet6 fe80::21a:a0ff:fe23:866c/64 scope link
           valid_lft forever preferred_lft forever

    [root@kitch proxy]# /sbin/iptables
    iptables v1.4.16.2: no command specified
    Try `iptables -h' or 'iptables --help' for more information.

没有eth0,结果对我来说很奇怪。谁能解释一下?

Answers:


6

Fedora和RedHat都使用emN而不是标识嵌入在主板上的NIC ethN

编辑:如果要防止uvdev将eth0重命名为em1,请检查以下内容:

http://comments.gmane.org/gmane.linux.redhat.fedora.general/421412


1
但是在许多其他的fedora机器上ethN,为什么?此外,为什么ifconfig不起作用?
misteryes 2013年

其他机器,它们是否具有嵌入式NIC?我不是Fedora用户,但请尝试: sudo yum provides ifconfig 为了知道要安装哪个软件包ifconfig并进行安装。
jmdana 2013年

我试过了,并更新了结果,如何安装?
misteryes 2013年

yum install net-tools我猜...
jmdana 2013年

@misteryes,它使用被称为的ethX,直到短的时间回来。这个想法是要有稳定的设备名称(例如,如果您有两个eth,一个被称为eth0取决于它们完成初始化的随机(ish)顺序)。它会被称为em0,下一个em1 总是,即使它中断了等等
。– vonbrand

11

ifconfig在Red Hat风格的盒子上通常位于/sbin,通常不在默认路径中;尝试/sbin/ifconfig看看你得到什么。

该手册页ip是开始发现关于其选项,行为,输出,&C的好地方。


没有iptables/sin/ifconfig也没有任何工作
misteryes 2013年

1
ip命令被提名接替ifconfig,但方式太多的手指已经熟悉ifconfig到能够刚才删除它...
vonbrand

8

默认情况下,ifconfigRHEL中不会存在。

sudo yum install net-tools

将安设ifconfig/usr/sbin/ifconfig


这恰好是这里最重要的答案,它使您知道需要安装net-tools。这是必需的,除非您在操作系统安装时指定了它。
ZaxLofful
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.