直接 cat /proc/net/fib_trie 即可,前提是该容器有 cat 命令。

在容器中有时没有 ip 、ifconfig 命令,这时候该如何查看该容器的 IP 呢,可以通过

#!/usr/bin/env bash

## Get the primary and secundary IPs
awk '/\|--/ && !/\.0$|\.255$/ {print $2}' /proc/net/fib_trie

## Get only the primary IPs
awk '/32 host/ { print i } {i=$2}' /proc/net/fib_trie