Advertisement
Guest User

Untitled

a guest
Mar 25th, 2016
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. Broadcom dongle:
  2. -----------------
  3. pi@raspberrypi ~ $ cat /etc/resolv.conf
  4. # Generated by resolvconf
  5. nameserver 62.179.1.60
  6. nameserver 62.179.1.61
  7.  
  8. pi@raspberrypi ~ $ ping -c3 $(ip route | awk '/default/ {print $3}')
  9. PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
  10. 64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=11.8 ms
  11. 64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=1.77 ms
  12. 64 bytes from 192.168.1.1: icmp_seq=3 ttl=64 time=3.22 ms
  13. --- 192.168.1.1 ping statistics ---
  14. 3 packets transmitted, 3 received, 0% packet loss, time 2003ms
  15. rtt min/avg/max/mdev = 1.778/5.631/11.888/4.464 ms
  16.  
  17. pi@raspberrypi ~ $ ping -c3 8.8.8.8
  18. PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
  19. 64 bytes from 8.8.8.8: icmp_seq=1 ttl=43 time=42.6 ms
  20. 64 bytes from 8.8.8.8: icmp_seq=2 ttl=43 time=40.7 ms
  21. 64 bytes from 8.8.8.8: icmp_seq=3 ttl=43 time=44.4 ms
  22. --- 8.8.8.8 ping statistics ---
  23. 3 packets transmitted, 3 received, 0% packet loss, time 2001ms
  24. rtt min/avg/max/mdev = 40.787/42.624/44.452/1.505 ms
  25.  
  26. pi@raspberrypi ~ $ ping -c3 google.com
  27. PING google.com (216.58.209.46) 56(84) bytes of data.
  28. 64 bytes from waw02s05-in-f14.1e100.net (216.58.209.46): icmp_seq=1 ttl=55 time=20.5 ms
  29. 64 bytes from waw02s05-in-f14.1e100.net (216.58.209.46): icmp_seq=2 ttl=55 time=8.67 ms
  30. 64 bytes from waw02s05-in-f14.1e100.net (216.58.209.46): icmp_seq=3 ttl=55 time=9.28 ms
  31. --- google.com ping statistics ---
  32. 3 packets transmitted, 3 received, 0% packet loss, time 2003ms
  33. rtt min/avg/max/mdev = 8.672/12.837/20.559/5.467 ms
  34.  
  35. pi@raspberrypi ~ $ ip route
  36. default via 192.168.1.1 dev wlan0 metric 303
  37. 192.168.1.0/24 dev wlan0 proto kernel scope link src 192.168.1.101 metric 303
  38.  
  39.  
  40.  
  41. RTL8192CU dongle:
  42. -----------------
  43. pi@raspberrypi ~ $ cat /etc/resolv.conf
  44. # Generated by resolvconf
  45. nameserver 62.179.1.60
  46. nameserver 62.179.1.61
  47.  
  48. pi@raspberrypi ~ $ ping -c3 $(ip route | awk '/default/ {print $3}')
  49. PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
  50. 64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=24.8 ms
  51. 64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=5.78 ms
  52. 64 bytes from 192.168.1.1: icmp_seq=3 ttl=64 time=1.64 ms
  53. --- 192.168.1.1 ping statistics ---
  54. 3 packets transmitted, 3 received, 0% packet loss, time 2002ms
  55. rtt min/avg/max/mdev = 1.642/10.757/24.842/10.102 ms
  56.  
  57. pi@raspberrypi ~ $ ping -c3 8.8.8.8
  58. PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
  59. 64 bytes from 8.8.8.8: icmp_seq=1 ttl=43 time=61.4 ms
  60. 64 bytes from 8.8.8.8: icmp_seq=2 ttl=43 time=43.4 ms
  61. 64 bytes from 8.8.8.8: icmp_seq=3 ttl=43 time=40.1 ms
  62. --- 8.8.8.8 ping statistics ---
  63. 3 packets transmitted, 3 received, 0% packet loss, time 2003ms
  64. rtt min/avg/max/mdev = 40.156/48.361/61.466/9.365 ms
  65.  
  66.  
  67. pi@raspberrypi ~ $ ping -c3 google.com
  68. PING google.com (216.58.209.46) 56(84) bytes of data.
  69. 64 bytes from waw02s05-in-f46.1e100.net (216.58.209.46): icmp_seq=1 ttl=55 time=12.8 ms
  70. 64 bytes from waw02s05-in-f46.1e100.net (216.58.209.46): icmp_seq=2 ttl=55 time=10.8 ms
  71. 64 bytes from waw02s05-in-f46.1e100.net (216.58.209.46): icmp_seq=3 ttl=55 time=8.48 ms
  72. --- google.com ping statistics ---
  73. 3 packets transmitted, 3 received, 0% packet loss, time 2002ms
  74. rtt min/avg/max/mdev = 8.486/10.749/12.874/1.796 ms
  75.  
  76. pi@raspberrypi ~ $ ip route
  77. default via 192.168.1.1 dev wlan0 metric 303
  78. 192.168.1.0/24 dev wlan0 proto kernel scope link src 192.168.1.102 metric 303
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement