{"id":4171,"date":"2018-02-12T15:32:47","date_gmt":"2018-02-12T20:32:47","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=4171"},"modified":"2018-02-12T15:32:47","modified_gmt":"2018-02-12T20:32:47","slug":"install-openvpn-centos-7","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/","title":{"rendered":"How to Install OpenVPN on CentOS 7"},"content":{"rendered":"<h1>How to Install OpenVPN on CentOS 7<\/h1>\n<div class=\"row\">\n<div class=\"col-lg-9\">\n<p><a rel=\"nofollow\" href=\"https:\/\/openvpn.net\/\" target=\"_blank\"><b>OpenVPN\u00ae<\/b><\/a> is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. OpenVPN allows peers to use a pre-shared secret key, certificate, or username and password combination to authenticate traffic and communications. It can also function in multi-client environments, providing each client with an authentication certificate from the server.<\/p>\n<\/div>\n<div class=\"col-lg-3\">\n<img loading=\"lazy\" decoding=\"async\" width=\"208\" height=\"54\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png\" alt=\"openvpn_logo\" class=\"alignright size-full wp-image-4174\" \/>\n<\/div>\n<\/div>\n<p>OpenVPN was first published in 2001 and has become a favorite VPN solution for multiple platforms and device types; OpenVPN functions on Windows, Mac OS X, iOS, Android, and many Linux-style systems. Additionally, OpenVPN has been enhanced and modified for use across different router firmware implementations. <\/p>\n<h2>Getting Started<\/h2>\n<p>To get started installing OpenVPN, you will need a node running on a <a href=\"https:\/\/www.globo.tech\/cloud-server-pricing\" target=\"_blank\"><b>cloud server<\/b><\/a>, <a href=\"https:\/\/www.globo.tech\/dedicated-server-hosting\" target=\"_blank\"><b>dedicated server<\/b><\/a>, or virtual private server; your operational needs or personal preference can be the deciding factor. When you&#8217;ve chosen a node, it will need to have an up-to-date version of <a href=\"http:\/\/centos.mirror.globo.tech\/\" target=\"_blank\"><b>CentOS 7<\/b><\/a> running.<\/p>\n<p>CentOS 7 is a popular Linux-style operating system and you can learn more about the CentOS Project on the project website.<\/p>\n<p>Additionally, you may choose to use a domain or sub-domain later in this guide. If you&#8217;re choosing to use a domain or sub-domain, you may want to set this up before setting up OpenVPN.<\/p>\n<h2>How to Install OpenVPN on CentOS 7<\/h2>\n<p>Once you&#8217;ve chosen your cloud, dedicated, or virtual private server node, verified your CentOS 7 installation, and have root access available, you&#8217;re ready to begin. As mentioned above, if you are using a domain or sub-domain for this setup, you may want to have that available before walking through the steps to install OpenVPN.<\/p>\n<p>The first step during this installation is to make sure your server node is up-to-date and then reboot, processing any updates if needed:<br \/>\n<code>yum update -y && sleep 5 && reboot<\/code><\/p>\n<p>After your system reboots, you can install the EPEL (Extra Packages for Enterprise Linux) repository:<br \/>\n<code>yum install epel-release -y<\/code><\/p>\n<p>When complete, it&#8217;s time to install OpenVPN and EasyRSA (a small key management package for use with OpenVPN) for generating RSA keys:<br \/>\n<code>yum install openvpn easy-rsa -y<\/code><\/p>\n<p>Once OpenVPN and EasyRSA are installed, you can copy the example configuration:<br \/>\n<code>cp \/usr\/share\/doc\/openvpn-*\/sample\/sample-config-files\/server.conf \/etc\/openvpn<\/code><\/p>\n<p>Now it&#8217;s time to edit the server configuration file:<br \/>\n<code>nano \/etc\/openvpn\/server.conf<\/code><\/p>\n<p>This step is optional, but if you want to push all traffic through the VPN, you will want to uncomment the following line:<br \/>\n<code class=\"gris\">dh dh2048.pem<br \/>\nuser nobody<br \/>\ngroup nobody<\/code><\/p>\n<p>After you&#8217;ve edited the configuration file, create a folder to store the key. Then copy the key and the script:<br \/>\n<code>mkdir -p \/etc\/openvpn\/easy-rsa\/keys<br \/>\ncp -rf \/usr\/share\/easy-rsa\/2.0\/* \/etc\/openvpn\/easy-rsa<\/code><\/p>\n<p>When you&#8217;ve finished copying the keys and script, you can edit the vars file to make changes to the default value:<br \/>\n<code>nano \/etc\/openvpn\/easy-rsa\/vars<\/code><\/p>\n<p>Now copy the OpenSSL configuration:<br \/>\n<code class=\"gris\"># These are the default values for fields<br \/>\n# which will be placed in the certificate.<br \/>\n# Don't leave any of these fields blank.<br \/>\nexport KEY_COUNTRY=\"CA\"<br \/>\nexport KEY_PROVINCE=\"QC\"<br \/>\nexport KEY_CITY=\"Montreal\"<br \/>\nexport KEY_ORG=\"Globotech\"<br \/>\nexport KEY_EMAIL=\"abuse@example.com\"<br \/>\nexport KEY_OU=\"IT\"<br \/>\n# X509 Subject Field<br \/>\nexport KEY_NAME=\"server\"<br \/>\nexport KEY_CN=vpn.example.com<\/code><\/p>\n<p>Then copy the OpenSSL configuration:<br \/>\n<code>cp \/etc\/openvpn\/easy-rsa\/openssl-1.0.0.cnf \/etc\/openvpn\/easy-rsa\/openssl.cnf<\/code><\/p>\n<p>It&#8217;s time to start generating keys and certificates. Then you can load the vars file to automate the setup process:<br \/>\n<code>cd \/etc\/openvpn\/easy-rsa<br \/>\nsource .\/vars<\/code><\/p>\n<p>Before proceeding, we want to use a fresh install to clean up a bit. Make sure to do this on a fresh install, since you will lose all your certificates:<br \/>\n<code.\/clean-all><\/code><\/p>\n<p>After cleaning up, we&#8217;re going to generate keys making sure to match our KEY_NAME value:<br \/>\n<code>.\/build-ca<br \/>\n.\/build-key-server server<br \/>\n.\/build-dh<\/code><\/p>\n<p>Take the generated key, copy it, and place the copy in your OpenVPN folder:<br \/>\n<code>cd \/etc\/openvpn\/easy-rsa\/keys<br \/>\ncp dh2048.pem ca.crt server.crt server.key \/etc\/openvpn<\/code><\/p>\n<p>Now we&#8217;re going to generate our client certificate, replacing the &#8220;client&#8221; with the username you choose:<br \/>\n<code>cd \/etc\/openvpn\/easy-rsa<br \/>\n.\/build-key client<\/code><\/p>\n<p>When complete, we want to configure the routing parts of CentOS 7 for use with the VPN installation:<br \/>\n<code>yum install iptables-services -y<br \/>\nsystemctl mask firewalld<br \/>\nsystemctl enable iptables<br \/>\nsystemctl stop firewalld<br \/>\nsystemctl start iptables<br \/>\niptables --flush<\/code><\/p>\n<p>We want to add some forwarding rules before enabling our VPN service:<br \/>\n<code>iptables -t nat -A POSTROUTING -s 10.8.0.0\/24 -o eth0 -j MASQUERADE<br \/>\niptables-save > \/etc\/sysconfig\/iptables<br \/>\nnano \/etc\/sysctl.conf<\/code><br \/>\n<code class=\"gris\">net.ipv4.ip_forward = 1<\/code><\/p>\n<p>Once you&#8217;ve completed your configuration and forwarding rules, it&#8217;s time to enable the OpenVPN service and start it up:<br \/>\n<code>systemctl -f enable openvpn@server.service<br \/>\nsystemctl start openvpn@server.service<\/code><\/p>\n<p>After starting and enable the service, we want to configure the client, copy the &#8220;ca&#8221; certificate, and copy the &#8220;client&#8221; key. Each of these copied files is necessary to use the VPN:<br \/>\n<code>\/etc\/openvpn\/easy-rsa\/keys\/ca.crt<br \/>\n\/etc\/openvpn\/easy-rsa\/keys\/client.crt<br \/>\n\/etc\/openvpn\/easy-rsa\/keys\/client.key<br \/>\n<\/code><\/p>\n<p>To get started using the VPN, we need to create a .ovpn file configuration for use with OpenVPN:<br \/>\n<code>nano client.ovpn<\/code><br \/>\n<code class=\"gris\">client<br \/>\ndev tun<br \/>\nproto udp<br \/>\nremote \"your_server_ip\" 1194<br \/>\nresolv-retry infinite<br \/>\nnobind<br \/>\npersist-key<br \/>\npersist-tun<br \/>\ncomp-lzo<br \/>\nverb 3<br \/>\nca ca.crt<br \/>\ncert client.crt<br \/>\nkey client.key<\/code><\/p>\n<p>Once you&#8217;ve created your .ovpn file it&#8217;s time to use the certificate:<br \/>\n<code class=\"gris\">Windows: Copy all file to C:Program FilesOpenVPNconfig<br \/>\nMacOS: Import .ovpn file with Tunnelblick<br \/>\nLinux: sudo openvpn --config client.ovpn <\/code><\/p>\n<h2>Conclusion<\/h2>\n<p>Congratulations, you&#8217;ve installed OpenVPN on your cloud or dedicated server node running CentOS 7. If you found this guide on how to install OpenVPN helpful, please share it with other users going through the same process. Additionally, check out our other guides and learn more about other options available for your cloud server or dedicated server nodes. <\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>How to Install OpenVPN on CentOS 7 OpenVPN\u00ae is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. OpenVPN allows peers to use a pre-shared secret key, certificate, or username and password<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[74],"tags":[],"class_list":["post-4171","post","type-post","status-publish","format-standard","hentry","category-networking","operating_system-centos-7"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install OpenVPN on CentOS 7 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"How to Install OpenVPN on CentOS 7? OpenVPN is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. To...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install OpenVPN on CentOS 7 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"How to Install OpenVPN on CentOS 7? OpenVPN is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. To...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-12T20:32:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/\"},\"author\":{\"name\":\"GloboTech Communications\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"headline\":\"How to Install OpenVPN on CentOS 7\",\"datePublished\":\"2018-02-12T20:32:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/\"},\"wordCount\":725,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/openvpn_logo.png\",\"articleSection\":[\"Networking\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/\",\"name\":\"How to Install OpenVPN on CentOS 7 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/openvpn_logo.png\",\"datePublished\":\"2018-02-12T20:32:47+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"How to Install OpenVPN on CentOS 7? OpenVPN is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. To...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/openvpn_logo.png\",\"contentUrl\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/openvpn_logo.png\",\"width\":208,\"height\":54,\"caption\":\"openvpn_logo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/install-openvpn-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install OpenVPN on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#website\",\"url\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.globo.tech\\\/learning-center\\\/#\\\/schema\\\/person\\\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\\\/\\\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install OpenVPN on CentOS 7 - Globo.Tech","description":"How to Install OpenVPN on CentOS 7? OpenVPN is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. To...","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:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install OpenVPN on CentOS 7 - Globo.Tech","og_description":"How to Install OpenVPN on CentOS 7? OpenVPN is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. To...","og_url":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/","og_site_name":"Globo.Tech","article_published_time":"2018-02-12T20:32:47+00:00","og_image":[{"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png","type":"","width":"","height":""}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/"},"author":{"name":"GloboTech Communications","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"headline":"How to Install OpenVPN on CentOS 7","datePublished":"2018-02-12T20:32:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/"},"wordCount":725,"commentCount":0,"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png","articleSection":["Networking"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/","url":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/","name":"How to Install OpenVPN on CentOS 7 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png","datePublished":"2018-02-12T20:32:47+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"How to Install OpenVPN on CentOS 7? OpenVPN is open-source software that lets the user implement and create virtual private networks; these networks serve as a secure connection between two points, allowing traffic to move unobstructed while remaining private and secure. To...","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2018\/02\/openvpn_logo.png","width":208,"height":54,"caption":"openvpn_logo"},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/install-openvpn-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to Install OpenVPN on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4171","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=4171"}],"version-history":[{"count":5,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4171\/revisions"}],"predecessor-version":[{"id":4177,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4171\/revisions\/4177"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=4171"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=4171"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=4171"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}