mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
02ef43380e
This script gathers some basic information from a system that might be useful to help troubleshoot problems. If added into an image including the proper binaries, running looks something like this: docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /var/run/docker/netns:/var/run/docker/netns \ --privileged --net=host nwsupport /bin/support Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
36 lines
1 KiB
Bash
Executable file
36 lines
1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Required tools
|
|
DOCKER="${DOCKER:-docker}"
|
|
NSENTER="${NSENTER:-nsenter}"
|
|
BRIDGE="${BRIDGE:-bridge}"
|
|
BRCTL="${BRCTL:-brctl}"
|
|
IPTABLES="${IPTABLES:-iptables}"
|
|
|
|
NSDIR=/var/run/docker/netns
|
|
BRIDGEIF=br0
|
|
|
|
function die {
|
|
echo $*
|
|
exit 1
|
|
}
|
|
|
|
type -P ${DOCKER} > /dev/null || die "This tool requires the docker binary"
|
|
type -P ${NSENTER} > /dev/null || die "This tool requires nsenter"
|
|
type -P ${BRIDGE} > /dev/null || die "This tool requires bridge"
|
|
type -P ${BRCTL} > /dev/null || die "This tool requires brctl"
|
|
type -P ${IPTABLES} > /dev/null || die "This tool requires iptables"
|
|
|
|
echo "iptables configuration"
|
|
${IPTABLES} -n -v -L -t filter
|
|
${IPTABLES} -n -v -L -t nat
|
|
echo ""
|
|
|
|
echo "Overlay network configuration"
|
|
for networkID in $(${DOCKER} network ls --filter driver=overlay -q) ; do
|
|
echo "Network ${networkID}"
|
|
nspath=(${NSDIR}/*-$(echo ${networkID}| cut -c1-10))
|
|
${NSENTER} --net=${nspath[0]} ${BRIDGE} fdb show ${BRIDGEIF}
|
|
${NSENTER} --net=${nspath[0]} ${BRCTL} showmacs ${BRIDGEIF}
|
|
echo ""
|
|
done
|