Files
i2p.i2p/apps/routerconsole/jsp/tunnels.jsp

41 lines
2.0 KiB
Plaintext
Raw Normal View History

2005-02-16 22:37:24 +00:00
<%@page contentType="text/html"%>
<%@page trimDirectiveWhitespaces="true"%>
2005-02-16 22:37:24 +00:00
<%@page pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<%@include file="css.jsi" %>
<%=intl.title("tunnel summary")%>
<script src="/js/ajax.js" type="text/javascript"></script>
<%@include file="summaryajax.jsi" %>
</head><body onload="initAjax()">
<%@include file="summary.jsi" %><h1><%=intl._t("I2P Tunnel Summary")%></h1>
2016-05-23 05:41:24 +00:00
<div class="main" id="tunnels">
<jsp:useBean class="net.i2p.router.web.helpers.TunnelHelper" id="tunnelHelper" scope="request" />
<jsp:setProperty name="tunnelHelper" property="contextId" value="<%=i2pcontextId%>" />
<% tunnelHelper.storeWriter(out); %>
<p id="gatherstats">
This page shows tunnels built by and routed through your router.
<ul>
<li>
<b>Exploratory:</b> Tunnels built by your router and used for communication with the floodfill peers, building new tunnels, and testing existing tunnels.
</li>
<li>
<b>Client:</b> Tunnels built by your router for each client's use.
</li>
<li>
<b>Participating:</b> Tunnels built by other routers through your router.
This may vary widely depending on network demand, your shared bandwidth, and amount of locally-generated traffic.
The recommended method for limiting participating tunnels is to change your share percentage on the <a href="config">Bandwidth Configuration page</a>.
You may also limit the total number by setting <code>router.maxParticipatingTunnels=nnn</code> on the <a href="configadvanced">Advanced configuration page</a>.
<a href="configstats#tunnel.participatingTunnels">[Enable graphing]</a>.
</li>
<li>
<b>Share Ratio:</b> The number of participating tunnels you route for others, divided by the total number of hops in all your exploratory and client tunnels.
A number greater than 1.00 means you are contributing more tunnels to the network than you are using.
</li>
</ul>
</p>
2005-02-16 22:37:24 +00:00
<jsp:getProperty name="tunnelHelper" property="tunnelSummary" />
2009-08-15 16:08:33 +00:00
</div></body></html>