Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
#!/bin/bash
interface="wlan0"
ifconfig $interface up
iwconfig $interface mode Managed
iwpriv $interface set WirelessMode=0
iwpriv $interface set NetworkType=Infra
iwpriv $interface set AuthMode=WPAPSK
iwpriv $interface set EncrypType=TKIP
iwpriv $interface set SSID="yourSSID"
iwpriv $interface set WPAPSK="yourPASSPHRASE"
#iwpriv $interface set channel=11
#iwpriv $interface set TxRate=0
dhclient $interface