[gobolinux-users] wlan network configuration

Giambattista Bloisi giamby at infinito.it
Tue Jan 22 21:03:47 NZDT 2008


Cavva wrote:
> First... Hi all;
> I'm moving my first steps with gobolinux and i'm not a "skilled linux user",
> so be prepared for a lot (sometimes) stupid question :)
>
> Now the question:
>
> thanks to the RT73 Recipe now I can use my USB WiFi dongle, but i
> don't know how/what write in the /S/S/NetworkOptions file
> (i need to write all the iwconfig & iwpriv stuff)
>
> on my previous system (Debian) i've used something like this:
>
> # Sitecom wireless dongle
> auto rausb0
> iface rausb0 inet dhcp
>        pre-up ifconfig rausb0 up
>        pre-up iwconfig rausb0 essid "******"
>        pre-up iwconfig rausb0 mode Managed
>        pre-up iwpriv rausb0 set AuthMode=WPAPSK
>        pre-up iwpriv rausb0 set EncrypType=TKIP
>        pre-up iwpriv rausb0 set WPAPSK="*********"
>        pre-up ifconfig rausb0 up
>
> But on gobolinux how can i do this?
>   

AFAIK wireless interfaces are not yet supported by NetworkOptions.

As temporary solution, you could use a script such as the one below to 
activate WiFi:
#!/bin/sh
iwconfig rausb0 essid "***" mode Managed
iwpriv rausb0 set AuthMode=WPAPSK
iwpriv rausb0 set EncrypType=TKIP
iwpriv rausb0 set WPAPSK="*********"
dhcpcd rausb0

And launch this scripts in the /S/S/BootScripts/BootUp file.

Regards,




More information about the gobolinux-users mailing list