0204.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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="OpenVPN,Access Server,OVPN,Installation,VPN,Linux,Debian,How To,Tutorial,i12bretro">
  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. <meta name="revised" content="06/01/2022 06:17:55 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install OpenVPN Access Server on Debian</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Log into the Debian device</li>
  27. <li>Run the following commands in a terminal:
  28. <div class="codeBlock">sudo apt update<br />
  29. sudo apt install ca-certificates wget net-tools gnupg<br />
  30. sudo wget -qO - https://as-repository.openvpn.net/as-repo-public.gpg | sudo apt-key add -<br />
  31. <span id="li_382869_1">sudo apt-add-repository</span> &#39;deb http://as-repository.openvpn.net/as/debian buster main&#39;<br />
  32. sudo apt update<br />
  33. sudo apt install openvpn-as<br />
  34. sudo passwd openvpn</div>
  35. </li>
  36. <li>Set a new password for the openvpn user</li>
  37. <li>Open a web browser and navigate to https://DNSorIP:943/admin</li>
  38. <li>Login with username openvpn and the password set earlier</li>
  39. <li>Click the Agree button to accept the EULA</li>
  40. <li>Click User Management &gt; User Permissions in the left navigation</li>
  41. <li>Create a new username and click the Admin checkbox</li>
  42. <li>Click the Save Settings button</li>
  43. <li>Click the More settings button on the row of the newly created user</li>
  44. <li>Set a local password, scroll down and click the Save Settings button</li>
  45. <li>Click the Update Running Server button</li>
  46. <li>Click Logout at the bottom of the left navigation</li>
  47. <li>Log back in with the newly created user</li>
  48. <li>Click User Management &gt; User Permissions in the left navigation</li>
  49. <li>Check the delete box on the row of the openvpn user</li>
  50. <li>Click the Save Settings button</li>
  51. <li>Click the Update Running Server button</li>
  52. </ol>
  53. <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>
  54. </div>
  55. </div>
  56. </body>
  57. </html>