How to connect with wifi ?
#23
Here is the ifconfig:

Code:
debian@pine64pro:~$ sudo ifconfig
[sudo] password for debian:
eth0      Link encap:Ethernet  HWaddr 36:c9:e3:f1:b8:05  
         inet addr:192.168.0.112  Bcast:192.168.0.255  Mask:255.255.255.0
         inet6 addr: fe80::34c9:e3ff:fef1:b805/64 Scope:Link
         UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
         RX packets:2064 errors:0 dropped:0 overruns:0 frame:0
         TX packets:960 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:1000
         RX bytes:2675638 (2.5 MiB)  TX bytes:87294 (85.2 KiB)
         Interrupt:114

lo        Link encap:Local Loopback  
         inet addr:127.0.0.1  Mask:255.0.0.0
         inet6 addr: ::1/128 Scope:Host
         UP LOOPBACK RUNNING  MTU:65536  Metric:1
         RX packets:4 errors:0 dropped:0 overruns:0 frame:0
         TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:0
         RX bytes:240 (240.0 B)  TX bytes:240 (240.0 B)

rename4   Link encap:Ethernet  HWaddr 34:c3:d2:6d:4b:68  
         inet addr:192.168.1.111  Bcast:192.168.1.255  Mask:255.255.255.0
         inet6 addr: fe80::36c3:d2ff:fe6d:4b68/64 Scope:Link
         UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
         RX packets:404 errors:0 dropped:0 overruns:0 frame:0
         TX packets:105 errors:0 dropped:1 overruns:0 carrier:0
         collisions:0 txqueuelen:1000
         RX bytes:88215 (86.1 KiB)  TX bytes:16487 (16.1 KiB)

Here is the iwconfig:

Code:
debian@pine64pro:~$ sudo iwconfig
eth0      no wireless extensions.

rename4   IEEE 802.11bgn  ESSID:"Propagation-Guest-2.4GHz"  Nickname:"<WIFI@REALTEK>"
         Mode:Managed  Frequency:2.437 GHz  Access Point: F8:1A:67:2E:F7:D9  
         Bit Rate:150 Mb/s   Sensitivity:0/0  
         Retry:off   RTS thr:off   Fragment thr:off
         Encryption key:****-****-****-****-****-****-****-****   Security mode:open
         Power Management:off
         Link Quality=99/100  Signal level=-68 dBm  Noise level=0 dBm
         Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
         Tx excessive retries:0  Invalid misc:0   Missed beacon:0

sit0      no wireless extensions.

lo        no wireless extensions.

wlan1     unassociated  Nickname:"<WIFI@REALTEK>"
         Mode:Managed  Frequency=2.412 GHz  Access Point: Not-Associated  
         Sensitivity:0/0  
         Retry:off   RTS thr:off   Fragment thr:off
         Encryption key:off
         Power Management:off
         Link Quality=0/100  Signal level=0 dBm  Noise level=0 dBm
         Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
         Tx excessive retries:0  Invalid misc:0   Missed beacon:0

and here is my interfaces:

Code:
# interfaces(5) file used by ifup(8) and ifdown(8)
# Include files from /etc/network/interfaces.d:
#source-directory /etc/network/interfaces.d

# Primary Ethernet
auto eth0
iface eth0 inet dhcp

# Disable Secondary Wireless Lan (8723bs Has Two Interfaces)
iface wlan1 inet manual

#wlan0
#auto wlan0
#iface wlan0 inet dhcp
#wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
#iface pine64 inet dhcp

#rename4/wlan0
auto rename4
iface rename4 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface pine64 inet dhcp


Also my wpa_supplicant.conf:
Code:
network={
    ssid="Propagation-Guest-2.4GHz"
    psk="1234567890"
    proto=WPA RSN
    key_mgmt=WPA-PSK
    pairwise=CCMP TKIP
    group=CCMP
    auth_alg=OPEN
    id_str="pine64"
}
  Reply


Messages In This Thread
How to connect with wifi ? - by yirmidokuz - 04-27-2016, 02:06 AM
RE: How to connect with wifi ? - by baryluk - 04-27-2016, 02:41 PM
RE: How to connect with wifi ? - by yirmidokuz - 04-29-2016, 12:18 AM
RE: How to connect with wifi ? - by Bio - 04-29-2016, 12:00 PM
RE: How to connect with wifi ? - by yirmidokuz - 04-30-2016, 09:02 AM
RE: How to connect with wifi ? - by Webtest - 05-07-2016, 07:12 AM
RE: How to connect with wifi ? - by Webtest - 05-07-2016, 11:45 AM
RE: How to connect with wifi ? - by Webtest - 05-07-2016, 01:52 PM
RE: How to connect with wifi ? - by yirmidokuz - 05-11-2016, 12:47 AM
RE: How to connect with wifi ? - by yirmidokuz - 05-11-2016, 12:52 PM
RE: How to connect with wifi ? - by yirmidokuz - 05-13-2016, 12:00 PM
RE: How to connect with wifi ? - by jl_678 - 05-16-2016, 09:36 AM
RE: How to connect with wifi ? - by jl_678 - 05-16-2016, 12:09 PM
RE: How to connect with wifi ? - by jl_678 - 05-16-2016, 02:12 PM
RE: How to connect with wifi ? - by miffy_bf - 05-22-2016, 10:11 AM
RE: How to connect with wifi ? - by jl_678 - 05-22-2016, 01:49 PM
RE: How to connect with wifi ? - by miffy_bf - 05-22-2016, 08:49 PM
RE: How to connect with wifi ? - by jl_678 - 05-23-2016, 09:59 AM
RE: How to connect with wifi ? - by miffy_bf - 05-23-2016, 11:22 PM
RE: How to connect with wifi ? - by jl_678 - 05-24-2016, 07:20 AM
RE: How to connect with wifi ? - by JamesHarris - 05-25-2016, 05:55 PM
RE: How to connect with wifi ? - by miffy_bf - 05-25-2016, 11:20 PM
RE: How to connect with wifi ? - by miffy_bf - 05-26-2016, 04:44 AM
RE: How to connect with wifi ? - by jl_678 - 05-28-2016, 07:46 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Q4OS WiFi Dongle not working cheezmeister 3 4,781 04-07-2017, 08:01 AM
Last Post: iccoldbeer
  Wifi connect through terminal? cheezmeister 0 2,067 04-02-2017, 09:44 AM
Last Post: cheezmeister
  Bringing up wifi dongle m16bishop 2 4,274 07-04-2016, 03:24 PM
Last Post: m16bishop

Forum Jump:


Users browsing this thread: 1 Guest(s)