I ended up using an old router to create a separate 2.4G access point in my living room. This gave the GameShell a strong enough signal to maintain its connection without modifying my primary router’s configuration.
If I use my portable WiMAX router (that I use for work) it will connect to the router, but the problem is I do not get wireless on my portable WiMAX router at home ( live in the country) so at best I can just transfer roms from my pc to my game shell.
I took my gameshell to work (in the city where I get internet on my WiMAX router) and updated my gameshell but it still won’t connect at home.
I know it is a hidden network issue or a dual 2.4/5ghz issue, and I am not going to change my entire network setup just for the gameshell.
I also won’t unhide my network as then all the vacationers try to steal Wi-Fi when they hit the beach.
OK, still cant get it to connect. I am able to see the “” networks in the command line and get the channel info etc… but not able to get the gameshell to connect. I even unhid my network temporarily to see if it would work and no go.
Really don’t know what to do at this point (I have to do all this with no internet access as I can only ssh into my gameshell using my wimax router which is unable to receive an internet signal at home).
I was able to connect to my hidden network last night and ssh into the gameshell with no disconnects.
It did take a minute for the “hidden” network to show up in my list of available connections but once it did, everything was fine.
I still will play around with the connection settings to see what I can do to make it better then maybe I will write a tutorial (if I can remember everything I did to make it work).
I would love to see a write-up of how you got it to work. I am having issues with connecting to my hidden network at home. I was able to update to the current interface through my cell phone hotspot but nothing more than that.
So I have faced the same wireless issues after unboxing my new precious thing, I could not dumb down my router’s WiFi enough to make it work with it, and I really didn’t want to dig out my old routers for this, and I have eventually found another working solution, to create a hotspot of my laptop.
There are several ways to achieve this, there is a guide which covers most of the methods, I personally recommend Connectify, which would make the task very easy and also provides internet connection sharing from your ethernet to your wifi module (when using a laptop, or having ethernet and wifi on your computer)
This actually tested and working for me using Connectify and Win7 with my laptop connected with ethernet, and providing the hotspot with my wireless module.
Hi, so I have made two little script for the netsh part, I recomment using this only for local connection for transferring files from your computer to the device, without Internet connection sharing.
Wi-Fi AP ON.bat
@echo off
rem Make sure the Wireless adapter is enabled with physical switch
rem before enabling the interface itself
rem netsh interface set interface "Wi-Fi" ENABLED
rem netsh interface set interface "WIFI" ENABLED
rem netsh interface set interface "Wireless Network Connection" ENABLED
rem timeout 5
netsh wlan set hostednetwork mode=allow "ssid=legacy_bridge" "key=ThereIsNoCowLevel" "keyUsage=persistent"
timeout 5
netsh wlan start hostednetwork
timeout 5
echo ssid legacy_bridge on
timeout 5
Wi-Fi AP OFF.bat
@echo off
netsh wlan stop hostednetwork
rem timeout 5
rem This below disables the Wifi interface
rem netsh interface set interface “Wi-Fi” DISABLED
rem netsh interface set interface “WIFI” DISABLED
rem netsh interface set interface “Wireless Network Connection” DISABLED
timeout 5