Difference between revisions of "Beagleboard Black Wireless"

From Teknologisk videncenter
Jump to: navigation, search
m
m
Line 1: Line 1:
 +
=Basic connecting=
 +
Initial Internet access to upgrade and install additional packages. (Connect to open WiFi AP)
 +
<source lang=cli>
 +
iwconfig wlan0 essid Wifi6D50_GUEST
 +
iwconfig wlan0 
 +
wlan0    IEEE 802.11  ESSID:"Wifi6D50_GUEST"
 +
          Mode:Managed  Frequency:2.412 GHz  Access Point: 72:D4:53:3F:6D:57
 +
          Bit Rate=144.4 Mb/s  Tx-Power=20 dBm
 +
          Retry short limit:7  RTS thr:off  Fragment thr:off
 +
          Encryption key:off
 +
          Power Management:off
 +
          Link Quality=63/70  Signal level=-47 dBm
 +
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
 +
          Tx excessive retries:0  Invalid misc:0  Missed beacon:0
 +
dhclient wlan0
 +
ifconfig wlan0
 +
wlan0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
 +
        inet 192.168.2.126  netmask 255.255.255.0  broadcast 192.168.2.255
 +
        ether 38:d2:69:d5:dc:3d  txqueuelen 1000  (Ethernet)
 +
        RX packets 136  bytes 7764 (7.5 KiB)
 +
        RX errors 0  dropped 0  overruns 0  frame 0
 +
        TX packets 16  bytes 3540 (3.4 KiB)
 +
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
 +
</source>
 +
 +
 +
 +
 
=Links=
 
=Links=
 
*[https://www.fis.gatech.edu/how-to-configure-bbw-wifi/ Wireless Getting Started] (Best)  
 
*[https://www.fis.gatech.edu/how-to-configure-bbw-wifi/ Wireless Getting Started] (Best)  
 
*[https://linuxconfig.org/how-to-connect-to-wifi-from-the-cli-on-debian-10-buster Wireless Getting Started]
 
*[https://linuxconfig.org/how-to-connect-to-wifi-from-the-cli-on-debian-10-buster Wireless Getting Started]
 
[[Category:Beagleboard Black]]
 
[[Category:Beagleboard Black]]

Revision as of 10:41, 19 November 2023

Basic connecting

Initial Internet access to upgrade and install additional packages. (Connect to open WiFi AP)

iwconfig wlan0 essid Wifi6D50_GUEST
iwconfig wlan0  
wlan0     IEEE 802.11  ESSID:"Wifi6D50_GUEST"
          Mode:Managed  Frequency:2.412 GHz  Access Point: 72:D4:53:3F:6D:57
          Bit Rate=144.4 Mb/s   Tx-Power=20 dBm
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality=63/70  Signal level=-47 dBm
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0
dhclient wlan0
ifconfig wlan0
wlan0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        inet 192.168.2.126  netmask 255.255.255.0  broadcast 192.168.2.255
        ether 38:d2:69:d5:dc:3d  txqueuelen 1000  (Ethernet)
        RX packets 136  bytes 7764 (7.5 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 16  bytes 3540 (3.4 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0



Links