Allow mdt to connect to device matching 192.168.10X.XXX.

Change-Id: Ie5231df5aabcc8215f4a2cb81bc410ec15381a81
diff --git a/mdt/sshclient.py b/mdt/sshclient.py
index 13d4398..47bfb64 100644
--- a/mdt/sshclient.py
+++ b/mdt/sshclient.py
@@ -83,7 +83,7 @@
         if not self.address:
             raise discoverer.DeviceNotFoundError()
 
-        if not self.address.startswith('192.168.100'):
+        if not self.address.startswith('192.168.10'):
             raise NonLocalDeviceError()
 
         connection = http.client.HTTPConnection(self.address, KEYMASTER_PORT)