diff --git a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
index 5acabd53eb..e728086be0 100644
--- a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
@@ -119,7 +119,9 @@ public class SummaryHelper {
public String getReachability() {
if (!_context.clock().getUpdatedSuccessfully())
return "ERR-ClockSkew";
-
+ if (_context.router().isHidden())
+ return "Hidden";
+
int status = _context.commSystem().getReachabilityStatus();
switch (status) {
case CommSystemFacade.STATUS_OK:
diff --git a/apps/routerconsole/jsp/config.jsp b/apps/routerconsole/jsp/config.jsp
index e04b3dae57..058229b2af 100644
--- a/apps/routerconsole/jsp/config.jsp
+++ b/apps/routerconsole/jsp/config.jsp
@@ -105,7 +105,7 @@
Note: changing any of these settings will terminate all of your connections and effectively
restart your router.
- Reachability Help:
+ Reachability Help:
While I2P will work adequately behind a firewall, your speeds and network integration will generally improve
if you open up your port (generally 8887) to both UDP and TCP, and enable inbound TCP above.
@@ -118,6 +118,8 @@
However, if it appears consistently, you should check whether both your external and internal
firewalls are open on port 8887.
Testing - The router is currently testing whether your UDP port is firewalled.
+ Hidden - The router is not configured to publish its address,
+ therefore it does not expect incoming connections.
WARN - Firewalled and Fast - You have configured I2P to share more than 128KBps of bandwidth,
but you are firewalled. While I2P will work fine in this configuration, if you really have
over 128KBps of bandwidth to share, it will be much more helpful to the network if
@@ -128,6 +130,8 @@
your UDP port is firewalled, and therefore it is likely that your TCP port is firewalled as well.
If your TCP port is firewalled with inbound TCP enabled, routers will not be able to contact
you via TCP, which will hurt the network. Please open your firewall or disable inbound TCP above.
+ ERR - Clock Skew - Your system's clock is skewed, which will make it difficult
+ to participate in the network. Correct your clock setting if this error persists.
ERR - Private TCP Address - You must never advertise an unroutable IP address such as
127.0.0.1 or 192.168.1.1 as your external address. Correct the address or disable inbound TCP above.
ERR - SymmetricNAT - I2P detected that you are firewalled by a Symmetric NAT.
diff --git a/apps/routerconsole/jsp/summary.jsp b/apps/routerconsole/jsp/summary.jsp
index c4cf01c531..981f76df6b 100644
--- a/apps/routerconsole/jsp/summary.jsp
+++ b/apps/routerconsole/jsp/summary.jsp
@@ -14,7 +14,7 @@
Version:
Uptime:
Now:
- Reachability: <%
+ Reachability: <%
if (helper.updateAvailable()) {
// display all the time so we display the final failure message
out.print("
" + update.getStatus());