wifi ko after reboot .

Please post any bugs you have found
Post Reply
Message
Author
User avatar
technosaurus
Posts: 4853
Joined: Mon 19 May 2008, 01:24
Location: Blue Springs, MO
Contact:

#16 Post by technosaurus »

greengeek wrote:What does the format of the encoded "mysecret" portion have to be? I tried this by just typing in my passkey which is something like TTYUKJJUOPIKK (that is how I would type it into sns or PWF) but it was obviously not the correct format. Do I need to encode it into ascii or something?

EDIT - this is the message:

Code: Select all

# iwconfig eth1 essid "vodafoneE40C" enc "TTYUKJJUOPIKK"
Error for wireless request "Set Encode" (8B2A) :
    invalid argument "TTYUKJJUOPIKK".
# 
iwconfig from the old wireless tools (and the newer "iw") only does wep encryption (hex digits), but it also does't require a running daemon process. For stronger WPA encryption, you need wpa_supplicant, which has horrible command line tools (there is no way to do anything without a config file) I know this is a horrible reason to use a less secure method but also some of my kids' devices only work on open/wep. I would use an open network if it weren't for "unlimited" != 'unlimited' and being on the hook for crimes a guest committed.

I may start a discussion on toybox's mail list about writing a sane WPA wireless tool with proper unix operation. You shouldn't need to write a config file to get a simple command line program to run.
Check out my [url=https://github.com/technosaurus]github repositories[/url]. I may eventually get around to updating my [url=http://bashismal.blogspot.com]blogspot[/url].

jamesbond
Posts: 3433
Joined: Mon 26 Feb 2007, 05:02
Location: The Blue Marble

#17 Post by jamesbond »

technosaurus wrote:... wpa_supplicant, which has horrible command line tools (there is no way to do anything without a config file)
You don't need a config file. Fatdog's initrd starts (static) wpa_supplicant without any config file, and join networks by issuing commands using wpa_cli. But you can't help needing a daemon, though.
Fatdog64 forum links: [url=http://murga-linux.com/puppy/viewtopic.php?t=117546]Latest version[/url] | [url=https://cutt.ly/ke8sn5H]Contributed packages[/url] | [url=https://cutt.ly/se8scrb]ISO builder[/url]

linus.cl
Posts: 126
Joined: Wed 02 Apr 2014, 14:09
Location: Germany
Contact:

#18 Post by linus.cl »

That is very easy:

Code: Select all

rfkill unblock all

Post Reply