Advertisement
Guest User

Untitled

a guest
Oct 5th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. ubuntu@ubuntu:~$ iwconfig
  2. wlan0 unassociated Nickname:"<WIFI@REALTEK>"
  3. Mode:Managed Frequency=2.412 GHz Access Point: Not-Associated
  4. Sensitivity:0/0
  5. Retry:off RTS thr:off Fragment thr:off
  6. Power Management:off
  7. Link Quality:0 Signal level:0 Noise level:0
  8. Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
  9. Tx excessive retries:0 Invalid misc:0 Missed beacon:0
  10.  
  11. lo no wireless extensions.
  12.  
  13. eth0 no wireless extensions.
  14.  
  15.  
  16.  
  17. ubuntu@ubuntu:~$ ifconfig
  18. eth0 Link encap:Ethernet HWaddr b8:27:eb:15:fb:dc
  19. inet addr:192.168.1.12 Bcast:192.168.1.255 Mask:255.255.255.0
  20. inet6 addr: fe80::ba27:ebff:fe15:fbdc/64 Scope:Link
  21. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  22. RX packets:230 errors:0 dropped:0 overruns:0 frame:0
  23. TX packets:180 errors:0 dropped:0 overruns:0 carrier:0
  24. collisions:0 txqueuelen:1000
  25. RX bytes:20250 (20.2 KB) TX bytes:26086 (26.0 KB)
  26.  
  27. lo Link encap:Local Loopback
  28. inet addr:127.0.0.1 Mask:255.0.0.0
  29. inet6 addr: ::1/128 Scope:Host
  30. UP LOOPBACK RUNNING MTU:65536 Metric:1
  31. RX packets:16 errors:0 dropped:0 overruns:0 frame:0
  32. TX packets:16 errors:0 dropped:0 overruns:0 carrier:0
  33. collisions:0 txqueuelen:0
  34. RX bytes:1184 (1.1 KB) TX bytes:1184 (1.1 KB)
  35.  
  36. wlan0 Link encap:Ethernet HWaddr 74:da:38:cf:a0:fa
  37. UP BROADCAST MULTICAST MTU:1500 Metric:1
  38. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  39. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  40. collisions:0 txqueuelen:1000
  41. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
  42.  
  43.  
  44.  
  45. ubuntu@ubuntu:~$ cat /etc/network/interfaces
  46. # interfaces(5) file used by ifup(8) and ifdown(8)
  47. # Include files from /etc/network/interfaces.d:
  48. source-directory /etc/network/interfaces.d
  49.  
  50. # The loopback network interface
  51. auto lo
  52. iface lo inet loopback
  53.  
  54. # The primary network interface
  55. allow-hotplug eth0
  56. iface eth0 inet dhcp
  57.  
  58. # For the usb-wifi adapter
  59. allow-hotplug wlan0
  60. auto wlan0
  61.  
  62. iface wlan0 inet dhcp
  63. wpa-ssid "Deliver beer to 301"
  64. wpa-psk "<my password>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement