Created
November 27, 2014 08:17
-
-
Save kelseyhightower/c1425cac2d8454796c83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| core@standalone ~ $ cat /etc/os-release | |
| NAME=CoreOS | |
| ID=coreos | |
| VERSION=509.1.0 | |
| VERSION_ID=509.1.0 | |
| BUILD_ID= | |
| PRETTY_NAME="CoreOS 509.1.0" | |
| ANSI_COLOR="1;32" | |
| HOME_URL="https://coreos.com/" | |
| BUG_REPORT_URL="https://github.com/coreos/bugs/issues" | |
| core@standalone ~ $ ifconfig | |
| docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 | |
| inet 10.244.42.1 netmask 255.255.255.0 broadcast 0.0.0.0 | |
| ether 56:84:7a:fe:97:99 txqueuelen 0 (Ethernet) | |
| RX packets 0 bytes 0 (0.0 B) | |
| RX errors 0 dropped 0 overruns 0 frame 0 | |
| TX packets 0 bytes 0 (0.0 B) | |
| TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | |
| ens192: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 | |
| inet 10.0.1.171 netmask 255.255.255.0 broadcast 10.0.1.255 | |
| inet6 2601:7:2100:7cf:20c:29ff:fe9c:a68a prefixlen 64 scopeid 0x0<global> | |
| inet6 fe80::20c:29ff:fe9c:a68a prefixlen 64 scopeid 0x20<link> | |
| ether 00:0c:29:9c:a6:8a txqueuelen 1000 (Ethernet) | |
| RX packets 59967 bytes 73582727 (70.1 MiB) | |
| RX errors 0 dropped 0 overruns 0 frame 0 | |
| TX packets 15994 bytes 1338840 (1.2 MiB) | |
| TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | |
| flannel0: flags=81<UP,POINTOPOINT,RUNNING> mtu 1472 | |
| inet 10.244.42.0 netmask 255.255.0.0 destination 10.244.42.0 | |
| unspec 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 txqueuelen 500 (UNSPEC) | |
| RX packets 845 bytes 47320 (46.2 KiB) | |
| RX errors 0 dropped 0 overruns 0 frame 0 | |
| TX packets 845 bytes 260260 (254.1 KiB) | |
| 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 0 (Local Loopback) | |
| RX packets 1868069 bytes 248142977 (236.6 MiB) | |
| RX errors 0 dropped 0 overruns 0 frame 0 | |
| TX packets 1868069 bytes 248142977 (236.6 MiB) | |
| TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 | |
| core@standalone ~ $ route -n | |
| Kernel IP routing table | |
| Destination Gateway Genmask Flags Metric Ref Use Iface | |
| 0.0.0.0 10.0.1.1 0.0.0.0 UG 1024 0 0 ens192 | |
| 10.0.1.0 0.0.0.0 255.255.255.0 U 0 0 0 ens192 | |
| 10.0.1.1 0.0.0.0 255.255.255.255 UH 1024 0 0 ens192 | |
| 10.244.0.0 0.0.0.0 255.255.0.0 U 0 0 0 flannel0 | |
| 10.244.42.0 0.0.0.0 255.255.255.0 U 0 0 0 docker0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment