{"id":184217,"date":"2025-08-21T21:29:35","date_gmt":"2025-08-21T21:29:35","guid":{"rendered":"https:\/\/linuxiac.com\/?p=184217"},"modified":"2025-08-21T21:31:38","modified_gmt":"2025-08-21T21:31:38","slug":"how-to-ssh-into-a-virtualbox-guest-vm","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/how-to-ssh-into-a-virtualbox-guest-vm\/","title":{"rendered":"How to SSH Into a VirtualBox Guest VM"},"content":{"rendered":"\n<p>VirtualBox is a widely used virtualization tool, often chosen to run Linux distributions for testing in an isolated environment or to set up a server for specific tasks.<\/p>\n\n\n\n<p>At some point, though, you may need to SSH into a VirtualBox guest VM and find that it doesn\u2019t work. Don\u2019t worry\u2014it\u2019s not a big deal. The whole thing comes down to how your VirtualBox&#8217;s network settings are configured. In this guide, I\u2019ll show you how to adjust them quickly so you can enable SSH access without trouble.<\/p>\n\n\n\n<p>I\u2019ll look at two simple approaches: one using bridged networking, and the other using the default NAT setup with port forwarding added on top. Which one you go with really depends on your preference, but either way, you\u2019ll end up with SSH access to your VM. So, let\u2019s jump in.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ensure SSH Is Running on the Guest VM<\/h2>\n\n\n\n<p>Sometimes when we\u2019re zeroed in on a specific problem, it\u2019s easy to overlook the simplest step\u2014like making sure the SSH server is actually running on your VirtualBox VM. Yes, I know, you\u2019re probably pretty confident it\u2019s already up, but it never hurts to double-check.<\/p>\n\n\n\n<p>The most distro-agnostic way to do that is with the command below. Just log into your VM and confirm that the output includes a line with &#8220;<em>\/usr\/sbin\/sshd<\/em>.&#8221;<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">pgrep -a sshd<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-01.jpg\"><img decoding=\"async\" width=\"964\" height=\"141\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-01.jpg\" alt=\"Ensure SSH is running on the VirtualBox guest VM.\" class=\"wp-image-184259\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-01.jpg 964w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-01-380x56.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-01-768x112.jpg 768w\" sizes=\"(max-width: 964px) 100vw, 964px\" \/><\/a><figcaption class=\"wp-element-caption\">Ensure SSH is running on the VirtualBox guest VM.<\/figcaption><\/figure>\n\n\n\n<p>If you see a result like the one above, great. That means SSH is up and running on your VirtualBox VM. Of course, you can also run <code>systemctl status ssh<\/code> or <code>systemctl status sshd<\/code>\u2014the exact service name depends on your distro\u2014to check the same thing.<\/p>\n\n\n\n<p>However, if the commands above don\u2019t show SSH running (return nothing), you\u2019ll need to install and start it first. Covering that setup is outside the scope of this guide, so check your distribution\u2019s documentation for detailed steps.<\/p>\n\n\n\n<p>By default, SSH listens on port 22, and <a href=\"https:\/\/linuxiac.com\/ssh-to-port-other-than-22\/\">unless you\u2019ve changed that setting<\/a>, it should still be using it. To make sure, you can run the following command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo netstat -tulnp | grep sshd<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-02.jpg\"><img decoding=\"async\" width=\"1019\" height=\"113\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-02.jpg\" alt=\"Check which port the SSH is listening to.\" class=\"wp-image-184271\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-02.jpg 1019w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-02-380x42.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-02-768x85.jpg 768w\" sizes=\"(max-width: 1019px) 100vw, 1019px\" \/><\/a><figcaption class=\"wp-element-caption\">Check which port the SSH is listening to.<\/figcaption><\/figure>\n\n\n\n<p>Now, with everything in place, it\u2019s time to move on to the main part of this guide.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SSH to VirtualBox VM: Bridged Adapter<\/h2>\n\n\n\n<p>Before we move into the specific changes, I want to talk a bit about the theory first\u2014just so it\u2019s clear what we\u2019re actually doing and, more importantly, why we\u2019re doing it.<\/p>\n\n\n\n<p>By default, VirtualBox sets up new virtual machines with NAT networking. In this mode, the VM sits behind a kind of internal router that VirtualBox creates. The guest can reach the outside world, but the outside\u2014including your host system\u2014cannot directly initiate connections back into the VM.<\/p>\n\n\n\n<p>That\u2019s why trying to SSH into the guest from the host (or another system) fails: the NAT engine doesn\u2019t automatically forward port 22 (or any port) from the host to the guest. To overcome this, <strong>you need to switch your VirtualBox guest VM over to bridged networking mode<\/strong>.<\/p>\n\n\n\n<p>When you do so, the VM no longer hides behind VirtualBox\u2019s NAT. Instead, it connects directly to the same physical or Wi-Fi network as the host, behaving like just another machine on that LAN.<\/p>\n\n\n\n<p>That means it gets its own IP address from the network\u2019s DHCP server (or one you assign manually), and at that point the host\u2014or any other machine on the network\u2014can connect to it over SSH just like they would with any other computer. So, let&#8217;s do it. It&#8217;s a simple task.<\/p>\n\n\n\n<p>Make sure the virtual machine is powered off first. Then, right-click the VM and choose \u201c<em>Settings<\/em>\u201d from the context menu. If you prefer, you can also select the VM and click the \u201c<em>Settings<\/em>\u201d button under the main menu.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-03.jpg\"><img decoding=\"async\" width=\"1024\" height=\"665\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-03-1024x665.jpg\" alt=\"Opening VirtualBox's VM settings\" class=\"wp-image-184301\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-03-1024x665.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-03-380x247.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-03-768x499.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-03.jpg 1364w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Opening VirtualBox&#8217;s VM settings<\/figcaption><\/figure>\n\n\n\n<p>Now, go to the main menu on the left and click &#8220;<em>Network<\/em>.&#8221; Choose the active default network adapter for your virtual machine (usually &#8220;<em>Adapter 1<\/em>&#8220;). Then, open the &#8220;<em>Attached to<\/em>&#8221; drop-down menu and change the setting from &#8220;<em>NAT<\/em>&#8221; to &#8220;<em>Bridged Adapter<\/em>.&#8221;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-04.jpg\"><img decoding=\"async\" width=\"1024\" height=\"669\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-04-1024x669.jpg\" alt=\"Switching a VirtualBox VM\u2019s network adapter over to bridged mode.\" class=\"wp-image-184313\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-04-1024x669.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-04-380x248.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-04-768x502.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-04.jpg 1096w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Switching a VirtualBox VM\u2019s network adapter over to bridged mode.<\/figcaption><\/figure>\n\n\n\n<p>Finally, click the \u201c<em>OK<\/em>\u201d button in the bottom-right corner to save your changes.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-05.jpg\"><img decoding=\"async\" width=\"362\" height=\"162\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-05.jpg\" alt=\"Apply settings.\" class=\"wp-image-184322\"\/><\/a><figcaption class=\"wp-element-caption\">Apply settings.<\/figcaption><\/figure>\n\n\n\n<p>Start the virtual machine. To connect, you\u2019ll need its IP address. The easiest way to find that is by logging in locally and running the command below.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ip a<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-06.jpg\"><img decoding=\"async\" width=\"1024\" height=\"381\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-06-1024x381.jpg\" alt=\"Finding the IP address of the virtual machine.\" class=\"wp-image-184334\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-06-1024x381.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-06-380x141.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-06-768x285.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-06.jpg 1044w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Finding the IP address of the virtual machine.<\/figcaption><\/figure>\n\n\n\n<p>You\u2019re good to go\u2014open a terminal on any host in your local network and run the standard SSH command to reach your VirtualBox Linux VM.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ssh &lt;user&gt;@&lt;host-lan-ip&gt;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"976\" height=\"466\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-07.jpg\" alt=\"Successfully connected to the VirtualBox Linux VM over SSH.\" class=\"wp-image-184346\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-07.jpg 976w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-07-380x181.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-07-768x367.jpg 768w\" sizes=\"(max-width: 976px) 100vw, 976px\" \/><figcaption class=\"wp-element-caption\">Successfully connected to the VirtualBox Linux VM over SSH.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">SSH to VirtualBox VM: NAT with Port Forwarding<\/h2>\n\n\n\n<p>Now let\u2019s check out another option for connecting to a VirtualBox Linux VM over SSH\u2014this time using the default NAT network mode with port forwarding enabled. What am I talking about?<\/p>\n\n\n\n<p>VirtualBox lets you forward a port on the host machine to a port inside the guest VM. For SSH, the common setup is to forward the host port 2222 (or another unused port) to the guest port 22. With that rule in place, any connection made to port 2222 on the host is automatically passed through VirtualBox\u2019s NAT engine and delivered to the guest VM\u2019s SSH service. Here&#8217;s how to do it.<\/p>\n\n\n\n<p>Open the virtual machine settings as described in the previous section. On the left-hand panel, click &#8220;<em>Network<\/em>&#8221; and make sure you\u2019re looking at the active network adapter your virtual machine is using (the &#8220;<em>Enable Network Adapter<\/em>&#8221; box should be checked). In the &#8220;<em>Attached to<\/em>&#8221; drop-down list, select &#8220;<em>NAT<\/em>.&#8221; Now for the fun part\u2014click the &#8220;<em>Port Forwarding<\/em>&#8221; button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-08.jpg\"><img decoding=\"async\" width=\"1024\" height=\"602\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-08-1024x602.jpg\" alt=\"Setting a VirtualBox VM\u2019s network adapter for NAT + port forwarding.\" class=\"wp-image-184358\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-08-1024x602.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-08-380x223.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-08-768x452.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-08.jpg 1240w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Setting a VirtualBox VM\u2019s network adapter for NAT + port forwarding.<\/figcaption><\/figure>\n\n\n\n<p>A new window will pop up where you can set up your port forwarding rules. Here\u2019s what each option means:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Name:<\/strong> This is just a label. You can type in any name you like. The most straightforward choice is, of course, just \u201c<em>SSH<\/em>.\u201d<\/li>\n\n\n\n<li><strong>Protocol:<\/strong> Leave this set to the default, &#8220;<em>TCP<\/em>.&#8221;<\/li>\n\n\n\n<li><strong>Host IP:<\/strong> Use 0.0.0.0. This means \u201clisten on all network interfaces of the host.\u201d In other words, connections to the host from anywhere (loopback, LAN, or even WAN if exposed) will be accepted.<\/li>\n\n\n\n<li><strong>Host Port:<\/strong> This is the port on the host machine that will be opened. If you connect to the host at port 2222, the traffic will be forwarded into the VM.<\/li>\n\n\n\n<li><strong>Guest IP:<\/strong> This is the internal NAT-assigned IP address of the guest VM. Enter the IP address of your virtual machine, just like we found in the previous section.<\/li>\n\n\n\n<li><strong>Guest Port:<\/strong> This is the port on which the SSH server listens inside the VM. By default, that\u2019s 22.<\/li>\n<\/ul>\n\n\n\n<p>When you are ready, confirm with the &#8220;<em>OK<\/em>&#8221; button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-09.jpg\"><img decoding=\"async\" width=\"1024\" height=\"524\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-09-1024x524.jpg\" alt=\"Setting a port forwarding rule for a Linux guest VM.\" class=\"wp-image-184379\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-09-1024x524.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-09-380x194.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-09-768x393.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-09.jpg 1038w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Setting a port forwarding rule for a Linux guest VM.<\/figcaption><\/figure>\n\n\n\n<p>Finally, don&#8217;t forget again to click the \u201c<em>OK<\/em>\u201d button in the bottom-right corner to save all changes made so far.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-05.jpg\"><img decoding=\"async\" width=\"362\" height=\"162\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-05.jpg\" alt=\"Apply settings.\" class=\"wp-image-184322\"\/><\/a><\/figure>\n\n\n\n<p>Start the virtual machine. From any other computer on your local network\u2014or even from the VirtualBox host itself\u2014run the command below. Notice that this time we\u2019re adding the <code>-p<\/code> option, which tells SSH to connect through port 2222 on the host. That\u2019s the port we set up earlier when configuring port forwarding.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">ssh -p 2222 &lt;user&gt;@&lt;host-lan-ip&gt;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-10.jpg\"><img decoding=\"async\" width=\"996\" height=\"451\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-10.jpg\" alt=\"\" class=\"wp-image-184400\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-10.jpg 996w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-10-380x172.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2025\/08\/virtualbox-ssh-10-768x348.jpg 768w\" sizes=\"(max-width: 996px) 100vw, 996px\" \/><\/a><\/figure>\n\n\n\n<p>And just like that, we\u2019ve successfully SSHed into our VirtualBox Linux guest. If you\u2019ve got more than one Linux VM and want to do the same with them, just set up another port forwarding rule using a different free port\u2014say 2223. Then, when you connect, make sure to use that port number with the <code>-p<\/code> option in your SSH command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>As you can see, getting SSH access to your VirtualBox guest isn\u2019t complicated once you understand how the networking works. Whether you go with bridged networking for a more direct connection or stick with NAT and add port forwarding, both methods get the job done. The choice mostly comes down to how you prefer to manage your VMs\u2019 connectivity.<\/p>\n\n\n\n<p>Thank you for your time! I hope you find this guide helpful. As always, any feedback is much appreciated.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Want to SSH into a VirtualBox Linux guest OS? Here\u2019s how to set it up using bridged networking or NAT with port forwarding.<\/p>\n","protected":false},"author":10,"featured_media":184220,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,4417],"tags":[3694,64,4075],"class_list":["post-184217","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tips","category-linux-knowledge","tag-networking","tag-ssh","tag-virtualbox"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/184217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/comments?post=184217"}],"version-history":[{"count":3,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/184217\/revisions"}],"predecessor-version":[{"id":184412,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/184217\/revisions\/184412"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/184220"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=184217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=184217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=184217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}