mirror of
https://github.com/microsoft/WSL.git
synced 2025-12-10 17:47:59 -06:00
16 lines
258 B
Bash
16 lines
258 B
Bash
#! /bin/bash
|
|
set -xu
|
|
|
|
# Gather distro & kernel info.
|
|
lsb_release -a || cat /etc/issue /etc/os-release
|
|
uname -a
|
|
|
|
# Output adapter & routing configuration.
|
|
ip a
|
|
ip route show table all
|
|
ip neighbor
|
|
ip link
|
|
|
|
# Display the DNS configuration.
|
|
cat /etc/resolv.conf
|