use new reachable localhost
diff --git a/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlIntegrationTest.java b/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlIntegrationTest.java
index 139a1e7..f1aa3b7 100644
--- a/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlIntegrationTest.java
+++ b/software/database/src/test/java/org/apache/brooklyn/entity/database/mysql/MySqlIntegrationTest.java
@@ -46,7 +46,7 @@
     public static final Logger log = LoggerFactory.getLogger(MySqlIntegrationTest.class);
     
     // can start in AWS by running this -- or use brooklyn CLI/REST for most clouds, or programmatic/config for set of fixed IP machines
-    static String hostname = Networking.getLocalHost().getHostName();
+    static String hostname = Networking.getReachableLocalHost().getHostName();
 
     // From http://www.vogella.de/articles/MySQLJava/article.html
     // Expects COMMENTS to be injected as the test.table.name config value, for VogellaExampleAccess to work.
diff --git a/software/webapp/src/test/java/org/apache/brooklyn/entity/dns/geoscaling/GeoscalingIntegrationTest.java b/software/webapp/src/test/java/org/apache/brooklyn/entity/dns/geoscaling/GeoscalingIntegrationTest.java
index 75c6c2f..74960bd 100644
--- a/software/webapp/src/test/java/org/apache/brooklyn/entity/dns/geoscaling/GeoscalingIntegrationTest.java
+++ b/software/webapp/src/test/java/org/apache/brooklyn/entity/dns/geoscaling/GeoscalingIntegrationTest.java
@@ -61,7 +61,7 @@
 
     private final String primaryDomain = "geopaas.org";//"domain"+((int)(Math.random()*10000))+".test.org";
     private final String subDomain = "subdomain"+((int)(Math.random()*10000));
-    private final InetAddress addrWithGeo = Networking.getLocalHost();
+    private final InetAddress addrWithGeo = Networking.getReachableLocalHost();
     private final InetAddress addrWithoutGeo = Networking.getInetAddressWithFixedName(StubHostGeoLookup.HOMELESS_IP);
     
     private TestEntity target;
diff --git a/software/webapp/src/test/java/org/apache/brooklyn/entity/proxy/nginx/NginxRebindWithHaIntegrationTest.java b/software/webapp/src/test/java/org/apache/brooklyn/entity/proxy/nginx/NginxRebindWithHaIntegrationTest.java
index cc59721..701e80a 100644
--- a/software/webapp/src/test/java/org/apache/brooklyn/entity/proxy/nginx/NginxRebindWithHaIntegrationTest.java
+++ b/software/webapp/src/test/java/org/apache/brooklyn/entity/proxy/nginx/NginxRebindWithHaIntegrationTest.java
@@ -92,7 +92,7 @@
     public void setUp() throws Exception {
         super.setUp();
         loc = origManagementContext.getLocationManager().createLocation(LocationSpec.create(LocalhostMachineProvisioningLocation.class)
-            .configure("address", Networking.getLocalHost())
+            .configure("address", Networking.getReachableLocalHost())
             .configure(SshMachineLocation.SSH_TOOL_CLASS, RecordingSshjTool.class.getName()));
         executor = Executors.newCachedThreadPool();