{"id":7716,"date":"2024-07-16T20:13:51","date_gmt":"2024-07-17T03:13:51","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=7716"},"modified":"2024-07-16T20:13:51","modified_gmt":"2024-07-17T03:13:51","slug":"install-openvpn-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-openvpn-linux\/","title":{"rendered":"How to Install OpenVPN Linux | Secure Your Connections"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2024\/07\/Tech-team-showing-how-to-install-openvpn-linux-in-a-data-center-capturing-openvpn-install-process-300x300.jpg\" alt=\"Tech team showing how to install openvpn linux in a data center capturing openvpn install process\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Accessing remote servers is a vital technique for us at <a href=\"https:\/\/ioflood.com\/\">IOFLOOD<\/a>, and we often install OpenVPN Linux for secure network connections. To educate to our customers how to install openVPN on their <a href=\"https:\/\/ioflood.com\/bare-metal-cloud-server.php\">bare metal cloud servers<\/a> we&#8217;ve included our most efficient methods in today&#8217;s article.<\/p>\n<p><strong>In this tutorial, we will guide you on how to install OpenVPN Linux.<\/strong> We will show you methods for both APT and YUM-based distributions, delve into compiling <code>OpenVPN<\/code> from source, installing a specific version, and finally, how to use the <code>OpenVPN<\/code> command and ensure it&#8217;s installed correctly.<\/p>\n<p>So, let&#8217;s dive in and begin learning how to install OpenVPN on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install OpenVPN Ubuntu?<\/h2>\n<blockquote><p>\n  You can install OpenVPN on Ubuntu with the command <code>sudo apt-get install openvpn<\/code>. After installation, you can use OpenVPN by running the command <code>sudo openvpn --config \/path\/to\/your\/config.ovpn<\/code>. Here&#8217;s an example:\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># Install OpenVPN on Ubuntu\nsudo apt-get install openvpn\n\n# Use OpenVPN with a configuration file\nsudo openvpn --config \/path\/to\/your\/config.ovpn\n\n# Output:\n# Initialization Sequence Completed\n<\/code><\/pre>\n<p>This is just a basic way to install and use OpenVPN on Linux. But there&#8217;s so much more to learn about OpenVPN, including advanced installation methods, alternative VPN solutions, and troubleshooting common issues. Continue reading for a comprehensive guide on installing and using OpenVPN on Linux.<\/p>\n<h2>Quick Start Your OpenVPN Install<\/h2>\n<p>OpenVPN is an open-source Virtual Private Network (VPN) application that lets you create secure point-to-point or site-to-site connections. It&#8217;s often used to secure internet connections, allowing users to browse privately and securely.<\/p>\n<p>Now, let&#8217;s walk you through the process of installing OpenVPN on Linux. We&#8217;ll cover installations using both APT and YUM package managers.<\/p>\n<h3>Install OpenVPN Ubuntu with APT<\/h3>\n<p>If you&#8217;re using a Debian-based distribution like Ubuntu, you&#8217;ll be using the APT package manager. Here&#8217;s how you can install OpenVPN:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update\nsudo apt install openvpn\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# The following additional packages will be installed:\n#  libpkcs11-helper1\n# Suggested packages:\n#  resolvconf\n# The following NEW packages will be installed:\n#  libpkcs11-helper1 openvpn\n# 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.\n# Need to get 0 B\/467 kB of archives.\n# After this operation, 1,056 kB of additional disk space will be used.\n# Do you want to continue? [Y\/n]\n<\/code><\/pre>\n<p>In the above example, we first updated the package lists for upgrades and new packages with <code>sudo apt update<\/code>. Then, we installed OpenVPN using <code>sudo apt install openvpn<\/code>. The output shows that OpenVPN and its dependencies have been installed successfully.<\/p>\n<h3>YUM Install OpenVPN Linux<\/h3>\n<p>If you&#8217;re using a RedHat-based distribution like CentOS, you&#8217;ll be using the YUM package manager. Here&#8217;s how you can install OpenVPN:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install openvpn\n\n# Output:\n# Loaded plugins: fastestmirror, langpacks\n# Loading mirror speeds from cached hostfile\n# Resolving Dependencies\n# --&gt; Running transaction check\n# ---&gt; Package openvpn.x86_64 0:2.4.10-1.el7 will be installed\n# --&gt; Finished Dependency Resolution\n# Dependencies Resolved\n# ================================================================================\n#  Package      Arch        Version               Repository                Size\n# ================================================================================\n# Installing:\n#  openvpn      x86_64      2.4.10-1.el7          epel                     489 k\n# Transaction Summary\n# ================================================================================\n# Install  1 Package\n# Total download size: 489 k\n# Installed size: 1.6 M\n# Is this ok [y\/d\/N]: \n<\/code><\/pre>\n<p>In the above example, we first updated the package lists with <code>sudo yum update<\/code>. Then, we installed OpenVPN using <code>sudo yum install openvpn<\/code>. The output shows that OpenVPN has been installed successfully.<\/p>\n<h2>How to Install OpenVPN from Source<\/h2>\n<p>Installing from source gives you the latest version and full control over the configuration. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/swupdate.openvpn.net\/community\/releases\/openvpn-2.4.9.tar.gz\ntar -xvzf openvpn-2.4.9.tar.gz\ncd openvpn-2.4.9\n.\/configure\nmake\nsudo make install\n\n# Output:\n# 'openvpn-2.4.9.tar.gz' saved\n# openvpn-2.4.9\/\n# openvpn-2.4.9\/Changes.rst\n# ...\n# openvpn-2.4.9 installed\n<\/code><\/pre>\n<p>In the above example, we first downloaded the OpenVPN source code using <code>wget<\/code>. We then extracted the tarball using <code>tar -xvzf<\/code>, navigated into the directory with <code>cd<\/code>, and built and installed OpenVPN using <code>.\/configure<\/code>, <code>make<\/code>, and <code>sudo make install<\/code>.<\/p>\n<h2>Specific Versions: Install OpenVPN<\/h2>\n<p>Different versions of OpenVPN may have different features or compatibility. Here&#8217;s how you can install specific versions.<\/p>\n<h3>From Source<\/h3>\n<p>You can specify the version by downloading the corresponding source code. For example, to install version 2.4.7, replace <code>openvpn-2.4.9.tar.gz<\/code> with <code>openvpn-2.4.7.tar.gz<\/code> in the previous example.<\/p>\n<h3>Using APT<\/h3>\n<p>On Debian-based distributions, you can specify the version using the following syntax:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install openvpn=2.4.7-1ubuntu2\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# openvpn is already the newest version (2.4.7-1ubuntu2).\n<\/code><\/pre>\n<h3>Using YUM<\/h3>\n<p>On RedHat-based distributions, you can specify the version using the following syntax:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install openvpn-2.4.7-1.el7\n\n# Output:\n# Loaded plugins: fastestmirror, langpacks\n# Loading mirror speeds from cached hostfile\n# Resolving Dependencies\n# --&gt; Running transaction check\n# ---&gt; Package openvpn.x86_64 0:2.4.7-1.el7 will be installed\n# --&gt; Finished Dependency Resolution\n<\/code><\/pre>\n<p>Here&#8217;s a comparison of different OpenVPN versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Notable Changes<\/th>\n<th>Compatibility<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>2.4.9<\/td>\n<td>Improved TLS 1.3 support<\/td>\n<td>Ubuntu 20.04, CentOS 8<\/td>\n<\/tr>\n<tr>\n<td>2.4.7<\/td>\n<td>Fixed renegotiation bug<\/td>\n<td>Ubuntu 18.04, CentOS 7<\/td>\n<\/tr>\n<tr>\n<td>2.4.6<\/td>\n<td>Added support for LZ4 compression<\/td>\n<td>Ubuntu 16.04, CentOS 6<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using and Verifying OpenVPN Install<\/h2>\n<p>After installing OpenVPN, you can use it by specifying a configuration file:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo openvpn --config \/path\/to\/your\/config.ovpn\n\n# Output:\n# Initialization Sequence Completed\n<\/code><\/pre>\n<p>To verify that OpenVPN is installed correctly, you can check its version:<\/p>\n<pre><code class=\"language-bash line-numbers\">openvpn --version\n\n# Output:\n# OpenVPN 2.4.9 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH\/PKTINFO] [AEAD] built on Apr 16 2020\n<\/code><\/pre>\n<p>In the above examples, we used OpenVPN with a configuration file and checked its version. The <code>Initialization Sequence Completed<\/code> message indicates that OpenVPN is running correctly.<\/p>\n<h2>Alternatives to OpenVPN Install<\/h2>\n<p>While OpenVPN is a robust and widely-used VPN solution, it&#8217;s not the only one available for Linux users. Let&#8217;s explore two alternative VPN solutions: WireGuard and IPsec.<\/p>\n<h3>WireGuard: The Lightweight Contender<\/h3>\n<p>WireGuard is a newer, lightweight VPN solution. It&#8217;s faster and easier to set up than OpenVPN. Here&#8217;s how you can install WireGuard on Ubuntu:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo add-apt-repository ppa:wireguard\/wireguard\nsudo apt-get update\nsudo apt-get install wireguard\n\n# Output:\n# WireGuard is now installed on your system.\n<\/code><\/pre>\n<p>In the above example, we added the WireGuard repository, updated our package lists, and installed WireGuard. The message at the end indicates a successful installation.<\/p>\n<h3>IPsec: The Established Standard<\/h3>\n<p>IPsec is an older VPN solution that&#8217;s built into many network devices. It&#8217;s more complex to set up but is highly configurable. Here&#8217;s how you can install the strongSwan IPsec VPN on Ubuntu:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install strongswan\n\n# Output:\n# strongSwan IPsec VPN is now installed on your system.\n<\/code><\/pre>\n<p>In the above example, we installed the strongSwan IPsec VPN using APT. The message at the end indicates a successful installation.<\/p>\n<p>Here&#8217;s a comparison of OpenVPN, WireGuard, and IPsec:<\/p>\n<table>\n<thead>\n<tr>\n<th>VPN Solution<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>OpenVPN<\/td>\n<td>Widely supported, robust<\/td>\n<td>Slower, complex setup<\/td>\n<\/tr>\n<tr>\n<td>WireGuard<\/td>\n<td>Fast, easy setup<\/td>\n<td>Newer, less tested<\/td>\n<\/tr>\n<tr>\n<td>IPsec<\/td>\n<td>Highly configurable, built into many devices<\/td>\n<td>Complex setup<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>While OpenVPN is a solid choice for most users, WireGuard and IPsec offer viable alternatives. Each solution has its strengths and weaknesses, so the best choice depends on your specific needs.<\/p>\n<h2>Troubleshooting OpenVPN Install<\/h2>\n<p>Like any software, OpenVPN can sometimes run into issues. Here are some common problems you might encounter when installing or using OpenVPN on Linux, along with their solutions.<\/p>\n<h3>OpenVPN Service Not Starting<\/h3>\n<p>Sometimes, the OpenVPN service may fail to start. You can check the status of the OpenVPN service with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">systemctl status openvpn\n\n# Output:\n# \u25cf openvpn.service - OpenVPN service\n#    Loaded: loaded (\/lib\/systemd\/system\/openvpn.service; enabled; vendor preset: enabled)\n#    Active: inactive (dead)\n<\/code><\/pre>\n<p>In this example, the <code>Active: inactive (dead)<\/code> line indicates that the OpenVPN service is not running. You can start it with <code>sudo systemctl start openvpn<\/code>.<\/p>\n<h3>Connection Issues<\/h3>\n<p>If you&#8217;re having trouble connecting to a VPN server, check your configuration file and network settings. You can test your network connection with <code>ping<\/code>, and you can check your OpenVPN logs for any error messages.<\/p>\n<pre><code class=\"language-bash line-numbers\">ping -c 4 vpnserver.com\n\n# Output:\n# PING vpnserver.com (192.0.2.1) 56(84) bytes of data.\n# 64 bytes from 192.0.2.1: icmp_seq=1 ttl=64 time=0.026 ms\n<\/code><\/pre>\n<p>In this example, we used <code>ping<\/code> to test the network connection to <code>vpnserver.com<\/code>. The output shows that the server is reachable.<\/p>\n<h3>Authentication Errors<\/h3>\n<p>If you&#8217;re getting authentication errors, check your username, password, and any certificate files. Make sure your credentials are correct, and that any certificate files are in the right place and have the correct permissions.<\/p>\n<pre><code class=\"language-bash line-numbers\">ls -l \/path\/to\/cert.crt\n\n# Output:\n# -rw-r--r-- 1 root root 1234 Jan  1 00:00 \/path\/to\/cert.crt\n<\/code><\/pre>\n<p>In this example, we used <code>ls -l<\/code> to check the permissions of <code>cert.crt<\/code>. The output shows that the file is readable by all users.<\/p>\n<p>Remember, troubleshooting is a systematic process. If you&#8217;re having trouble, start with the basics and work your way up. And don&#8217;t forget to consult the OpenVPN documentation and community if you need help.<\/p>\n<h2>Why Install OpenVPN Linux?<\/h2>\n<p>A Virtual Private Network (VPN) is a technology that creates a secure connection over a less secure network between your computer and the internet. It shields your browsing activity from prying eyes on public Wi-Fi, and more.<\/p>\n<h3>What Makes VPNs Crucial?<\/h3>\n<p>In our increasingly connected world, ensuring the security of our digital data is vital. Here&#8217;s where VPNs come into play. They encrypt your data and disguise your online identity, making it harder for third parties to track your activities and steal data. The encryption takes place in real-time.<\/p>\n<pre><code class=\"language-bash line-numbers\"># An example of data before encryption\necho 'This is some sensitive data.'\n\n# Output:\n# This is some sensitive data.\n\n# An example of data after encryption (not actual encryption)\necho 'This is some sensitive data.' | base64\n\n# Output:\n# VGhpcyBpcyBzb21lIHNlbnNpdGl2ZSBkYXRhLg==\n<\/code><\/pre>\n<p>In the above example, we used <code>base64<\/code> to simulate how a VPN would encrypt your data. &#8216;This is some sensitive data.&#8217; becomes &#8216;VGhpcyBpcyBzb21lIHNlbnNpdGl2ZSBkYXRhLg<span class=\"text-highlighted-inline\" style=\"background-color: #fffd38;\">&#8216; after encryption.<\/span><\/p>\n<h3>Different Types of VPNs<\/h3>\n<p>There are many types of VPNs, but the most common are remote access VPNs and site-to-site VPNs.<\/p>\n<ul>\n<li><strong>Remote access VPNs<\/strong> allow individuals to access a remote network, like connecting to your company&#8217;s network from home.<\/p>\n<\/li>\n<li>\n<p><strong>Site-to-site VPNs<\/strong> allow multiple fixed locations to establish secure connections with each other over a public network, like the internet.<\/p>\n<\/li>\n<\/ul>\n<p>OpenVPN is a type of remote access VPN that&#8217;s open-source and widely used. It&#8217;s known for its speed, security, and reliability, making it a popular choice among businesses and individuals alike.<\/p>\n<h3>VPNs in Today&#8217;s Digital World<\/h3>\n<p>In today&#8217;s digital world, where data breaches and privacy concerns are rampant, using a VPN is becoming a necessity. It&#8217;s especially important when you&#8217;re connected to a public Wi-Fi network, where your data could be exposed to others.<\/p>\n<p>Whether you&#8217;re an individual who values their privacy or a business protecting sensitive data, a VPN can provide the security and peace of mind you need when you&#8217;re online. Remember, the internet can be a dangerous place, but with the right tools, you can protect yourself and your data.<\/p>\n<h2>Practical Uses of OpenVPN Install<\/h2>\n<p>Virtual Private Networks (VPNs) play a crucial role in network administration and security. They provide an additional layer of protection, making it difficult for unauthorized individuals to access sensitive data.<\/p>\n<h3>VPNs and Network Administration<\/h3>\n<p>In network administration, VPNs are used to connect networks across different locations. This allows remote employees to access their company&#8217;s network securely, as if they were physically present in the office.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of a command to start a VPN connection\nsudo openvpn --config \/path\/to\/company\/config.ovpn\n\n# Output:\n# Initialization Sequence Completed\n<\/code><\/pre>\n<p>In the above example, a VPN connection is initiated using a configuration file specific to a company&#8217;s network. The <code>Initialization Sequence Completed<\/code> message indicates a successful connection.<\/p>\n<h3>VPNs and Network Security<\/h3>\n<p>VPNs also play a key role in network security. By creating a secure tunnel for data transmission, VPNs prevent unauthorized access and data breaches. This is especially important for organizations handling sensitive data.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of encrypted data transmission over VPN\necho 'Sensitive data' | openssl enc -aes-256-cbc -a\n\n# Output:\n# U2FsdGVkX1+vupppZksvRf5pqgvi4+AvgnfBH1IioUc=\n<\/code><\/pre>\n<p>In the above example, the command <code>openssl enc -aes-256-cbc -a<\/code> is used to simulate data encryption over a VPN. The output is the encrypted form of &#8216;Sensitive data&#8217;.<\/p>\n<h3>Exploring Related Concepts: Firewalls and Network Security<\/h3>\n<p>While VPNs provide a layer of security, they are just one part of a comprehensive network security strategy. Other crucial components include firewalls, intrusion detection systems, and secure protocols.<\/p>\n<h3>Further Resources for Mastering OpenVPN and Network Security<\/h3>\n<p>To deepen your understanding of OpenVPN and network security, here are some resources you might find helpful:<\/p>\n<ol>\n<li><a href=\"https:\/\/openvpn.net\/community-resources\/\" target=\"_blank\" rel=\"noopener\">OpenVPN&#8217;s Official Documentation<\/a>: A comprehensive guide covering all aspects of OpenVPN.<\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/www.coursera.org\/courses?query=network%20security\" target=\"_blank\" rel=\"noopener\">Network Security Courses<\/a>: A collection of courses on various network security topics, including VPNs.<\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/www.linuxjournal.com\/article\/10667\" target=\"_blank\" rel=\"noopener\">Linux Security: Firewalls and VPNs<\/a>: A Linux Journal article on implementing firewalls and VPNs on Linux.<\/p>\n<\/li>\n<\/ol>\n<h2>Wrapping Up: Install OpenVPN Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve navigated the realm of OpenVPN, a robust and widely-used VPN solution for Linux systems. We&#8217;ve delved into how to install and use OpenVPN, ensuring you can browse the internet privately and securely.<\/p>\n<p>We began with the basics, walking you through the process of installing OpenVPN using both APT and YUM package managers. We then ventured into more advanced territory, exploring how to install OpenVPN from source, install specific versions, and use the OpenVPN command. Along the way, we tackled common issues you might encounter when using OpenVPN, providing you with solutions and workarounds for each issue.<\/p>\n<p>We also looked at alternative approaches to VPN solutions for Linux, comparing OpenVPN with other VPN solutions like WireGuard and IPsec. Here&#8217;s a quick comparison of these methods:<\/p>\n<table>\n<thead>\n<tr>\n<th>VPN Solution<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>OpenVPN<\/td>\n<td>Robust, widely supported<\/td>\n<td>Slower, complex setup<\/td>\n<\/tr>\n<tr>\n<td>WireGuard<\/td>\n<td>Fast, easy setup<\/td>\n<td>Newer, less tested<\/td>\n<\/tr>\n<tr>\n<td>IPsec<\/td>\n<td>Highly configurable, built into many devices<\/td>\n<td>Complex setup<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with OpenVPN or you&#8217;re looking to level up your network security skills, we hope this guide has given you a deeper understanding of OpenVPN and its capabilities.<\/p>\n<p>With its balance of robustness, wide support, and secure connections, OpenVPN is a powerful tool for network security on Linux. Here&#8217;s to safer browsing and stronger privacy!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Accessing remote servers is a vital technique for us at IOFLOOD, and we often install OpenVPN Linux for secure network connections. To educate to our customers how to install openVPN on their bare metal cloud servers we&#8217;ve included our most efficient methods in today&#8217;s article. In this tutorial, we will guide you on how to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":22313,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-7716","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","cat-3-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7716","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=7716"}],"version-history":[{"count":13,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7716\/revisions"}],"predecessor-version":[{"id":22470,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7716\/revisions\/22470"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/22313"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=7716"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=7716"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=7716"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}