Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. country=GB
  2. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  3. update_config=1
  4.  
  5. network={
  6. ssid="wifi_name"
  7. psk="wifi_password"
  8. }
  9.  
  10. # The loopback network interface
  11. auto lo
  12. iface lo inet loopback
  13.  
  14. # The primary (wired) network interface
  15. iface eth0 inet dhcp
  16.  
  17. # The wifi (wireless) network interface
  18. auto wlan0
  19. allow-hotplug wlan0
  20. iface wlan0 inet dhcp
  21. wpa-ssid "wifi_name"
  22. wpa-psk "wifi_password"
  23.  
  24. pi@rpi3:~ $ iwconfig
  25. lo no wireless extensions.
  26.  
  27. wlan0 IEEE 802.11 ESSID:off/any
  28. Mode:Managed Access Point: Not-Associated Tx-Power=31 dBm
  29. Retry short limit:7 RTS thr:off Fragment thr:off
  30. Power Management:on
  31.  
  32. eth0 no wireless extensions.
  33.  
  34. pi@rpi3:~ $ ifconfig -a
  35. eth0 Link encap:Ethernet HWaddr ____
  36. inet addr:192.168.0.14 Bcast:192.168.0.255 Mask:255.255.255.0
  37. inet6 addr: _____ Scope:Link
  38. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  39. RX packets:1874 errors:0 dropped:2 overruns:0 frame:0
  40. TX packets:162 errors:0 dropped:0 overruns:0 carrier:0
  41. collisions:0 txqueuelen:1000
  42. RX bytes:95269 (93.0 KiB) TX bytes:21921 (21.4 KiB)
  43.  
  44. lo Link encap:Local Loopback
  45. inet addr:127.0.0.1 Mask:255.0.0.0
  46. inet6 addr: ::1/128 Scope:Host
  47. UP LOOPBACK RUNNING MTU:65536 Metric:1
  48. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  49. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  50. collisions:0 txqueuelen:1
  51. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
  52.  
  53. wlan0 Link encap:Ethernet HWaddr ____
  54. inet6 addr: _____ Scope:Link
  55. UP BROADCAST MULTICAST MTU:1500 Metric:1
  56. RX packets:12 errors:0 dropped:0 overruns:0 frame:0
  57. TX packets:23 errors:0 dropped:0 overruns:0 carrier:0
  58. collisions:0 txqueuelen:1000
  59. RX bytes:1188 (1.1 KiB) TX bytes:3422 (3.3 KiB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement