{"id":2832,"date":"2026-06-18T10:30:14","date_gmt":"2026-06-18T10:30:14","guid":{"rendered":"https:\/\/lyrahosting.mockupz.in\/acf\/?p=2832"},"modified":"2026-06-18T11:25:59","modified_gmt":"2026-06-18T11:25:59","slug":"how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts","status":"publish","type":"post","link":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/","title":{"rendered":"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS"},"content":{"rendered":"<h3 id=\"introduction\">\n    Introduction<br \/>\n<\/h3>\n<p>\n    OpenVPN is an open-source Virtual Private Network (VPN) project. It creates secure connections over the Internet using a custom security protocol that utilizes SSL\/TLS.\n<\/p>\n<p>\n    VPN software protects your information by masking your device&#8217;s IP address, encrypting your data, and routing it through secure networks to servers in different locations. This helps hide your online identity and allows you to browse securely and anonymously.\n<\/p>\n<p>\n    This guide provides instructions for configuring an OpenVPN server on Ubuntu 18.04, 20.04, and 22.04 LTS.\n<\/p>\n<hr>\n<h3 id=\"upgrade-your-system\">\n    Upgrade your system<br \/>\n<\/h3>\n<p>\n    Before installing OpenVPN, update your operating system to avoid incompatibilities.\n<\/p>\n<h4>\n    If you are working as root user<br \/>\n<\/h4>\n<pre><code>apt update && apt full-upgrade -y && apt autoremove -y && apt autoclean<\/code><\/pre>\n<h4>\n    If you are working as normal user<br \/>\n<\/h4>\n<pre><code>sudo apt update && sudo apt full-upgrade -y && sudo apt autoremove -y && sudo apt autoclean<\/code><\/pre>\n<hr>\n<h3 id=\"find-your-server-ip-address\">\n    Find your server&#8217;s IP address<br \/>\n<\/h3>\n<p>\n    To get the IP address, run the following command:\n<\/p>\n<pre><code>ip address show up<\/code><\/pre>\n<p>\n    You will receive output similar to the following:\n<\/p>\n<pre><code>2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500\r\n    inet 192.168.121.241\/24 brd 192.168.121.255 scope global dynamic eth0<\/code><\/pre>\n<p>\n    Save this IP address. You will need it in the next steps.\n<\/p>\n<hr>\n<h3 id=\"download-openvpn-installer\">\n    Download OpenVPN installer script by Angristan<br \/>\n<\/h3>\n<p>\n    This script allows you to set up a secure VPN server in just a few seconds.\n<\/p>\n<h4>\n    If you are working as root user<br \/>\n<\/h4>\n<pre><code>apt install curl -y && curl -O https:\/\/raw.githubusercontent.com\/angristan\/openvpn-install\/master\/openvpn-install.sh && chmod +x openvpn-install.sh<\/code><\/pre>\n<h4>\n    If you are working as normal user<br \/>\n<\/h4>\n<pre><code>sudo apt install curl -y && sudo curl -O https:\/\/raw.githubusercontent.com\/angristan\/openvpn-install\/master\/openvpn-install.sh && sudo chmod +x openvpn-install.sh<\/code><\/pre>\n<hr>\n<h3 id=\"run-openvpn-installer\">\n    Run OpenVPN installer script by Angristan<br \/>\n<\/h3>\n<p>\n    Run the script as root and make sure the TUN module is enabled.\n<\/p>\n<h4>\n    If you are working as root user<br \/>\n<\/h4>\n<pre><code>.\/openvpn-install.sh<\/code><\/pre>\n<h4>\n    If you are working as normal user<br \/>\n<\/h4>\n<pre><code>sudo .\/openvpn-install.sh<\/code><\/pre>\n<hr>\n<h3>\n    Configure OpenVPN server<br \/>\n<\/h3>\n<h4>\n    Step 1<br \/>\n<\/h4>\n<pre><code>Welcome to the OpenVPN installer!\r\n\r\nIP address: [YOUR-SERVER-IP-ADDRESS]<\/code><\/pre>\n<p>\n    Verify the displayed IP address and press Enter.\n<\/p>\n<h4>\n    Step 2<br \/>\n<\/h4>\n<pre><code>Do you want to enable IPv6 support (NAT)? n<\/code><\/pre>\n<p>\n    If your server does not have IPv6, simply press Enter.\n<\/p>\n<h4>\n    Step 3<br \/>\n<\/h4>\n<pre><code>What port do you want OpenVPN to listen to?\r\n1) Default: 1194\r\n2) Custom\r\n3) Random\r\n\r\nPort choice [1-3]: 1<\/code><\/pre>\n<p>\n    Press Enter to use the default port.\n<\/p>\n<h4>\n    Step 4<br \/>\n<\/h4>\n<pre><code>What protocol do you want OpenVPN to use?\r\n\r\n1) UDP\r\n2) TCP\r\n\r\nProtocol [1-2]: 1<\/code><\/pre>\n<p>\n    UDP is recommended for better performance.\n<\/p>\n<h4>\n    Step 5<br \/>\n<\/h4>\n<pre><code>What DNS resolvers do you want to use with the VPN?\r\n\r\n3) Cloudflare\r\n11) AdGuard DNS\r\n\r\nDNS [1-12]: 11<\/code><\/pre>\n<p>\n    Select your preferred DNS provider and press Enter.\n<\/p>\n<h4>\n    Step 6<br \/>\n<\/h4>\n<pre><code>Enable compression? [y\/n]: n<\/code><\/pre>\n<p>\n    Leave compression disabled for security reasons.\n<\/p>\n<h4>\n    Step 7<br \/>\n<\/h4>\n<pre><code>Customize encryption settings? [y\/n]: n<\/code><\/pre>\n<p>\n    Press Enter to use the default secure settings.\n<\/p>\n<h4>\n    Step 8<br \/>\n<\/h4>\n<pre><code>Client name: [VPN-CLIENT-NAME]<\/code><\/pre>\n<p>\n    Enter a name for your VPN client.\n<\/p>\n<h4>\n    Step 9<br \/>\n<\/h4>\n<pre><code>Select an option [1-2]: 1<\/code><\/pre>\n<p>\n    Choose whether the client configuration should be protected with a password.\n<\/p>\n<h4>\n    The End<br \/>\n<\/h4>\n<pre><code>Download the .ovpn file and import it in your OpenVPN client.<\/code><\/pre>\n<p>\n    Download the generated .ovpn file and import it into your preferred OpenVPN client.\n<\/p>\n<hr>\n<h4>\n    How to create more clients<br \/>\n<\/h4>\n<p>\n    Re-run the installation script to add additional VPN clients.\n<\/p>\n<pre><code>Welcome to OpenVPN-install!\r\n\r\n1) Add a new user\r\n2) Revoke existing user\r\n3) Remove OpenVPN\r\n4) Exit\r\n\r\nSelect an option [1-4]: 1<\/code><\/pre>\n<p>\n    Select option 1 and follow the client creation process again.\n<\/p>\n<hr>\n<p>\n    If you want to install your OpenVPN server, you can purchase a VPS or Dedicated Server from LyraHosting.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction OpenVPN is an open-source Virtual Private Network (VPN) project. It creates secure connections over the Internet using a custom security protocol that utilizes SSL\/TLS. VPN software protects your information by masking your device&#8217;s IP address, encrypting your data, and routing it through secure networks to servers in different locations. This helps hide your online [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2834,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[19],"tags":[],"class_list":["post-2832","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS - lyrahost<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS - lyrahost\" \/>\n<meta property=\"og:description\" content=\"Introduction OpenVPN is an open-source Virtual Private Network (VPN) project. It creates secure connections over the Internet using a custom security protocol that utilizes SSL\/TLS. VPN software protects your information by masking your device&#8217;s IP address, encrypting your data, and routing it through secure networks to servers in different locations. This helps hide your online [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/\" \/>\n<meta property=\"og:site_name\" content=\"lyrahost\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-18T10:30:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-18T11:25:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lyrahosting.mockupz.in\/acf\/wp-content\/uploads\/2026\/06\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"576\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"webmaster\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webmaster\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/\"},\"author\":{\"name\":\"webmaster\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/#\\\/schema\\\/person\\\/3321e0afe3fb366f689a167247b12b4b\"},\"headline\":\"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS\",\"datePublished\":\"2026-06-18T10:30:14+00:00\",\"dateModified\":\"2026-06-18T11:25:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/\"},\"wordCount\":358,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png\",\"articleSection\":[\"How To\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/\",\"url\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/\",\"name\":\"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS - lyrahost\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png\",\"datePublished\":\"2026-06-18T10:30:14+00:00\",\"dateModified\":\"2026-06-18T11:25:59+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/#\\\/schema\\\/person\\\/3321e0afe3fb366f689a167247b12b4b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png\",\"contentUrl\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png\",\"width\":1024,\"height\":576},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/2026\\\/06\\\/18\\\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/#website\",\"url\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/\",\"name\":\"lyrahost\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/#\\\/schema\\\/person\\\/3321e0afe3fb366f689a167247b12b4b\",\"name\":\"webmaster\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ca57eb5feed903bca6ff1858f48ba0899fa146fa61e37546ffd825966fd9cf32?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ca57eb5feed903bca6ff1858f48ba0899fa146fa61e37546ffd825966fd9cf32?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ca57eb5feed903bca6ff1858f48ba0899fa146fa61e37546ffd825966fd9cf32?s=96&d=mm&r=g\",\"caption\":\"webmaster\"},\"sameAs\":[\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\"],\"url\":\"https:\\\/\\\/lyrahosting.mockupz.in\\\/acf\\\/author\\\/webmaster\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS - lyrahost","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS - lyrahost","og_description":"Introduction OpenVPN is an open-source Virtual Private Network (VPN) project. It creates secure connections over the Internet using a custom security protocol that utilizes SSL\/TLS. VPN software protects your information by masking your device&#8217;s IP address, encrypting your data, and routing it through secure networks to servers in different locations. This helps hide your online [&hellip;]","og_url":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/","og_site_name":"lyrahost","article_published_time":"2026-06-18T10:30:14+00:00","article_modified_time":"2026-06-18T11:25:59+00:00","og_image":[{"width":1024,"height":576,"url":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-content\/uploads\/2026\/06\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png","type":"image\/png"}],"author":"webmaster","twitter_card":"summary_large_image","twitter_misc":{"Written by":"webmaster","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#article","isPartOf":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/"},"author":{"name":"webmaster","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/#\/schema\/person\/3321e0afe3fb366f689a167247b12b4b"},"headline":"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS","datePublished":"2026-06-18T10:30:14+00:00","dateModified":"2026-06-18T11:25:59+00:00","mainEntityOfPage":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/"},"wordCount":358,"commentCount":0,"image":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#primaryimage"},"thumbnailUrl":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-content\/uploads\/2026\/06\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png","articleSection":["How To"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/","url":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/","name":"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS - lyrahost","isPartOf":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#primaryimage"},"image":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#primaryimage"},"thumbnailUrl":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-content\/uploads\/2026\/06\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png","datePublished":"2026-06-18T10:30:14+00:00","dateModified":"2026-06-18T11:25:59+00:00","author":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/#\/schema\/person\/3321e0afe3fb366f689a167247b12b4b"},"breadcrumb":{"@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#primaryimage","url":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-content\/uploads\/2026\/06\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png","contentUrl":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-content\/uploads\/2026\/06\/How-to-setup-an-OpenVPN-server-on-Ubuntu-18.0420.0422.04-LTS.png","width":1024,"height":576},{"@type":"BreadcrumbList","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/2026\/06\/18\/how-to-setup-an-openvpn-server-on-ubuntu-18-04-20-04-22-04-lts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lyrahosting.mockupz.in\/acf\/"},{"@type":"ListItem","position":2,"name":"How to setup an OpenVPN server on Ubuntu 18.04, 20.04, 22.04 LTS"}]},{"@type":"WebSite","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/#website","url":"https:\/\/lyrahosting.mockupz.in\/acf\/","name":"lyrahost","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lyrahosting.mockupz.in\/acf\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/lyrahosting.mockupz.in\/acf\/#\/schema\/person\/3321e0afe3fb366f689a167247b12b4b","name":"webmaster","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ca57eb5feed903bca6ff1858f48ba0899fa146fa61e37546ffd825966fd9cf32?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ca57eb5feed903bca6ff1858f48ba0899fa146fa61e37546ffd825966fd9cf32?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ca57eb5feed903bca6ff1858f48ba0899fa146fa61e37546ffd825966fd9cf32?s=96&d=mm&r=g","caption":"webmaster"},"sameAs":["https:\/\/lyrahosting.mockupz.in\/acf"],"url":"https:\/\/lyrahosting.mockupz.in\/acf\/author\/webmaster\/"}]}},"_links":{"self":[{"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/posts\/2832","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/comments?post=2832"}],"version-history":[{"count":1,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/posts\/2832\/revisions"}],"predecessor-version":[{"id":2833,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/posts\/2832\/revisions\/2833"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/media\/2834"}],"wp:attachment":[{"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/media?parent=2832"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/categories?post=2832"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lyrahosting.mockupz.in\/acf\/wp-json\/wp\/v2\/tags?post=2832"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}