2004-07-31 02:34:24 +00:00
|
|
|
<%@page contentType="text/html" %>
|
2004-07-24 02:06:07 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
|
|
|
|
<html><head>
|
2005-09-07 22:31:11 +00:00
|
|
|
<title>I2P Router Console - config networking</title>
|
2009-06-11 18:05:05 +00:00
|
|
|
<%@include file="css.jsp" %>
|
2004-07-24 02:06:07 +00:00
|
|
|
</head><body>
|
|
|
|
|
|
|
|
<%@include file="summary.jsp" %>
|
|
|
|
|
|
|
|
<jsp:useBean class="net.i2p.router.web.ConfigNetHelper" id="nethelper" scope="request" />
|
|
|
|
<jsp:setProperty name="nethelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
2009-07-06 13:29:35 +00:00
|
|
|
<h1>I2P Network Configuration</h1>
|
2004-07-24 02:06:07 +00:00
|
|
|
<div class="main" id="main">
|
|
|
|
<%@include file="confignav.jsp" %>
|
2009-08-15 16:08:33 +00:00
|
|
|
|
2004-07-31 02:34:24 +00:00
|
|
|
<jsp:useBean class="net.i2p.router.web.ConfigNetHandler" id="formhandler" scope="request" />
|
|
|
|
<jsp:setProperty name="formhandler" property="*" />
|
|
|
|
<jsp:setProperty name="formhandler" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
2009-05-26 20:04:20 +00:00
|
|
|
<jsp:getProperty name="formhandler" property="allMessages" />
|
2009-07-17 17:33:35 +00:00
|
|
|
<div class="configure">
|
2004-07-24 02:06:07 +00:00
|
|
|
<form action="config.jsp" method="POST">
|
2004-08-23 17:11:38 +00:00
|
|
|
<% String prev = System.getProperty("net.i2p.router.web.ConfigNetHandler.nonce");
|
|
|
|
if (prev != null) System.setProperty("net.i2p.router.web.ConfigNetHandler.noncePrev", prev);
|
|
|
|
System.setProperty("net.i2p.router.web.ConfigNetHandler.nonce", new java.util.Random().nextLong()+""); %>
|
|
|
|
<input type="hidden" name="nonce" value="<%=System.getProperty("net.i2p.router.web.ConfigNetHandler.nonce")%>" />
|
|
|
|
<input type="hidden" name="action" value="blah" />
|
2009-08-15 16:08:33 +00:00
|
|
|
<h3>Bandwidth limiter</h3><p>
|
2009-05-06 03:47:38 +00:00
|
|
|
<b>I2P will work best if you configure your rates to match the speed of your internet connection.</b>
|
2009-10-03 14:24:28 +00:00
|
|
|
</p>
|
2009-08-15 16:08:33 +00:00
|
|
|
<div class="wideload"><table><tr><td><input style="text-align: right; width: 5em;" name="inboundrate" type="text" size="5" maxlength="5" value="<jsp:getProperty name="nethelper" property="inboundRate" />" /> KBps In
|
|
|
|
</td><td>(<jsp:getProperty name="nethelper" property="inboundRateBits" />)</td>
|
2009-05-01 15:26:49 +00:00
|
|
|
<!-- let's keep this simple...
|
2009-08-15 16:08:33 +00:00
|
|
|
bursting up to
|
2009-05-01 15:26:49 +00:00
|
|
|
<input name="inboundburstrate" type="text" size="5" value="<jsp:getProperty name="nethelper" property="inboundBurstRate" />" /> KBps for
|
2009-08-15 16:08:33 +00:00
|
|
|
<jsp:getProperty name="nethelper" property="inboundBurstFactorBox" /><br>
|
2009-05-01 15:26:49 +00:00
|
|
|
-->
|
2009-08-15 16:08:33 +00:00
|
|
|
</tr><tr>
|
|
|
|
<td><input style="text-align: right; width: 5em;" name="outboundrate" type="text" size="5" maxlength="5" value="<jsp:getProperty name="nethelper" property="outboundRate" />" /> KBps Out
|
|
|
|
</td><td>(<jsp:getProperty name="nethelper" property="outboundRateBits" />)</td>
|
2009-05-01 15:26:49 +00:00
|
|
|
<!-- let's keep this simple...
|
2009-08-15 16:08:33 +00:00
|
|
|
bursting up to
|
2005-09-17 23:01:44 +00:00
|
|
|
<input name="outboundburstrate" type="text" size="2" value="<jsp:getProperty name="nethelper" property="outboundBurstRate" />" /> KBps for
|
2009-08-15 16:08:33 +00:00
|
|
|
<jsp:getProperty name="nethelper" property="outboundBurstFactorBox" /><br>
|
|
|
|
<i>KBps = kilobytes per second = 1024 bytes per second = 8192 bits per second.<br>
|
|
|
|
A negative rate sets the default.</i><br>
|
2009-05-01 15:26:49 +00:00
|
|
|
-->
|
2009-08-15 16:08:33 +00:00
|
|
|
</tr><tr>
|
|
|
|
<td><jsp:getProperty name="nethelper" property="sharePercentageBox" /> Share</td>
|
|
|
|
<td>(<jsp:getProperty name="nethelper" property="shareRateBits" />)
|
2009-10-09 00:45:33 +00:00
|
|
|
</td></tr></table></div></p>
|
2007-07-04 22:58:48 +00:00
|
|
|
<% int share = nethelper.getShareBandwidth();
|
2007-08-06 03:35:42 +00:00
|
|
|
if (share < 12) {
|
2007-07-04 22:58:48 +00:00
|
|
|
out.print("<b>NOTE</b>: You have configured I2P to share only " + share + "KBps. ");
|
2007-08-06 03:35:42 +00:00
|
|
|
out.print("I2P requires at least 12KBps to enable sharing. ");
|
|
|
|
out.print("Please enable sharing (participating in tunnels) by configuring more bandwidth. ");
|
2009-08-15 16:08:33 +00:00
|
|
|
out.print("It improves your anonymity by creating cover traffic, and helps the network.<br>");
|
2007-07-04 22:58:48 +00:00
|
|
|
} else {
|
2009-07-15 03:27:29 +00:00
|
|
|
out.print("You have configured I2P to share<b> " + share + "KBps</b>. ");
|
2009-08-19 16:57:47 +00:00
|
|
|
out.print("The higher the share bandwidth the more you improve your anonymity and help the network.<hr>");
|
2007-07-04 22:58:48 +00:00
|
|
|
}
|
|
|
|
%>
|
2009-10-09 00:45:33 +00:00
|
|
|
<div class="formaction">
|
2009-08-01 01:15:12 +00:00
|
|
|
<input type="submit" name="save" value="Save changes" /> <input type="reset" value="Cancel" /></div>
|
|
|
|
<!--
|
2006-02-16 10:33:29 +00:00
|
|
|
<b>Enable load testing: </b>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="checkbox" class="optbox" name="enableloadtesting" value="true" <jsp:getProperty name="nethelper" property="enableLoadTesting" /> />
|
2006-02-16 10:33:29 +00:00
|
|
|
<p>If enabled, your router will periodically anonymously probe some of your peers
|
|
|
|
to see what sort of throughput they can handle. This improves your router's ability
|
2006-02-25 21:51:46 +00:00
|
|
|
to pick faster peers, but can cost substantial bandwidth. Relevant data from the
|
2009-08-15 16:08:33 +00:00
|
|
|
load testing is fed into the profiles as well as the
|
2006-02-16 10:33:29 +00:00
|
|
|
<a href="oldstats.jsp#test.rtt">test.rtt</a> and related stats.</p>
|
2009-08-15 16:08:33 +00:00
|
|
|
<br>
|
2007-07-04 22:58:48 +00:00
|
|
|
-->
|
2009-08-15 16:08:33 +00:00
|
|
|
<h3>IP and Transport Configuration</h3><p>
|
2009-05-06 03:47:38 +00:00
|
|
|
<b>The default settings will work for most people. There is <a href="#chelp">help below</a>.</b>
|
2009-08-15 16:08:33 +00:00
|
|
|
</p><p><b>UPnP Configuration:</b><br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="checkbox" class="optbox" name="upnp" value="true" <jsp:getProperty name="nethelper" property="upnpChecked" /> />
|
2009-05-10 15:40:50 +00:00
|
|
|
Enable UPnP to open firewall ports - <a href="peers.jsp#upnp">UPnP status</a>
|
2009-08-15 16:08:33 +00:00
|
|
|
</p><p><b>IP Configuration:</b><br>
|
|
|
|
Externally reachable hostname or IP address:<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="udpAutoIP" value="local,upnp,ssu" <%=nethelper.getUdpAutoIPChecked(3) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Use all auto-detect methods<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="udpAutoIP" value="local,ssu" <%=nethelper.getUdpAutoIPChecked(4) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Disable UPnP IP address detection<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="udpAutoIP" value="upnp,ssu" <%=nethelper.getUdpAutoIPChecked(5) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Ignore local interface IP address<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="udpAutoIP" value="ssu" <%=nethelper.getUdpAutoIPChecked(0) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Use SSU IP address detection only<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="udpAutoIP" value="fixed" <%=nethelper.getUdpAutoIPChecked(1) %> />
|
2009-04-29 03:12:19 +00:00
|
|
|
Specify hostname or IP:
|
2009-05-01 00:42:31 +00:00
|
|
|
<input name ="udpHost1" type="text" size="16" value="<jsp:getProperty name="nethelper" property="udphostname" />" />
|
2009-04-29 03:12:19 +00:00
|
|
|
<% String[] ips = nethelper.getAddresses();
|
|
|
|
if (ips.length > 0) {
|
2009-05-01 00:42:31 +00:00
|
|
|
out.print(" or <select name=\"udpHost2\"><option value=\"\" selected=\"true\">Select Interface</option>\n");
|
2009-04-29 03:12:19 +00:00
|
|
|
for (int i = 0; i < ips.length; i++) {
|
|
|
|
out.print("<option value=\"");
|
|
|
|
out.print(ips[i]);
|
|
|
|
out.print("\">");
|
|
|
|
out.print(ips[i]);
|
|
|
|
out.print("</option>\n");
|
|
|
|
}
|
|
|
|
out.print("</select>\n");
|
|
|
|
}
|
|
|
|
%>
|
2009-08-15 16:08:33 +00:00
|
|
|
<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="udpAutoIP" value="hidden" <%=nethelper.getUdpAutoIPChecked(2) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Hidden mode - do not publish IP <i>(prevents participating traffic)</i><br>
|
|
|
|
</p><p><b>UDP Configuration:</b><br>
|
2009-05-06 00:54:24 +00:00
|
|
|
UDP port:
|
2009-08-15 16:08:33 +00:00
|
|
|
<input name ="udpPort" type="text" size="5" maxlength="5" value="<jsp:getProperty name="nethelper" property="configuredUdpPort" />" /><br>
|
2009-05-06 00:54:24 +00:00
|
|
|
<!-- let's keep this simple...
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="checkbox" class="optbox" name="requireIntroductions" value="true" <jsp:getProperty name="nethelper" property="requireIntroductionsChecked" /> />
|
2009-04-29 03:12:19 +00:00
|
|
|
Require SSU introductions
|
2009-04-29 18:23:15 +00:00
|
|
|
<i>(Enable if you cannot open your firewall)</i>
|
2009-05-01 00:42:31 +00:00
|
|
|
</p><p>
|
2009-08-15 16:08:33 +00:00
|
|
|
Current External UDP address: <i><jsp:getProperty name="nethelper" property="udpAddress" /></i><br>
|
2009-05-06 00:54:24 +00:00
|
|
|
-->
|
2009-05-01 00:42:31 +00:00
|
|
|
</p><p>
|
2009-08-15 16:08:33 +00:00
|
|
|
<b>TCP Configuration:</b><br>
|
|
|
|
Externally reachable hostname or IP address:<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoIP" value="true" <%=nethelper.getTcpAutoIPChecked(2) %> />
|
2009-05-02 18:23:41 +00:00
|
|
|
Use auto-detected IP address
|
|
|
|
<i>(currently <jsp:getProperty name="nethelper" property="udpIP" />)</i>
|
2009-08-15 16:08:33 +00:00
|
|
|
if we are not firewalled<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoIP" value="always" <%=nethelper.getTcpAutoIPChecked(3) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Always use auto-detected IP address (Not firewalled)<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoIP" value="false" <%=nethelper.getTcpAutoIPChecked(1) %> />
|
2009-04-28 22:45:26 +00:00
|
|
|
Specify hostname or IP:
|
2009-08-15 16:08:33 +00:00
|
|
|
<input name ="ntcphost" type="text" size="16" value="<jsp:getProperty name="nethelper" property="ntcphostname" />" /><br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoIP" value="false" <%=nethelper.getTcpAutoIPChecked(0) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Disable inbound (Firewalled)<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoIP" value="disabled" <%=nethelper.getTcpAutoIPChecked(4) %> />
|
2009-08-15 16:08:33 +00:00
|
|
|
Completely disable <i>(select only if behind a firewall that throttles or blocks outbound TCP)</i><br>
|
2009-05-01 00:42:31 +00:00
|
|
|
</p><p>
|
2009-08-15 16:08:33 +00:00
|
|
|
Externally reachable TCP port:<br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoPort" value="2" <%=nethelper.getTcpAutoPortChecked(2) %> />
|
2009-05-30 16:15:17 +00:00
|
|
|
Use the same port configured for UDP
|
2009-08-15 16:08:33 +00:00
|
|
|
<i>(currently <jsp:getProperty name="nethelper" property="udpPort" />)</i><br>
|
2009-07-30 23:10:48 +00:00
|
|
|
<input type="radio" class="optbox" name="ntcpAutoPort" value="1" <%=nethelper.getTcpAutoPortChecked(1) %> />
|
2009-04-28 22:45:26 +00:00
|
|
|
Specify Port:
|
2009-08-15 16:08:33 +00:00
|
|
|
<input name ="ntcpport" type="text" size="5" maxlength="5" value="<jsp:getProperty name="nethelper" property="ntcpport" />" /><br>
|
|
|
|
</p><p><b>Note: Changing these settings will restart your router.</b></p>
|
|
|
|
<hr><div class="formaction">
|
2009-07-16 01:44:56 +00:00
|
|
|
<input type="submit" name="save" value="Save changes" /> <input type="reset" value="Cancel" />
|
2009-08-15 16:08:33 +00:00
|
|
|
</div><h3><a name="chelp">Configuration Help:</a></h3><div align="justify"><p>
|
2009-05-10 15:40:50 +00:00
|
|
|
While I2P will work fine behind most firewalls, your speeds and network integration will generally improve
|
|
|
|
if the I2P port (generally 8887) is forwarded for both UDP and TCP.
|
|
|
|
</p><p>
|
|
|
|
If you can, please poke a hole in your firewall to allow unsolicited UDP and TCP packets to reach
|
|
|
|
you. If you can't, I2P supports UPnP (Universal Plug and Play) and UDP hole punching
|
|
|
|
with "SSU introductions" to relay traffic. Most of the options above are for special situations,
|
|
|
|
for example where UPnP does not work correctly, or a firewall not under your control is doing
|
|
|
|
harm. Certain firewalls such as symmetric NATs may not work well with I2P.
|
2009-07-17 17:33:35 +00:00
|
|
|
</p>
|
2009-05-06 00:54:24 +00:00
|
|
|
<!-- let's keep this simple...
|
2009-05-02 18:23:41 +00:00
|
|
|
<input type="submit" name="recheckReachability" value="Check network reachability..." />
|
2009-08-15 16:08:33 +00:00
|
|
|
</p>
|
2009-05-06 00:54:24 +00:00
|
|
|
-->
|
2009-08-15 16:08:33 +00:00
|
|
|
<p>
|
2009-05-10 15:40:50 +00:00
|
|
|
UPnP is used to communicate with Internet Gateway Devices (IGDs) to detect the external IP address
|
|
|
|
and forward ports.
|
|
|
|
UPnP support is beta, and may not work for any number of reasons:
|
2009-08-15 16:08:33 +00:00
|
|
|
<ul>
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist">No UPnP-compatible device present
|
|
|
|
<li class="tidylist">UPnP disabled on the device
|
|
|
|
<li class="tidylist">Software firewall interference with UPnP
|
|
|
|
<li class="tidylist">Bugs in the device's UPnP implementation
|
|
|
|
<li class="tidylist">Multiple firewall/routers in the internet connection path
|
|
|
|
<li class="tidylist">UPnP device change, reset, or address change
|
2009-08-15 16:08:33 +00:00
|
|
|
</ul><br>
|
2009-05-10 15:40:50 +00:00
|
|
|
Reviewing the <a href="peers.jsp#upnp">UPnP status</a> may help.
|
|
|
|
UPnP may be enabled or disabled above, but a change requires a router restart to take effect.
|
2009-10-09 00:45:33 +00:00
|
|
|
<p>Hostnames entered above will be published in the network database.
|
2009-05-01 00:42:31 +00:00
|
|
|
They are <b>not private</b>.
|
2008-06-09 13:14:52 +00:00
|
|
|
Also, <b>do not enter a private IP address</b> like 127.0.0.1 or 192.168.1.1.
|
2009-05-10 15:40:50 +00:00
|
|
|
If you specify the wrong IP address or
|
2006-07-04 21:17:44 +00:00
|
|
|
hostname, or do not properly configure your NAT or firewall, your network performance will degrade
|
2009-08-15 16:08:33 +00:00
|
|
|
substantially. When in doubt, leave the settings at the defaults.
|
|
|
|
</p>
|
|
|
|
<h3><a name="help">Reachability Help:</a></h3><p>
|
2009-05-10 15:40:50 +00:00
|
|
|
While I2P will work fine behind most firewalls, your speeds and network integration will generally improve
|
|
|
|
if the I2P port (generally 8887) to both UDP and TCP.
|
2008-09-23 18:48:59 +00:00
|
|
|
If you think you have opened up your firewall and I2P still thinks you are firewalled, remember
|
|
|
|
that you may have multiple firewalls, for example both software packages and external hardware routers.
|
2009-03-02 16:07:48 +00:00
|
|
|
If there is an error, the <a href="logs.jsp">logs</a> may also help diagnose the problem.
|
2008-09-23 18:48:59 +00:00
|
|
|
<ul>
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>OK</b> - Your UDP port does not appear to be firewalled.
|
|
|
|
<li class="tidylist"><b>Firewalled</b> - Your UDP port appears to be firewalled.
|
2008-09-23 18:48:59 +00:00
|
|
|
As the firewall detection methods are not 100% reliable, this may occasionally be displayed in error.
|
|
|
|
However, if it appears consistently, you should check whether both your external and internal
|
2009-04-25 02:47:28 +00:00
|
|
|
firewalls are open on port 8887. I2P will work fine when firewalled, there is no reason for concern.
|
|
|
|
When firewalled, the router uses "introducers" to relay inbound connections.
|
|
|
|
However, you will get more participating traffic and help the network more if you can open your
|
|
|
|
firewall(s). If you think you have already done so, remember that you may have both a hardware
|
|
|
|
and a software firewall, or be behind an additional, institutional firewall you cannot control.
|
|
|
|
Also, some routers cannot correctly forward both TCP and UDP on a single port, or may have other
|
|
|
|
limitations or bugs that prevent them from passing traffic through to I2P.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>Testing</b> - The router is currently testing whether your UDP port is firewalled.
|
|
|
|
<li class="tidylist"><b>Hidden</b> - The router is not configured to publish its address,
|
2008-10-26 17:24:11 +00:00
|
|
|
therefore it does not expect incoming connections.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>WARN - Firewalled and Fast</b> - You have configured I2P to share more than 128KBps of bandwidth,
|
2008-09-23 18:48:59 +00:00
|
|
|
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
|
|
|
|
you open your firewall.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>WARN - Firewalled and Floodfill</b> - You have configured I2P to be a floodfill router, but
|
2008-09-23 18:48:59 +00:00
|
|
|
you are firewalled. For best participation as a floodfill router, you should open your firewall.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>WARN - Firewalled with Inbound TCP Enabled</b> - You have configured inbound TCP, however
|
2008-09-23 18:48:59 +00:00
|
|
|
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.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>WARN - Firewalled with UDP Disabled</b> -
|
2008-12-03 18:53:57 +00:00
|
|
|
You have configured inbound TCP, however
|
|
|
|
you have disabled UDP. You appear to be firewalled on TCP, therefore your router cannot
|
|
|
|
accept inbound connections.
|
|
|
|
Please open your firewall or enable UDP.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>ERR - Clock Skew</b> - Your system's clock is skewed, which will make it difficult
|
2008-10-26 17:24:11 +00:00
|
|
|
to participate in the network. Correct your clock setting if this error persists.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>ERR - Private TCP Address</b> - You must never advertise an unroutable IP address such as
|
2008-09-23 18:48:59 +00:00
|
|
|
127.0.0.1 or 192.168.1.1 as your external address. Correct the address or disable inbound TCP above.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>ERR - SymmetricNAT</b> - I2P detected that you are firewalled by a Symmetric NAT.
|
2009-04-25 02:47:28 +00:00
|
|
|
I2P does not work well behind this type of firewall. You will probably not be able to
|
|
|
|
accept inbound connections, which will limit your participation in the network.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>ERR - UDP Port In Use - Set i2np.udp.internalPort=xxxx in advanced config and restart</b> -
|
2008-09-23 18:48:59 +00:00
|
|
|
I2P was unable to bind to port 8887 or other configured port.
|
|
|
|
Check to see if another program is using port 8887. If so, stop that program or configure
|
|
|
|
I2P to use a different port. This may be a transient error, if the other program is no longer
|
|
|
|
using the port. However, a restart is always required after this error.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>ERR - UDP Disabled and Inbound TCP host/port not set</b> -
|
2008-12-03 18:53:57 +00:00
|
|
|
You have not configured inbound TCP with a hostname and port above, however
|
|
|
|
you have disabled UDP. Therefore your router cannot accept inbound connections.
|
|
|
|
Please configure a TCP host and port above or enable UDP.
|
2009-07-15 03:53:53 +00:00
|
|
|
<li class="tidylist"><b>ERR - Client Manager I2CP Error - check logs</b> -
|
2009-03-02 16:07:48 +00:00
|
|
|
This is usually due to a port 7654 conflict. Check the logs to verify. Do you have another I2P instance running?
|
|
|
|
Stop the conflicting program and restart I2P.
|
2009-10-09 00:45:33 +00:00
|
|
|
</ul><hr>
|
2009-07-17 17:33:35 +00:00
|
|
|
<!--
|
2005-11-26 09:16:11 +00:00
|
|
|
<b>Dynamic Router Keys: </b>
|
2009-08-15 16:08:33 +00:00
|
|
|
<input type="checkbox" class="optbox" name="dynamicKeys" value="true" <jsp:getProperty name="nethelper" property="dynamicKeysChecked" /> /><br>
|
2005-11-26 09:16:11 +00:00
|
|
|
<p>
|
|
|
|
This setting causes your router identity to be regenerated every time your IP address
|
|
|
|
changes. If you have a dynamic IP this option can speed up your reintegration into
|
|
|
|
the network (since people will have shitlisted your old router identity), and, for
|
|
|
|
very weak adversaries, help frustrate trivial
|
|
|
|
<a href="http://www.i2p.net/how_threatmodel#intersection">intersection
|
2009-08-15 16:08:33 +00:00
|
|
|
attacks</a> against the NetDB. Your different router identities would only be
|
2005-11-26 09:16:11 +00:00
|
|
|
'hidden' among other I2P users at your ISP, and further analysis would link
|
|
|
|
the router identities further.</p>
|
|
|
|
<p>Note that when I2P detects an IP address change, it will automatically
|
|
|
|
initiate a restart in order to rekey and to disconnect from peers before they
|
|
|
|
update their profiles - any long lasting client connections will be disconnected,
|
|
|
|
though such would likely already be the case anyway, since the IP address changed.
|
|
|
|
</p>
|
2009-08-15 16:08:33 +00:00
|
|
|
<br>
|
2007-03-07 21:05:21 +00:00
|
|
|
-->
|
2009-08-15 16:08:33 +00:00
|
|
|
</div></form></div></div></body></html>
|