diagnose: try a ping, grab /etc/resolv.conf and route -n

Signed-off-by: David Scott <dave.scott@docker.com>
This commit is contained in:
David Scott 2016-03-30 14:25:58 +01:00
parent 75f60eca3c
commit a97038273e

View File

@ -11,12 +11,15 @@ ps uax > "ps -aux"
netstat -an > "netstat -an" netstat -an > "netstat -an"
iptables -L > "iptables -L" iptables -L > "iptables -L"
ifconfig -a > "ifconfig -a" ifconfig -a > "ifconfig -a"
route -n > "route -n"
brctl show > "brctl show" brctl show > "brctl show"
dmesg > dmesg dmesg > dmesg
timeout -t 2 docker ps > "docker ps" timeout -t 2 docker ps > "docker ps"
mount > "mount" mount > "mount"
df > "df" df > "df"
/usr/bin/diagnostics > "diagnostics" /usr/bin/diagnostics > "diagnostics"
ping -w 5 8.8.8.8 &> "ping -w 5 8.8.8.8"
cp /etc/resolv.conf .
dig docker.com > "dig docker.com" dig docker.com > "dig docker.com"
wget -O - http://www.docker.com/ &> "wget docker.com" wget -O - http://www.docker.com/ &> "wget docker.com"