mesh-vpn-fastd.html 1.5 KB

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