mesh-vpn-fastd.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="gluon-value">
  2. <div class="gluon-value-title">
  3. <input class="gluon-input-radio" data-update="change" type="radio" value="security"<%= attr("id", id..'.1') .. attr("name", id) .. attr("checked", ((self:cfgvalue() or self.default) == "security") and "checked") %> />
  4. <label<%= attr("for", id..'.1')%>></label>
  5. </div>
  6. <div class="gluon-value-field-long">
  7. <label<%= attr("for", id..'.1') %> class="gluon-value-title"><%:Security mode%></label>
  8. <br />
  9. <%| translate(
  10. 'In security mode, the mesh VPN uses an encrypted tunnel to connect to the VPN servers. ' ..
  11. 'The encryption ensures that it is impossible for your internet access provider to see what ' ..
  12. 'data is exchanged over your node.'
  13. ) %>
  14. <br />
  15. </div>
  16. <div class="gluon-value-field-long-after"></div>
  17. </div>
  18. <div class="gluon-value gluon-value-last">
  19. <div class="gluon-value-title">
  20. <input class="gluon-input-radio" data-update="change" type="radio" value="performance"<%= attr("id", id..'.2') .. attr("name", id) .. attr("checked", ((self:cfgvalue() or self.default) == "performance") and "checked") %> />
  21. <label<%= attr("for", id..'.2')%>></label>
  22. </div>
  23. <div class="gluon-value-field-long">
  24. <label<%= attr("for", id..'.2') %> class="gluon-value-title"><%:Performance mode%></label>
  25. <br />
  26. <%| translate(
  27. 'In performance mode, no encryption is used. This usually allows for higher throughput, but the data exchanged over your node is not ' ..
  28. 'protected against eavesdropping.'
  29. ) %>
  30. <br />
  31. </div>
  32. <div class="gluon-value-field-long-after"></div>
  33. </div>