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-11-21 13:33:57 +00:00
<%@include file="css.jsi" %>
2009-10-23 13:55:44 +00:00
<%=intl.title("config tunnels")%>
2012-06-05 13:37:10 +00:00
<script src="/js/ajax.js" type="text/javascript"></script>
2012-07-17 00:47:08 +00:00
<%@include file="summaryajax.jsi" %>
2012-06-05 13:37:10 +00:00
</head><body onload="initAjax()">
2005-02-16 22:37:24 +00:00
2009-11-21 13:33:57 +00:00
<%@include file="summary.jsi" %>
2005-02-16 22:37:24 +00:00
<jsp:useBean class="net.i2p.router.web.ConfigTunnelsHelper" id="tunnelshelper" scope="request" />
2011-12-25 22:37:30 +00:00
<jsp:setProperty name="tunnelshelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
2015-09-25 19:55:36 +00:00
<h1><%=intl._t("I2P Tunnel Configuration")%></h1>
2005-02-16 22:37:24 +00:00
<div class="main" id="main">
2009-11-21 13:33:57 +00:00
<%@include file="confignav.jsi" %>
2005-02-16 22:37:24 +00:00
<jsp:useBean class="net.i2p.router.web.ConfigTunnelsHandler" id="formhandler" scope="request" />
2012-10-20 20:52:45 +00:00
<%@include file="formhandler.jsi" %>
2009-10-22 11:33:02 +00:00
<div class="configure"><p>
2015-09-25 19:55:36 +00:00
<%=intl._t("NOTE")%>:
<%=intl._t("The default settings work for most people.")%>
<%=intl._t("There is a fundamental tradeoff between anonymity and performance.")%>
<%=intl._t("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.")%>
<%=intl._t("High CPU and/or high outbound bandwidth usage may result.")%>
<%=intl._t("Change these settings with care, and adjust them if you have problems.")%>
2009-10-22 11:33:02 +00:00
<div class="wideload">
2010-11-19 15:23:25 +00:00
<form action="" method="POST">
2012-10-20 20:52:45 +00:00
<input type="hidden" name="nonce" value="<%=pageNonce%>" >
2010-04-05 13:34:45 +00:00
<input type="hidden" name="action" value="blah" >
2005-02-16 22:37:24 +00:00
<jsp:getProperty name="tunnelshelper" property="form" />
2015-09-25 19:55:36 +00:00
<%=intl._t("Note")%>: <%=intl._t("Exploratory tunnel setting changes are stored in the router.config file.")%>
<%=intl._t("Client tunnel changes are temporary and are not saved.")%>
<%=intl._t("To make permanent client tunnel changes see the")%> <a href="i2ptunnel/index.jsp"><%=intl._t("i2ptunnel page")%></a>.
2010-04-05 13:34:45 +00:00
<hr><div class="formaction">
2015-09-25 19:55:36 +00:00
<input type="reset" class="cancel" value="<%=intl._t("Cancel")%>" >
<input type="submit" name="shouldsave" class="accept" value="<%=intl._t("Save changes")%>" >
2010-04-05 13:34:45 +00:00
</div>
2011-03-12 17:32:15 +00:00
</form></div></div></div></body></html>