Difference between revisions of "Command line wifi configuration"

From Studio Kousagi Wiki
Jump to: navigation, search
(Created page with "If you don't have a remote control for your NeTV, or you lost it, you can still configure wifi. Do the following: * Plug NeTV into the USB port of your computer * wait for NeT...")
 
Line 10: Line 10:
 
<code>
 
<code>
 
cd /psp
 
cd /psp
 +
 
cat > network_config
 
cat > network_config
 +
 
<configuration allocation="dhcp" encryption="AES" auth="WPAPSK" key="foobar" ssid="yourssid" type="wlan" />
 
<configuration allocation="dhcp" encryption="AES" auth="WPAPSK" key="foobar" ssid="yourssid" type="wlan" />
 
^D
 
^D
 +
 
killall hostapd
 
killall hostapd
 +
 
killall dnsmasq
 
killall dnsmasq
 +
 
/etc/init.d/NetworkManager restart
 
/etc/init.d/NetworkManager restart
 
</code>
 
</code>

Revision as of 16:25, 3 January 2012

If you don't have a remote control for your NeTV, or you lost it, you can still configure wifi.

Do the following:

  • Plug NeTV into the USB port of your computer
  • wait for NeTV to boot and register as an ethernet device.
  • ssh to 10.0.88.1 as root
  • from here, you will need to do the following:

cd /psp

cat > network_config

<configuration allocation="dhcp" encryption="AES" auth="WPAPSK" key="foobar" ssid="yourssid" type="wlan" /> ^D

killall hostapd

killall dnsmasq

/etc/init.d/NetworkManager restart