{"id":1124,"date":"2022-01-28T13:34:11","date_gmt":"2022-01-28T12:34:11","guid":{"rendered":"https:\/\/irg-net.com\/?p=1124"},"modified":"2022-01-28T13:34:13","modified_gmt":"2022-01-28T12:34:13","slug":"how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8","status":"publish","type":"post","link":"https:\/\/irg-net.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/","title":{"rendered":"How to install and configure Pritunl VPN server on CentOS Stream 8"},"content":{"rendered":"\n<p>Pritunl VPN is one of the most secure open source VPN tools that are currently available for multi-cloud VPN peering. Pritunl VPN server uses MongoDB and can be deployed on any cloud infrastructure.<\/p>\n\n\n\n<p>Pritunl VPN Server supports OpenVPN and Wireguard. The VPN operates in a server-client architecture in such a way that the clients connect to the remote VPN server and routing is handled by the remote Pritunl VPN server.<\/p>\n\n\n\n<p>In this article we shall cover how to install Pritunl VPN server on CentOS 8 | RHEL 8 Linux system. Follow the steps below to setup Pritunl VPN server on your hosted environment.<\/p>\n\n\n\n<p>As always please don&#8217;t forget, if you are <strong>root<\/strong> you don&#8217;t need to use <strong>sudo <\/strong>in your commands! Let&#8217;s start:<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><strong>Step 1:<\/strong> Install MongoDB Server &#8211; Add the repositories for MongoDB and Pritunl \u2013<\/p>\n\n\n\n<p>Add MongoDB Repository<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo tee \/etc\/yum.repos.d\/mongodb-org.repo&lt;&lt;EOF\r\n[mongodb-org]\r\nname=MongoDB Repository\r\nbaseurl=https:\/\/repo.mongodb.org\/yum\/redhat\/8\/mongodb-org\/5.0\/x86_64\/\r\ngpgcheck=1\r\nenabled=1\r\ngpgkey=https:\/\/www.mongodb.org\/static\/pgp\/server-5.0.asc\r\nEOF<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"574\" height=\"306\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg?resize=574%2C306&#038;ssl=1\" alt=\"\" class=\"wp-image-1125\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg?w=574&amp;ssl=1 574w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg?resize=300%2C160&amp;ssl=1 300w\" sizes=\"auto, (max-width: 574px) 100vw, 574px\" \/><\/figure>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Add Pritunl Repository<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo tee \/etc\/yum.repos.d\/pritunl.repo&lt;&lt;EOF\r\n[pritunl]\r\nname=Pritunl Repository\r\nbaseurl=https:\/\/repo.pritunl.com\/stable\/yum\/centos\/8\/\r\ngpgcheck=1\r\nenabled=1\r\nEOF<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"248\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122718.jpg?resize=512%2C248&#038;ssl=1\" alt=\"\" class=\"wp-image-1126\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122718.jpg?w=512&amp;ssl=1 512w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122718.jpg?resize=300%2C145&amp;ssl=1 300w\" sizes=\"auto, (max-width: 512px) 100vw, 512px\" \/><\/figure>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Add Pritunl VPN GPG keys<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo gpg --keyserver hkp:\/\/keyserver.ubuntu.com --recv-keys 7568D9BB55FF9E5287D586017AE645C0CF8E292A\r\nsudo gpg --armor --export 7568D9BB55FF9E5287D586017AE645C0CF8E292A > key.tmp; sudo rpm --import key.tmp; rm -f key.tmp<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Install EPEL-Release<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo dnf -y install https:\/\/dl.fedoraproject.org\/pub\/epel\/epel-release-latest-8.noarch.rpm<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Install Pritunl and MongoDB<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo yum -y install pritunl mongodb-org<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Start and enable MongoDB, Pritunl service<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo systemctl start mongod pritunl\r\nsudo systemctl enable mongod pritunl<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Confirm status of the services:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\"># systemctl status mongod pritunl\r\n\u25cf mongod.service - MongoDB Database Server\r\n   Loaded: loaded (\/usr\/lib\/systemd\/system\/mongod.service; enabled; vendor preset: disabled)\r\n   Active: active (running) since Fri 2022-01-28 06:40:02 EST; 1min 56s ago\r\n     Docs: https:\/\/docs.mongodb.org\/manual\r\n Main PID: 26708 (mongod)\r\n   Memory: 149.0M\r\n   CGroup: \/system.slice\/mongod.service\r\n           \u2514\u250026708 \/usr\/bin\/mongod -f \/etc\/mongod.conf\r\n\r\nJan 28 06:40:00 irgNET-vpn01 systemd[1]: Starting MongoDB Database Server...\r\nJan 28 06:40:00 irgNET-vpn01 mongod[26641]: about to fork child process, waiting until server is ready for connection>\r\nJan 28 06:40:00 irgNET-vpn01 mongod[26708]: forked process: 26708\r\nJan 28 06:40:02 irgNET-vpn01 mongod[26641]: child process started successfully, parent exiting\r\nJan 28 06:40:02 irgNET-vpn01 systemd[1]: Started MongoDB Database Server.\r\n\r\n\u25cf pritunl.service - Pritunl Daemon\r\n   Loaded: loaded (\/etc\/systemd\/system\/pritunl.service; enabled; vendor preset: disabled)\r\n   Active: active (running) since Fri 2022-01-28 06:40:00 EST; 1min 58s ago\r\n Main PID: 26633 (pritunl)\r\n    Tasks: 19 (limit: 11348)\r\n   Memory: 303.4M\r\n   CGroup: \/system.slice\/pritunl.service\r\n           \u251c\u250026633 \/usr\/lib\/pritunl\/bin\/python \/usr\/lib\/pritunl\/bin\/pritunl start\r\n           \u2514\u250031153 pritunl-web\r\n<\/code><\/pre>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Basically that&#8217;s it, the configuration of the Pritunl&#8217;s itself is the same as in my tutorial from Debian 10, so I would ask you to take the further steps from there.<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If you have any questions please leave a comment down below. \ud83d\ude42<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Pritunl VPN is one of the most secure open source VPN tools that are currently available for multi-cloud VPN peering. Pritunl VPN server uses MongoDB and can be deployed on any cloud infrastructure. Pritunl VPN Server supports OpenVPN and Wireguard. The VPN operates in a server-client architecture in such a way that the clients connect [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[17,1,21],"tags":[],"class_list":["post-1124","post","type-post","status-publish","format-standard","hentry","category-advancedtutorials","category-blog","category-rocky"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install and configure Pritunl VPN server on CentOS Stream 8 - irgNET<\/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:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install and configure Pritunl VPN server on CentOS Stream 8 - irgNET\" \/>\n<meta property=\"og:description\" content=\"Pritunl VPN is one of the most secure open source VPN tools that are currently available for multi-cloud VPN peering. Pritunl VPN server uses MongoDB and can be deployed on any cloud infrastructure. Pritunl VPN Server supports OpenVPN and Wireguard. The VPN operates in a server-client architecture in such a way that the clients connect [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/\" \/>\n<meta property=\"og:site_name\" content=\"irgNET\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-28T12:34:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-28T12:34:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg\" \/>\n<meta name=\"author\" content=\"H. Cemre G\u00fcnay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@irg_net\" \/>\n<meta name=\"twitter:site\" content=\"@irg_net\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"H. Cemre G\u00fcnay\" \/>\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:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/\"},\"author\":{\"name\":\"H. Cemre G\u00fcnay\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\"},\"headline\":\"How to install and configure Pritunl VPN server on CentOS Stream 8\",\"datePublished\":\"2022-01-28T12:34:11+00:00\",\"dateModified\":\"2022-01-28T12:34:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/\"},\"wordCount\":217,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/2022-01-28_122213.jpg\",\"articleSection\":[\"Advanced Tutorials\",\"Blog\",\"Rocky Linux\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/\",\"name\":\"How to install and configure Pritunl VPN server on CentOS Stream 8 - irgNET\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/2022-01-28_122213.jpg\",\"datePublished\":\"2022-01-28T12:34:11+00:00\",\"dateModified\":\"2022-01-28T12:34:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/2022-01-28_122213.jpg?fit=574%2C306&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/2022-01-28_122213.jpg?fit=574%2C306&ssl=1\",\"width\":574,\"height\":306},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install and configure Pritunl VPN server on CentOS Stream 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"name\":\"irgNET\",\"description\":\"a virtual Knowledge Base\",\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\",\"name\":\"irg-NET\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"width\":2048,\"height\":2048,\"caption\":\"irg-NET\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/irg_net\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/h-cemre-g\u00fcnay-2b61601b4\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC8GknhO5YMAkAoVxppu6aaQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\",\"name\":\"H. Cemre G\u00fcnay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"caption\":\"H. Cemre G\u00fcnay\"},\"sameAs\":[\"http:\\\/\\\/192.168.34.155\\\/wordpress\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install and configure Pritunl VPN server on CentOS Stream 8 - irgNET","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:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/","og_locale":"en_US","og_type":"article","og_title":"How to install and configure Pritunl VPN server on CentOS Stream 8 - irgNET","og_description":"Pritunl VPN is one of the most secure open source VPN tools that are currently available for multi-cloud VPN peering. Pritunl VPN server uses MongoDB and can be deployed on any cloud infrastructure. Pritunl VPN Server supports OpenVPN and Wireguard. The VPN operates in a server-client architecture in such a way that the clients connect [&hellip;]","og_url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/","og_site_name":"irgNET","article_published_time":"2022-01-28T12:34:11+00:00","article_modified_time":"2022-01-28T12:34:13+00:00","og_image":[{"url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg","type":"","width":"","height":""}],"author":"H. Cemre G\u00fcnay","twitter_card":"summary_large_image","twitter_creator":"@irg_net","twitter_site":"@irg_net","twitter_misc":{"Written by":"H. Cemre G\u00fcnay","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#article","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/"},"author":{"name":"H. Cemre G\u00fcnay","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66"},"headline":"How to install and configure Pritunl VPN server on CentOS Stream 8","datePublished":"2022-01-28T12:34:11+00:00","dateModified":"2022-01-28T12:34:13+00:00","mainEntityOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/"},"wordCount":217,"commentCount":0,"publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg","articleSection":["Advanced Tutorials","Blog","Rocky Linux"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/","name":"How to install and configure Pritunl VPN server on CentOS Stream 8 - irgNET","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#primaryimage"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg","datePublished":"2022-01-28T12:34:11+00:00","dateModified":"2022-01-28T12:34:13+00:00","breadcrumb":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#primaryimage","url":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg?fit=574%2C306&ssl=1","contentUrl":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2022\/01\/2022-01-28_122213.jpg?fit=574%2C306&ssl=1","width":574,"height":306},{"@type":"BreadcrumbList","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-and-configure-pritunl-vpn-server-on-centos-stream-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/"},{"@type":"ListItem","position":2,"name":"How to install and configure Pritunl VPN server on CentOS Stream 8"}]},{"@type":"WebSite","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","name":"irgNET","description":"a virtual Knowledge Base","publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization","name":"irg-NET","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/","url":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","contentUrl":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","width":2048,"height":2048,"caption":"irg-NET"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/irg_net","https:\/\/www.linkedin.com\/in\/h-cemre-g\u00fcnay-2b61601b4\/","https:\/\/www.youtube.com\/channel\/UC8GknhO5YMAkAoVxppu6aaQ"]},{"@type":"Person","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66","name":"H. Cemre G\u00fcnay","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","caption":"H. Cemre G\u00fcnay"},"sameAs":["http:\/\/192.168.34.155\/wordpress"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1124","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/comments?post=1124"}],"version-history":[{"count":2,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1124\/revisions"}],"predecessor-version":[{"id":1128,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/1124\/revisions\/1128"}],"wp:attachment":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/media?parent=1124"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/categories?post=1124"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/tags?post=1124"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}