{"id":15004,"date":"2024-10-11T12:44:40","date_gmt":"2024-10-11T12:44:40","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=15004"},"modified":"2024-10-14T07:22:52","modified_gmt":"2024-10-14T07:22:52","password":"","slug":"how-to-prevent-frequent-ssh-and-scp-disconnect","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/","title":{"rendered":"How to prevent frequent SSH and SCP disconnect"},"content":{"rendered":"\n<p>There are several potential reasons for these disconnects, including idle timeouts, network instability, or server settings. This guide will cover some common solutions to prevent frequent SSH and SCP disconnects.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Adjust Client-Side Keep-Alive Settings<\/h2>\n\n\n\n<p>On the client side (like your laptop), you can configure your SSH client to send periodic keepalive packets to prevent disconnections.<\/p>\n\n\n\n<p><strong>Step 1: Modify the Client-Side SSH Configuration<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Using a text editor like vim or nano, edit your local SSH configuration file (<code>ssh_config<\/code>). <\/li>\n\n\n\n<li>This file is typically located in your home directory. If the file doesn&#8217;t exist, you can create it.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>vi  ~\/.ssh\/config<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"850\" height=\"175\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png\" alt=\"\" class=\"wp-image-15014\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png 850w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277-300x62.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277-768x158.png 768w\" sizes=\"auto, (max-width: 850px) 100vw, 850px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following lines to the file. You may adjust the values 60 and 3 as you desire.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>Host *\n  ServerAliveInterval 60\n  ServerAliveCountMax 3<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"229\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-1024x229.png\" alt=\"\" class=\"wp-image-15009\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-1024x229.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-300x67.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-768x171.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274.png 1080w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the above\n<ul class=\"wp-block-list\">\n<li><strong>ServerAliveInterval<\/strong>: Sends a keepalive packet every 60 seconds.<\/li>\n\n\n\n<li><strong>ServerAliveCountMax<\/strong>: Limits the number of keepalive messages sent without receiving a response from the server. After 3 attempts, the connection will be closed.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 2:  Save the file<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Once the configuration is updated, save and close the file.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">2. Adjust Server-Side Timeout Settings<\/h2>\n\n\n\n<p>Another way could be to adjust the server-side settings. Consider this, only if the client side settings above do not work. <\/p>\n\n\n\n<p>On the On the server, SSH connections can be configured to stay alive even during periods of inactivity. You<\/p>\n\n\n\n<p><strong>Step 1: Modify the Client-Side SSH Configuration<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Using a text editor like vim or nano, edit your local SSH configuration file (<code>ssh_config<\/code>). <\/li>\n\n\n\n<li>This file is typically located in your home directory. If the file doesn&#8217;t exist, you can create it.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo vi \/etc\/ssh\/sshd_config<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"850\" height=\"175\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png\" alt=\"\" class=\"wp-image-15014\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png 850w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277-300x62.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277-768x158.png 768w\" sizes=\"auto, (max-width: 850px) 100vw, 850px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Look for these options or add them if they don&#8217;t exist:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>ClientAliveInterval 60\n\nClientAliveCountMax 3<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"229\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-1024x229.png\" alt=\"\" class=\"wp-image-15009\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-1024x229.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-300x67.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274-768x171.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-274.png 1080w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the above\n<ul class=\"wp-block-list\">\n<li><strong>ClientAliveInterval<\/strong>: This sets the number of seconds that the server will wait before sending a null packet to the client to keep the connection alive. Setting this to 60 seconds will send a keepalive packet every minute.<\/li>\n\n\n\n<li><strong>ClientAliveCountMax<\/strong>: The maximum number of client keepalive messages the server sends without receiving any response before disconnecting the client. Setting this to 3 means that if the server doesn&#8217;t receive any response after 3 minutes, it will disconnect.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p><strong>Step 2:  Save the file and Restart SSH Service<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Once the configuration is updated, save and close the file.<\/li>\n\n\n\n<li>Also restart SSH service using the command below<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl restart sshd<\/strong><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. Increase the SCP Timeout Limit<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This is implemented in the scp command.<\/li>\n\n\n\n<li>If SCP connections are timing out frequently, especially during long file transfers, you can adjust the timeout limit by adding the <code>-o<\/code> flag to your SCP command.<\/li>\n\n\n\n<li>This command below forces the client to send keepalive messages every 60 seconds, preventing the SCP connection from timing out.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -o ServerAliveInterval=60 source_file user@remote_host:\/path\/to\/destination<\/strong><\/code><\/pre>\n\n\n\n<p>If you use a custom port, then you will have the command syntax below<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -P <em>port<\/em> -o ServerAliveInterval=60 source_file user@remote_host:\/path\/to\/destination<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"213\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-279-1024x213.png\" alt=\"\" class=\"wp-image-15026\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-279-1024x213.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-279-300x62.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-279-768x159.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-279.png 1180w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>There are several potential reasons for these disconnects, including idle timeouts, network instability, or server settings. This guide will cover some common solutions to prevent frequent SSH and SCP disconnects. 1. Adjust Client-Side Keep-Alive Settings On the client side (like your laptop), you can configure your SSH client to send periodic keepalive packets to prevent [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-15004","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-07","word_count":467,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to prevent frequent SSH and SCP disconnect -<\/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:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to prevent frequent SSH and SCP disconnect -\" \/>\n<meta property=\"og:description\" content=\"There are several potential reasons for these disconnects, including idle timeouts, network instability, or server settings. This guide will cover some common solutions to prevent frequent SSH and SCP disconnects. 1. Adjust Client-Side Keep-Alive Settings On the client side (like your laptop), you can configure your SSH client to send periodic keepalive packets to prevent [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-14T07:22:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/\",\"name\":\"How to prevent frequent SSH and SCP disconnect -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-277.png\",\"datePublished\":\"2024-10-11T12:44:40+00:00\",\"dateModified\":\"2024-10-14T07:22:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-277.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-277.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-prevent-frequent-ssh-and-scp-disconnect\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to prevent frequent SSH and SCP disconnect\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to prevent frequent SSH and SCP disconnect -","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:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/","og_locale":"en_US","og_type":"article","og_title":"How to prevent frequent SSH and SCP disconnect -","og_description":"There are several potential reasons for these disconnects, including idle timeouts, network instability, or server settings. This guide will cover some common solutions to prevent frequent SSH and SCP disconnects. 1. Adjust Client-Side Keep-Alive Settings On the client side (like your laptop), you can configure your SSH client to send periodic keepalive packets to prevent [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/","article_modified_time":"2024-10-14T07:22:52+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/","name":"How to prevent frequent SSH and SCP disconnect -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png","datePublished":"2024-10-11T12:44:40+00:00","dateModified":"2024-10-14T07:22:52+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-277.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-prevent-frequent-ssh-and-scp-disconnect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to prevent frequent SSH and SCP disconnect"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15004","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=15004"}],"version-history":[{"count":10,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15004\/revisions"}],"predecessor-version":[{"id":15027,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15004\/revisions\/15027"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=15004"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=15004"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=15004"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}