Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.51 KB | None | 0 0
  1. $ ifconfig
  2. br-34273b575e0c: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
  3. inet 192.168.16.1 netmask 255.255.240.0 broadcast 192.168.31.255
  4. ether 02:42:3a:21:f6:27 txqueuelen 0 (Ethernet)
  5. RX packets 0 bytes 0 (0.0 B)
  6. RX errors 0 dropped 0 overruns 0 frame 0
  7. TX packets 0 bytes 0 (0.0 B)
  8. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  9.  
  10. br-66d8c8670d0e: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
  11. inet 172.17.0.1 netmask 255.255.0.0 broadcast 172.17.255.255
  12. ether 02:42:f5:1a:10:db txqueuelen 0 (Ethernet)
  13. RX packets 0 bytes 0 (0.0 B)
  14. RX errors 0 dropped 0 overruns 0 frame 0
  15. TX packets 0 bytes 0 (0.0 B)
  16. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  17.  
  18. docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
  19. inet 192.168.0.1 netmask 255.255.240.0 broadcast 192.168.15.255
  20. ether 02:42:b4:10:d5:46 txqueuelen 0 (Ethernet)
  21. RX packets 0 bytes 0 (0.0 B)
  22. RX errors 0 dropped 0 overruns 0 frame 0
  23. TX packets 0 bytes 0 (0.0 B)
  24. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  25.  
  26. enp0s31f6: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
  27. ether 54:ee:75:9c:79:79 txqueuelen 1000 (Ethernet)
  28. RX packets 0 bytes 0 (0.0 B)
  29. RX errors 0 dropped 0 overruns 0 frame 0
  30. TX packets 0 bytes 0 (0.0 B)
  31. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  32. device interrupt 16 memory 0xf1200000-f1220000
  33.  
  34. lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
  35. inet 127.0.0.1 netmask 255.0.0.0
  36. inet6 ::1 prefixlen 128 scopeid 0x10<host>
  37. loop txqueuelen 1 (Local Loopback)
  38. RX packets 179495 bytes 68779635 (68.7 MB)
  39. RX errors 0 dropped 0 overruns 0 frame 0
  40. TX packets 179495 bytes 68779635 (68.7 MB)
  41. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  42.  
  43. tun0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1500
  44. inet 10.90.0.25 netmask 255.255.255.255 destination 10.90.0.26
  45. inet6 fe80::e7df:a548:a751:1a60 prefixlen 64 scopeid 0x20<link>
  46. unspec 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 txqueuelen 100 (UNSPEC)
  47. RX packets 36644 bytes 2095849 (2.0 MB)
  48. RX errors 0 dropped 0 overruns 0 frame 0
  49. TX packets 37292 bytes 6000985 (6.0 MB)
  50. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  51.  
  52. tun1: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1410
  53. inet 172.18.192.239 netmask 255.255.255.255 destination 172.18.192.239
  54. inet6 fe80::d9fb:c156:fad1:ac79 prefixlen 64 scopeid 0x20<link>
  55. unspec 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 txqueuelen 500 (UNSPEC)
  56. RX packets 4770 bytes 4650871 (4.6 MB)
  57. RX errors 0 dropped 0 overruns 0 frame 0
  58. TX packets 4465 bytes 625207 (625.2 KB)
  59. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  60.  
  61. wlp4s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  62. inet 192.168.22.153 netmask 255.255.255.0 broadcast 192.168.22.255
  63. inet6 fe80::f641:6c18:e1bd:74b7 prefixlen 64 scopeid 0x20<link>
  64. ether e4:b3:18:40:8b:0c txqueuelen 1000 (Ethernet)
  65. RX packets 137321 bytes 48961571 (48.9 MB)
  66. RX errors 0 dropped 0 overruns 0 frame 0
  67. TX packets 122946 bytes 32334816 (32.3 MB)
  68. TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
  69.  
  70. $ ip route show
  71. default dev tun1 scope link
  72. default via 192.168.22.1 dev wlp4s0 proto static metric 600
  73. 10.83.56.20 dev tun1 scope link
  74. 10.83.57.20 dev tun1 scope link
  75. 10.90.0.0/16 via 10.90.0.26 dev tun0
  76. 10.90.0.26 dev tun0 proto kernel scope link src 10.90.0.25
  77. 10.91.0.0/16 via 10.90.0.26 dev tun0
  78. 18.219.117.84 via 10.90.0.26 dev tun0
  79. 35.205.53.195 via 10.90.0.26 dev tun0
  80. 136.179.237.28 via 192.168.22.1 dev wlp4s0 src 192.168.22.153
  81. 169.254.0.0/16 dev br-34273b575e0c scope link metric 1000 linkdown
  82. 172.17.0.0/16 dev br-66d8c8670d0e proto kernel scope link src 172.17.0.1 linkdown
  83. 172.18.192.239 dev tun1 scope link
  84. 192.168.0.0/20 dev docker0 proto kernel scope link src 192.168.0.1 linkdown
  85. 192.168.16.0/20 dev br-34273b575e0c proto kernel scope link src 192.168.16.1 linkdown
  86. 192.168.22.0/24 dev wlp4s0 proto kernel scope link src 192.168.22.153 metric 600
  87. 213.191.218.129 via 10.90.0.26 dev tun0
  88. 213.191.218.200 via 10.90.0.26 dev tun0
  89. 213.191.218.201 via 10.90.0.26 dev tun0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement