Skip to content

WiFi#

Using our EZCast Dongle you can enable WiFi on a D600. After plugging in the EZCast you need to restart the phone. Afterwards you should find a new Wi-Fi entry in the settings menu on your phone. Here you can configure your networks as on any android phone.

Provisioning#

To copy a Wi-Fi configuration from one device to another, you should create a backup from the origin device. Here you will find a wifi-section at the end of the configuration. These wifi-networks therein wont have the correct password set. For security reasons only a * appears where the password should be. If you leave it as is, all these wifi-networks with a * will be ignored during provsioning.

Set the password#

Depending on the type of network there are 3 different places where you must insert your password. The one that's right for your network, will be the one with the *:

  ...
  <wepPassword />
  <wpa2Password></wpa2Password> 
  ...
  <wpa2Enterprise>
    ...
    <password />
    ...
  </wpa2Enterprise>

Set wepPassword or wpa2Password#

If you add the real password as plain text, you will have to enclose it in double-qoutes.

  ...
  <wpa2Password>"mySecrectWifiPassword"</wpa2Password> 
  ...

You could potentially also instead store some sort of hashed password without the quotes. How to arrive at that hash is not part of this documentation and might be different depending on the network-type. Androids developer documentation or stackoverflow.com might be a good source.

Set wpa2Enterprise password#

No double-quotes markings are necessary for the password of the Enterprise settings.

  ...
    <wpa2Enterprise>
    ...
    <password>mySecrectWifiPassword</password>
    ...
  </wpa2Enterprise>
  ...