背景:
我正在使用 ifconfig 命令检查 Linux 上的可用接口列表。
但是 ubuntu 16.04 和 ubuntu 17.10 中 ifconfig 的输出格式有所不同。
进一步检查,net-tools 软件包已在 ubuntu17.10 中升级(从 net-tools 1.60 到 net-tools 2.10-alpha),最新的 ifconfig 输出带有冒号(':')的网络接口名称。在旧版本上:
$ ifconfig --version net-tools 1.60 ifconfig 1.42 (2001-04-13)
$ ifconfig
enp0s3 链路封装:以太网
在较新的版本上
$ ifconfig --version 网络工具 2.10-alpha
$ifconfig
ens160:标志=4163 mtu 1500
lo:标志=73 mtu 65536
这可能会破坏一些确实考虑或期望输出中额外的“:”的工具。
问题:
有没有办法以可靠的方式获取网络接口列表,这样 ifconfig 输出格式的任何变化都不会影响使用它的工具?是否有可以以一致方式使用的 ifconfig 替代方案?