Exposing a VM on hosted WiFi hotspot for Google Glass

Background

Google Glass is famously frustrating to connect to a WiFi network. It doesn’t handle captive portals, or WiFi using Enterprise WPA2. I’ve also had consistent issues using MyGlass and QR codes to connect to Wifi.

I found myself in a situation where I had to connect Glass to a WiFi network on which a virtual machine was visible. My work’s corporate network was out of the question – it uses Enterprise WPA2. I would have connected my phone to the network and shared it to Glass via Bluetooth, but that was nixed for security reasons. So I had to set up a new network exclusively for Glass.

First thought – let’s just set up an Ad-Hoc wireless network on my laptop! But no, alas Android doesn’t support connecting to ad-hoc networks. Universe, why do you hate me so?

The solution

The solution involves a wireless-enabled Windows machine and VirtualBox – a program for running virtual machines.

An alternative to creating an ad-hoc network on your machine is to create a Wireless Hosted Network. This basically allows your Windows machine to act as a WiFi hotspot which can pass through a (wired) internet connection if you so wish.

My approach was to create a hosted network, connect my phone to it, then pass on the connection via Bluetooth. An admittedly insane chain of connections, but it’s all I had.

Create the WiFi network

  1. Open the Start menu and type “cmd”
  2. Right click and select “Run as Administrator”
  3. Type the following command:
     netsh wlan set hostednetwork mode=allow ssid=mynetworkid key=mypassword

Start the network

You’ll have to do this every time you start the machine, or alternatively set up a batch script to run this on startup.

  1. Type the following command:
     netsh wlan start hostednetwork

You should now see “mynetworkid” (or whatever you called it) in your list of wireless networks.

Create your VirtualBox image

  1. Install VirtualBox
  2. Create a new virtual machine (steps available here) – I’ve chosen to use a linux install
  3. Once your VM is created, go to Settings and choose Network
  4. Set up a Bridged Adapter
    1. Enable a network adapter
    2. Select Attached To: “Bridged Adapter”
    3. Select “Microsoft Virtual WiFi Miniport Adapter” as the Name – this is where the network you’ve just created is hosted.
  5. Start your VM up

Check connectivity

  1. On your Windows machine, open a command line and type:
     ipconfig

    A list of networks should be shown – one of which should be called “Wireless LAN adapter Wireless Network Connection”. Note down the first 9 digits of the IP address listed under this e.g. 192.168.173

  2. In your VM, run the following command:
     /sbin/ifconfig

    And note the networks and IPs that are listed. If no other networks were set up, your eth0 network should have an IP where the first 9 digits of the IP address matches those you noted down earlier. That means that they’re running on the network.

  3. For a laugh, ping your VM from your Windows machine, using the IP address from the previous step. This will confirm that your VM is addressable and contactable from your Windows machine. Given that your Windows machine is now broadcasting a wireless network, that means that the VM should be contactable to anyone on the network too.

Ping your VM from your Android device

As the penultimate proof, try pinging your VM from your Android device.

  1. Install an app which will let you run a ping command (I used PingTools)
  2. Ping the IP address you pinged previously

This should also show a response. And now we’re on the home straight.

Write some Glass code to contact your VM

You can do this however you wish. I wrote some very simple ping code to prove that Glass – once paired to my phone – was sharing the same internet connection as the phone, and the Windows machine, and as the VM.

There are tons of ways of doing it – for example:

InetAddress server = InetAddress.getByName("192.168.173.123");
if (server.isReachable(10000))
{
         // It’s contactable!
         celebrate();
}

Conclusions

That was much, much harder than it should have been. Alternatives I didn’t attempt:

  • Buying a router and broadcasting my corportate ethernet through it
  • Getting a company-approved phone that could have connected to the Enterprise network
  • Binning my Google Glass

PS – Many thanks to this post which acted as a great reference. It’s also worth checking out if you need to pass through internet via your hosted network.

Leave a Reply

Your email address will not be published. Required fields are marked *