如何 grep、awk、head 和 sed ip 地址

如何 grep、awk、head 和 sed ip 地址

我正在尝试尽可能多地了解 Linux,目前我正试图抓住 ifconfig 文本显示的特定部分,因此它看起来完全像这样:

 eth0:
       inet 192.168.1.000  netmask 255.255.255.0  broadcast 192.168.1.255
 wlan0:
       inet 192.168.1.xxx  netmask 255.255.255.0  broadcast 192.168.1.255

我已经非常接近了,到目前为止我已经尝试了大约一百万种可能的组合,但我已经筋疲力尽了,这些是我尝试过的一些。

  ifconfig | head -19 | sed 'wlan0|\eth0' | awk '{print $2}' 
  ifconfig | head -19 | egrep 'wlan0|\eth0' | awk '{print $1}' | sed '/^net/p'
  ifconfig | head -19 | egrep 'wlan0|\eth0|' | awk '{print $1}'
  ifconfig | cut -d: -f1 | awk '{print $2}' | cut -d: -f1

这是我最接近的一次

 ifconfig  |  head -n 2  |   cut -d: -f1; ifconfig | tail -8 | head -1

 eth0
    inet 192.168.1.000  netmask 255.255.255.0  broadcast 192.168.1.255
    inet 192.168.1.xxx  netmask 255.255.255.0  broadcast 192.168.1.255

我在 000 和 xxx 之间缺少 wlan0,感谢您付出的时间和精力。

我的显示器

 eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
    inet 192.168.1.000  netmask 255.255.255.0  broadcast 192.168.1.255
    inet6 xxxxxxxxxxxxxxxxxxxxxxx  prefixlen 64  scopeid 0x20<link>
    ether xxxxxxxxxxx  txqueuelen 1000  (Ethernet)
    RX packets 711634  bytes 635444016 (606.0 MiB)
    RX errors 0  dropped 0  overruns 0  frame 0
    TX packets 523020  bytes 98052518 (93.5 MiB)
    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
    inet 127.0.0.1  netmask 255.0.0.0
    inet6 ::1  prefixlen 128  scopeid 0x10<host>
    loop  txqueuelen 1000  (Local Loopback)
    RX packets 4266  bytes 735580 (718.3 KiB)
    RX errors 0  dropped 0  overruns 0  frame 0
    TX packets 4266  bytes 735580 (718.3 KiB)
    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
    inet 192.168.1.xxx  netmask 255.255.255.0  broadcast 192.168.1.255
    inet6 xxxxxxxxxxxxxxxx  prefixlen 64  scopeid 0x20<link>
    ether xxxxxxxxxxx  txqueuelen 1000  (Ethernet)
    RX packets 2429  bytes 371836 (363.1 KiB)
    RX errors 0  dropped 0  overruns 0  frame 0
    TX packets 227  bytes 79847 (77.9 KiB)
    TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

我刚刚找到了一种方法

 ifconfig  |  head -n 2  |   cut -d: -f1; ifconfig | tail -9 | cut -d: -f1 | head -2

但如果你有其他方法,我愿意尝试

答案1

正确的做法:

(最好使用ip(8)(2018 年)

使用 grep -P (的正则表达式)

for dev in wlan0 eth0; do
    ip address show dev $dev |
        grep -oP 'inet\s+\K\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'
done

使用

for dev in wlan0 eth0; do
    ip address show dev $dev |
        awk -F'[ /]' '/inet /{print $6}'
done

如果你坚持使用

for dev in wlan0 eth0; do
    ifconfig $dev | awk '/inet /{print $2}'
done

最后:如果您需要输出中的接口名称:

for dev in wlan0 eth0; do
    ifconfig $dev | awk -vdev=$dev '/inet /{print dev, $2}'
done

答案2

以下是一个示例这个答案我的:

#!/bin/bash

# NAME: getIP

# Set the names of the target interfaces as array or assign the user's input
[[ -z ${@} ]] && IFACES=$(/sbin/ifconfig | sed -r '/^ .*/d; s/ .*//' | tr '\r\n' ' ') || IFACES=($@)

# Set IPv4 address match pattern
IPv4='[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'

# Get the IP address
for IFACE in ${IFACES[@]}; do
        /sbin/ifconfig "$IFACE" 2>/dev/null | grep -Po "${IPv4}" | tr '\r\n' ' ' | \
                awk -v iface="${IFACE}:" 'BEGIN{ print iface } { printf "\tinet %-16s netmask %-16s broadcast %s\n",$1, $3, $2}'
done

注意:该脚本基于ifconfigUbuntu 16.04 中的输出。用法:

$ ./getIP          # Automatic mode
enp2s0:
    inet 192.168.100.110  netmask 255.255.255.0    broadcast 192.168.100.255
lo:
    inet 127.0.0.1        netmask                  broadcast 255.0.0.0
vmnet1:
    inet 192.168.201.1    netmask 255.255.255.0    broadcast 192.168.201.255
vmnet8:
    inet 192.168.15.1     netmask 255.255.255.0    broadcast 192.168.15.255

$ ./getIP enp2s0    # User's input mode
enp2s0:
    inet 192.168.100.110  netmask 255.255.255.0    broadcast 192.168.100.255

答案3

如果你只想提取接口地址-这似乎是你问题的主要内容- 您可以随时尝试该命令并通过将其传输到或hostname来截取其输出,即:awkgrep

hostname -I | awk '{print $1}'

如果主机是多宿主的,使用时您可以通过更改为、等来awk切换地址输出...请注意,它也适用于 IPv6 地址。$1$2$3

man hostname

-I, --all-ip-addresses 显示主机的所有网络地址。此选项枚举所有网络接口上配置的所有地址。省略环回接口和 IPv6 链路本地地址。与选项 -i 相反,此选项不依赖于名称解析。不要对输出的顺序做任何假设。

无论如何,这只是从主机获取 IP 的另一种(非常简单的)方法。

相关内容