0204.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install OpenVPN Access Server on Debian</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="i12bretro,How To,Tutorial,OpenVPN,Access Server,OVPN,Installation,VPN,Linux,Debian">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install OpenVPN Access Server on Debian">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Install OpenVPN Access Server on Debian</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Log into the Debian device</li>
  26. <li>Run the following commands in a terminal:
  27. <div class="codeBlock">sudo apt update<br />
  28. sudo apt install ca-certificates wget net-tools gnupg<br />
  29. sudo wget -qO - https://as-repository.openvpn.net/as-repo-public.gpg | sudo apt-key add -<br />
  30. <span id="li_382869_1">sudo apt-add-repository</span> &#39;deb http://as-repository.openvpn.net/as/debian buster main&#39;<br />
  31. sudo apt update<br />
  32. sudo apt install openvpn-as<br />
  33. sudo passwd openvpn</div>
  34. </li>
  35. <li>Set a new password for the openvpn user</li>
  36. <li>Open a web browser and navigate to https://DNSorIP:943/admin</li>
  37. <li>Login with username openvpn and the password set earlier</li>
  38. <li>Click the Agree button to accept the EULA</li>
  39. <li>Click User Management &gt; User Permissions in the left navigation</li>
  40. <li>Create a new username and click the Admin checkbox</li>
  41. <li>Click the Save Settings button</li>
  42. <li>Click the More settings button on the row of the newly created user</li>
  43. <li>Set a local password, scroll down and click the Save Settings button</li>
  44. <li>Click the Update Running Server button</li>
  45. <li>Click Logout at the bottom of the left navigation</li>
  46. <li>Log back in with the newly created user</li>
  47. <li>Click User Management &gt; User Permissions in the left navigation</li>
  48. <li>Check the delete box on the row of the openvpn user</li>
  49. <li>Click the Save Settings button</li>
  50. <li>Click the Update Running Server button</li>
  51. </ol>
  52. <p>Source: <a href="https://openvpn.net/vpn-server-resources/installing-openvpn-access-server-on-a-linux-system/#Install_repository_then_upgrade" target="_blank">https://openvpn.net/vpn-server-resources/installing-openvpn-access-server-on-a-linux-system/#Install_repository_then_upgrade</a></p>
  53. </div>
  54. </div>
  55. </body>
  56. </html>