* Determines own remote IP address (e.g. can be used to probe if we are
* reachable from outside by determining external IP and then connect to it.
* This is accomblished by connecting to the IP of www.ship-simu.org which
- * should default to 217.172.186.31 and requesting /ip.php which does only
+ * should default to 188.138.90.169 and requesting /ip.php which does only
* return the content of $_SERVER['REMOTE_ADDR']. Of course, this method
* requires a working Internet connection.
*
$helperInstance = new ConsoleTools();
// First get a socket
- $socket = fsockopen('217.172.186.31', 80, $errorNo, $errorStr, 5);
+ $socket = fsockopen('188.138.90.169', 80, $errorNo, $errorStr, 5);
// Check if there was an error else
if ($errorNo > 0) {
$cfg = FrameworkConfiguration::getInstance();
// CFG: HUB-BOOTSTRAP-NODES
-$cfg->setConfigEntry('hub_bootstrap_nodes', '192.168.1.1:9061');
+$cfg->setConfigEntry('hub_bootstrap_nodes', '188.138.90.169:9061');
// [EOF]
?>