Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. eth1 Link encap:Ethernet HWaddr 00:1e:06:30:5b:03
  2. inet addr:192.168.0.107 Bcast:192.168.0.255 Mask:255.255.255.0
  3. inet6 addr: fe80::21e:6ff:fe30:5b03/64 Scope:Link
  4. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  5. RX packets:37047 errors:0 dropped:0 overruns:0 frame:0
  6. TX packets:1752 errors:0 dropped:0 overruns:0 carrier:0
  7. collisions:0 txqueuelen:1000
  8. RX bytes:3351437 (3.1 MiB) TX bytes:176100 (171.9 KiB)
  9.  
  10. lo Link encap:Local Loopback
  11. inet addr:127.0.0.1 Mask:255.0.0.0
  12. inet6 addr: ::1/128 Scope:Host
  13. UP LOOPBACK RUNNING MTU:65536 Metric:1
  14. RX packets:796 errors:0 dropped:0 overruns:0 frame:0
  15. TX packets:796 errors:0 dropped:0 overruns:0 carrier:0
  16. collisions:0 txqueuelen:0
  17. RX bytes:284838 (278.1 KiB) TX bytes:284838 (278.1 KiB)
  18.  
  19. wlan0 Link encap:Ethernet HWaddr 98:de:d0:1b:95:5a
  20. inet addr:172.24.1.1 Bcast:172.24.1.255 Mask:255.255.255.0
  21. inet6 addr: fe80::9ade:d0ff:fe1b:955a/64 Scope:Link
  22. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  23. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  24. TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
  25. collisions:0 txqueuelen:1000
  26. RX bytes:0 (0.0 B) TX bytes:576 (576.0 B)
  27.  
  28. interface=wlan0 # Use interface wlan0
  29. listen-address=172.24.1.1 # Explicitly specify the address to listen on
  30. #bind-interfaces # Bind to the interface to make sure we aren't sending things elsewher$
  31. server=8.8.8.8 # Forward DNS requests to Google DNS
  32. domain-needed # Don't forward short names
  33. bogus-priv # Never forward addresses in the non-routed address spaces.
  34. dhcp-range=172.24.1.50,172.24.1.150,12h # Assign IP addresses between 172.24.1.50 and 172.24$
  35. address=/#/172.24.1.1
  36. except-interface=eth1
  37.  
  38. # This is the name of the WiFi interface we configured above
  39. interface=wlan0
  40.  
  41. # Use the nl80211 driver with the brcmfmac driver
  42. driver=nl80211
  43.  
  44. # This is the name of the network
  45. ssid=Pi3-AP
  46.  
  47. # Use the 2.4GHz band
  48. hw_mode=g
  49.  
  50. # Use channel 6
  51. channel=6
  52.  
  53. # Enable 802.11n
  54. ieee80211n=1
  55.  
  56. # Enable WMM
  57. wmm_enabled=1
  58.  
  59. # Enable 40MHz channels with 20ns guard interval
  60. ht_capab=[HT40][SHORT-GI-20][DSSS_CCK-40]
  61.  
  62. # Accept all MAC addresses
  63. macaddr_acl=0
  64.  
  65. # Use WPA authentication
  66. auth_algs=1
  67.  
  68. # Require clients to know the network name
  69. ignore_broadcast_ssid=0
  70.  
  71. # Use WPA2
  72. wpa=2
  73.  
  74. # Use a pre-shared key
  75. wpa_key_mgmt=WPA-PSK
  76.  
  77. # The network passphrase
  78. wpa_passphrase=raspberry
  79.  
  80. # Use AES, instead of TKIP
  81. rsn_pairwise=CCMP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement