{"id":3176,"date":"2023-04-06T12:30:27","date_gmt":"2023-04-06T09:30:27","guid":{"rendered":"https:\/\/www.virtono.com\/community\/?p=3176"},"modified":"2023-04-05T13:08:43","modified_gmt":"2023-04-05T10:08:43","slug":"how-to-change-ssh-port-on-linux-or-unix","status":"publish","type":"post","link":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-change-ssh-port-on-linux-or-unix\/","title":{"rendered":"How to Change SSH Port on Linux or Unix"},"content":{"rendered":"\n<p>By default, SSH listens on port 22, if you want to change SSH port to a non-standard port can help enhance server security by making it harder for attackers to find and exploit SSH vulnerabilities. In this article, we will walk through the process of changing the SSH port on an AlmaLinux 8\/9, Ubuntu, Debian, Centos, Rocky, FreeBSD, OpenBSD, and NetBSD Unix.<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_73 counter-hierarchy ez-toc-counter ez-toc-light-blue ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-change-ssh-port-on-linux-or-unix\/#Change_SSH_port_AlmaLinux_89_and_Rocky\" title=\"Change SSH port AlmaLinux 8\/9 and Rocky\">Change SSH port AlmaLinux 8\/9 and Rocky<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-change-ssh-port-on-linux-or-unix\/#Change_SSH_port_Ubuntu_Debian_Centos\" title=\"Change SSH port Ubuntu, Debian, Centos\">Change SSH port Ubuntu, Debian, Centos<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-change-ssh-port-on-linux-or-unix\/#Change_SSH_port_FreeBSDOpenBSDNetBSD_Unix\" title=\"Change SSH port FreeBSD\/OpenBSD\/NetBSD Unix\">Change SSH port FreeBSD\/OpenBSD\/NetBSD Unix<\/a><\/li><\/ul><\/nav><\/div>\n<h3 class=\"wp-block-heading has-header-gradient-color has-text-color\"><span class=\"ez-toc-section\" id=\"Change_SSH_port_AlmaLinux_89_and_Rocky\"><\/span>Change SSH port AlmaLinux 8\/9 and Rocky<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p><strong>Step 1: Choose a New SSH Port<\/strong><\/p>\n\n\n\n<p>The first step in changing the SSH port is to choose a new port number. It is recommended to choose a port number between 1024 and 65535 that is not already in use by another service on the server. For this example, we will use port 2233.<\/p>\n\n\n\n<p><strong>Step 2: Modify the SSH Configuration File<\/strong><\/p>\n\n\n\n<p>The SSH configuration file is located at \/etc\/ssh\/sshd_config. Before modifying the file, it is a good idea to create a backup copy in case you need to revert to the original configuration. To create a backup copy, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo cp \/etc\/ssh\/sshd_config \/etc\/ssh\/sshd_config.bak<\/code><\/pre>\n\n\n\n<p>Next, open the SSH configuration file using a text editor such as nano:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano \/etc\/ssh\/sshd_config<\/code><\/pre>\n\n\n\n<p><em><strong>Note:<\/strong> In case <strong>nano <\/strong>isn&#8217;t installed on your VPS, you can readily install it by executing the command: &#8220;dnf install nano&#8221;.<\/em><\/p>\n\n\n\n<p>Locate the line that specifies the SSH port number: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#Port 22<\/code><\/pre>\n\n\n\n<p>Remove the &#8220;#&#8221; symbol at the beginning of the line to uncomment it, and change ssh port number to the new port that you have chosen:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Port 2233<\/code><\/pre>\n\n\n\n<p>Save and close the file by pressing Ctrl+X, then Y, then Enter.<\/p>\n\n\n\n<p><strong>Step 3: Modify the SELinux Policy<\/strong><\/p>\n\n\n\n<p>If SELinux Enforcing is enabled on your server, you will need to modify the SELinux policy to allow SSH to listen on the new port. To do this, run the following command:<\/p>\n\n\n\n<p>sudo semanage port -a -t ssh_port_t -p tcp 2233<\/p>\n\n\n\n<p>This command adds port 2233 to the list of ports allowed for SSH in the SELinux policy.<\/p>\n\n\n\n<p><em><strong>Note<\/strong>: In case <strong>semanage <\/strong>isn&#8217;t installed on your VPS, you can readily install it by executing the command: &#8220;dnf whatprovides \/usr\/sbin\/semanage&#8221;:<\/em><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"696\" height=\"229\" data-attachment-id=\"3178\" data-permalink=\"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-change-ssh-port-on-linux-or-unix\/attachment\/screenshot-2023-04-05-123841\/\" data-orig-file=\"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/Screenshot-2023-04-05-123841.png?fit=696%2C229&amp;ssl=1\" data-orig-size=\"696,229\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Screenshot-2023-04-05-123841\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/Screenshot-2023-04-05-123841.png?fit=696%2C229&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/Screenshot-2023-04-05-123841.png?resize=696%2C229&#038;ssl=1\" alt=\"Change SSH Port on Linux or Unix\" class=\"wp-image-3178\" srcset=\"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/Screenshot-2023-04-05-123841.png?w=696&amp;ssl=1 696w, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/Screenshot-2023-04-05-123841.png?resize=300%2C99&amp;ssl=1 300w\" sizes=\"auto, (max-width: 696px) 100vw, 696px\" \/><\/figure>\n<\/div>\n\n\n<pre class=\"wp-block-code\"><code>dnf install policycoreutils-python-utils-3.4-4.el9.noarch<\/code><\/pre>\n\n\n\n<p><strong>Step 4: Restart the SSH Service<\/strong><\/p>\n\n\n\n<p>After making the changes to the SSH configuration file and SELinux policy, you will need to restart the SSH service for the changes to take effect. To do this, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart sshd\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-header-gradient-color has-text-color\"><span class=\"ez-toc-section\" id=\"Change_SSH_port_Ubuntu_Debian_Centos\"><\/span>Change SSH port <a href=\"https:\/\/www.virtono.com\/community\/tutorial-how-to\/setup-linux-apache-mysql-phplamp-ubuntu-20-04\/\">Ubuntu<\/a>, Debian, Centos<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p><strong>Step 1<\/strong>: Once logged in, open the SSH configuration file using nano \/etc\/ssh\/sshd_config<\/p>\n\n\n\n<p><strong>Step 2<\/strong>: Find the line that starts with &#8220;Port&#8221; and contains the current SSH port number. It should look like this: &#8220;Port 22&#8221;.<\/p>\n\n\n\n<p><strong>Step 3<\/strong>: Change SSH port number to a new number that you want to use. For example, &#8220;Port 2233&#8221;.<\/p>\n\n\n\n<p><strong>Step 4<\/strong>: Save and close the file by pressing Ctrl+X, then Y, then Enter.<\/p>\n\n\n\n<p><strong>Step 5<\/strong>: Restart the SSH service using the following command: &#8220;sudo service sshd restart&#8221; for Ubuntu and Debian, or &#8220;sudo systemctl restart sshd&#8221; for Centos.<\/p>\n\n\n\n<p><em><strong>Note:<\/strong> Make sure that the new SSH port number is not being used by any other service on your server, and update your firewall rules accordingly to allow traffic on the new SSH port number.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading has-header-gradient-color has-text-color\"><span class=\"ez-toc-section\" id=\"Change_SSH_port_FreeBSDOpenBSDNetBSD_Unix\"><\/span>Change SSH port FreeBSD\/OpenBSD\/NetBSD Unix<span class=\"ez-toc-section-end\"><\/span><\/h3>\n\n\n\n<p>To change SSH port on FreeBSD, OpenBSD, or NetBSD Unix, follow these steps:<\/p>\n\n\n\n<p><strong>Step 1<\/strong>: Login to your server via SSH with the current SSH port number and your username and password.<\/p>\n\n\n\n<p><strong>Step 2<\/strong>: Once logged in, open the SSH configuration file using a text editor. For FreeBSD and NetBSD, the file is located at &#8220;\/etc\/ssh\/sshd_config&#8221;, and for OpenBSD, it is located at &#8220;\/etc\/ssh\/sshd_config.local&#8221;.<\/p>\n\n\n\n<p><strong>Step <\/strong>3: Find the line that starts with &#8220;Port&#8221; and contains the current SSH port number. It should look like this: &#8220;Port 22&#8221;.<\/p>\n\n\n\n<p><strong>Step <\/strong>4: Change the current SSH port number to a new number that you want to use. For example, &#8220;Port 2233&#8221;.<\/p>\n\n\n\n<p><strong>Step <\/strong>5: Save the changes to the SSH configuration file and close the text editor.<\/p>\n\n\n\n<p><strong>Step <\/strong>6: Restart the SSH service using the following command: &#8220;sudo \/etc\/rc.d\/sshd restart&#8221;.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By default, SSH listens on port 22, if you want to change SSH port to a non-standard port can help enhance server security by making it harder for attackers to find and exploit SSH vulnerabilities. In this article, we will walk through the process of changing the SSH port on<\/p>\n","protected":false},"author":8,"featured_media":3179,"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":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[3],"tags":[243,242,245,237,239,238,244,241,240],"class_list":["post-3176","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorial-how-to","tag-change-ssh-almalinux","tag-change-ssh-centos","tag-change-ssh-fedora","tag-change-ssh-freebsd","tag-change-ssh-netbsd","tag-change-ssh-openbsd","tag-change-ssh-rhel","tag-change-ssh-rocky","tag-change-ssh-unix"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-to-Change-SSH-Port-on-Linux-or-Unix.png?fit=600%2C340&ssl=1","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p7ISfL-Pe","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":3191,"url":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-install-postfix-on-linux\/","url_meta":{"origin":3176,"position":0},"title":"How to install Postfix on Linux","author":"George B.","date":"April 8, 2023","format":false,"excerpt":"Install Postfix on CentOS 7 To install Postfix on CentOS 7, follow these steps: Open a terminal or login to your server via SSH as a root user. Update your system packages by running the following command: yum update Install Postfix using the following command: yum install postfix Start the\u2026","rel":"","context":"In &quot;Tutorials&quot;","block_context":{"text":"Tutorials","link":"https:\/\/www.virtono.com\/community\/category\/tutorial-how-to\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-to-install-Postfix-on-Linux.png?fit=600%2C330&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-to-install-Postfix-on-Linux.png?fit=600%2C330&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-to-install-Postfix-on-Linux.png?fit=600%2C330&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":497,"url":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-change-the-ssh-port-for-your-linux-based-server\/","url_meta":{"origin":3176,"position":1},"title":"How to Change the SSH Port for Your Linux Based Server","author":"Daniel Draga","date":"August 20, 2016","format":false,"excerpt":"Logging in, you might have noticed this, sometimes: \u00a0 You will notice that whenever you leave ssh on the standard port, attempted logins fill up your authorization logs. Changing to a different port will make it less frequent.This is because the vast majority of people hunting for any open ssh\u2026","rel":"","context":"In &quot;Tutorials&quot;","block_context":{"text":"Tutorials","link":"https:\/\/www.virtono.com\/community\/category\/tutorial-how-to\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/08\/Change-SSH-port-with-WHM-min.jpg?fit=800%2C450&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/08\/Change-SSH-port-with-WHM-min.jpg?fit=800%2C450&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/08\/Change-SSH-port-with-WHM-min.jpg?fit=800%2C450&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/08\/Change-SSH-port-with-WHM-min.jpg?fit=800%2C450&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":1250,"url":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/restrict-executable-ssh-commands-with-authorized-keys\/","url_meta":{"origin":3176,"position":2},"title":"Restrict executable SSH commands with authorized keys","author":"Daniel Draga","date":"November 9, 2017","format":false,"excerpt":"The\u00a0OpenSSH\u00a0Secure Shell Server provides secure, encrypted remote access to Linux and Unix systems.\u00a0The server side is the file\u00a0authozired_keys\u00a0in\u00a0.ssh\u00a0a user's primary folder to configure a\u00a0public-key authentication\u00a0.\u00a0Normally, a user gets\u00a0full access\u00a0to the system where the authentication was set up.\u00a0However, in some cases, such as automated backup operations, it makes sense to restrict\u2026","rel":"","context":"In &quot;Tutorials&quot;","block_context":{"text":"Tutorials","link":"https:\/\/www.virtono.com\/community\/category\/tutorial-how-to\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2017\/11\/Putty2_1.png?fit=675%2C424&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2017\/11\/Putty2_1.png?fit=675%2C424&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2017\/11\/Putty2_1.png?fit=675%2C424&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":85,"url":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-install-cwp-on-vps\/","url_meta":{"origin":3176,"position":3},"title":"How to install CWP (CentOS Web Panel) on VPS","author":"Virtono","date":"July 18, 2016","format":false,"excerpt":"In order your make your website available to the public, you must have it on the web, now in order to have it on the web you need a web host. A web host or a web hosting company is a business that provides the tools, the technology, the services,\u2026","rel":"","context":"In &quot;Tutorials&quot;","block_context":{"text":"Tutorials","link":"https:\/\/www.virtono.com\/community\/category\/tutorial-how-to\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/07\/cwp.png?fit=980%2C547&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/07\/cwp.png?fit=980%2C547&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/07\/cwp.png?fit=980%2C547&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2016\/07\/cwp.png?fit=980%2C547&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":3264,"url":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/how-to-install-ansible-on-centos\/","url_meta":{"origin":3176,"position":4},"title":"How to install Ansible on CentOS","author":"George B.","date":"April 18, 2023","format":false,"excerpt":"In this article, we will discuss how to install Ansible on CentOS, one of the most popular Linux distributions used in server environments. Ansible is a powerful automation tool that can be used to manage configurations, deploy applications, and perform various administrative tasks on remote servers. Step 1: Update Your\u2026","rel":"","context":"In &quot;Tutorials&quot;","block_context":{"text":"Tutorials","link":"https:\/\/www.virtono.com\/community\/category\/tutorial-how-to\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-To-Install-Ansible-CentOS.png?fit=600%2C330&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-To-Install-Ansible-CentOS.png?fit=600%2C330&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2023\/04\/How-To-Install-Ansible-CentOS.png?fit=600%2C330&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":1149,"url":"https:\/\/www.virtono.com\/community\/tutorial-how-to\/ssh-login-under-debian-with-fail2ban\/","url_meta":{"origin":3176,"position":5},"title":"SSH Login under Debian with fail2ban","author":"Shreyash Sharma","date":"October 22, 2017","format":false,"excerpt":"The tool\u00a0fail2ban\u00a0,\u00a0written in Python,\u00a0aims to secure server services against DoS attacks.\u00a0It checks log files for predefined patterns and temporarily blocks the corresponding IP addresses if the failed access is repeated.\u00a0This article shows you how to back up a Debian-based server with fail2ban.\u00a0The deployed version of fail2ban is\u00a00.9.6-2\u00a0under\u00a0Debian 9.1\u00a0. Problem In\u2026","rel":"","context":"In &quot;Tutorials&quot;","block_context":{"text":"Tutorials","link":"https:\/\/www.virtono.com\/community\/category\/tutorial-how-to\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.virtono.com\/community\/wp-content\/uploads\/2017\/10\/fail2ban-logo2.png?fit=459%2C441&ssl=1&resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/posts\/3176","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/comments?post=3176"}],"version-history":[{"count":3,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/posts\/3176\/revisions"}],"predecessor-version":[{"id":3181,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/posts\/3176\/revisions\/3181"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/media\/3179"}],"wp:attachment":[{"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/media?parent=3176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/categories?post=3176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.virtono.com\/community\/wp-json\/wp\/v2\/tags?post=3176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}