2005-02-16 22:37:24 +00:00
|
|
|
<%@page contentType="text/html"%>
|
|
|
|
<%@page pageEncoding="UTF-8"%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
|
2009-10-23 13:00:38 +00:00
|
|
|
<html><head>
|
2009-06-11 18:05:05 +00:00
|
|
|
<%@include file="css.jsp" %>
|
2009-10-23 13:00:38 +00:00
|
|
|
<%=cssHelper.title("config tunnels")%>
|
2005-02-16 22:37:24 +00:00
|
|
|
</head><body>
|
|
|
|
|
|
|
|
<%@include file="summary.jsp" %>
|
|
|
|
|
|
|
|
<jsp:useBean class="net.i2p.router.web.ConfigTunnelsHelper" id="tunnelshelper" scope="request" />
|
|
|
|
<jsp:setProperty name="tunnelshelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
2009-10-23 13:00:38 +00:00
|
|
|
<h1><%=cssHelper._("I2P Tunnel Configuration")%></h1>
|
2005-02-16 22:37:24 +00:00
|
|
|
<div class="main" id="main">
|
|
|
|
<%@include file="confignav.jsp" %>
|
|
|
|
<jsp:useBean class="net.i2p.router.web.ConfigTunnelsHandler" id="formhandler" scope="request" />
|
|
|
|
<jsp:setProperty name="formhandler" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
|
|
|
<jsp:setProperty name="formhandler" property="shouldsave" value="<%=request.getParameter("shouldsave")%>" />
|
|
|
|
<jsp:setProperty name="formhandler" property="action" value="<%=request.getParameter("action")%>" />
|
|
|
|
<jsp:setProperty name="formhandler" property="nonce" value="<%=request.getParameter("nonce")%>" />
|
|
|
|
<jsp:setProperty name="formhandler" property="settings" value="<%=request.getParameterMap()%>" />
|
2009-05-26 20:04:20 +00:00
|
|
|
<jsp:getProperty name="formhandler" property="allMessages" />
|
2009-10-22 11:33:02 +00:00
|
|
|
<div class="configure"><p>
|
2008-05-26 13:13:26 +00:00
|
|
|
NOTE: The default settings work for most people.
|
|
|
|
There is a fundamental tradeoff between anonymity and performance.
|
|
|
|
Tunnels longer than 3 hops (for example 2 hops + 0-2 hops, 3 hops + 0-1 hops, 3 hops + 0-2 hops),
|
|
|
|
or a high quantity + backup quantity, may severely reduce performance or reliability.
|
|
|
|
High CPU and/or high outbound bandwidth usage may result.
|
|
|
|
Change these settings with care, and adjust them if you have problems.
|
2009-10-22 11:33:02 +00:00
|
|
|
<div class="wideload">
|
|
|
|
<form action="configtunnels.jsp" method="POST">
|
2005-02-16 22:37:24 +00:00
|
|
|
<% String prev = System.getProperty("net.i2p.router.web.ConfigTunnelsHandler.nonce");
|
|
|
|
if (prev != null) System.setProperty("net.i2p.router.web.ConfigTunnelsHandler.noncePrev", prev);
|
|
|
|
System.setProperty("net.i2p.router.web.ConfigTunnelsHandler.nonce", new java.util.Random().nextLong()+""); %>
|
|
|
|
<input type="hidden" name="nonce" value="<%=System.getProperty("net.i2p.router.web.ConfigTunnelsHandler.nonce")%>" />
|
|
|
|
<input type="hidden" name="action" value="blah" />
|
|
|
|
<jsp:getProperty name="tunnelshelper" property="form" />
|
2009-10-22 11:33:02 +00:00
|
|
|
Note: Exploratory tunnel setting changes are stored in the router.config file.
|
|
|
|
Client tunnel changes are temporary and are not saved.
|
|
|
|
To make permanent client tunnel changes see the <a href="i2ptunnel/index.jsp">i2ptunnel page</a>.
|
2009-08-19 16:57:47 +00:00
|
|
|
<hr><div class="formaction"><input type="submit" name="shouldsave" value="Save changes" /> <input type="reset" value="Cancel" /></div>
|
2009-10-22 11:33:02 +00:00
|
|
|
</form></p></div></div></div></body></html>
|