{"id":1387,"date":"2022-07-23T12:09:54","date_gmt":"2023-02-12T18:47:26","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/uncategorized\/using-telnet-commands-in-linux-unix\/"},"modified":"2024-03-07T14:19:45","modified_gmt":"2024-03-07T14:19:45","slug":"using-telnet-commands-in-linux-unix","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/","title":{"rendered":"Using Telnet Commands in Linux\/Unix"},"content":{"rendered":"<h2>What does Telnet refer to?<\/h2>\n<p>Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting to servers and network devices via port 23. Now, let&#8217;s examine the application of Telnet commands.<\/p>\n<h2>This statement acts as a warning or clarification.<\/h2>\n<ol>Do not use Telnet as it is not a secure protocol and is highly discouraged. This is due to the absence of encryption in the transmitted data, making it vulnerable to interception by hackers. Instead, it is recommended to use SSH, which provides encryption and enhanced security.<\/ol>\n<p>Let&#8217;s explore the process of installing and utilizing the telnet protocol.<\/p>\n<h2>Setting up Telnet<\/h2>\n<p>In this section, we will guide you on how to install telnet in systems that utilize RPM and DEB.<\/p>\n<h3>How to install Telnet on CentOS 7 \/ RHEL 7<\/h3>\n<p>To initiate the installation procedure on the server, execute the command.<\/p>\n<pre class=\"post-pre\"><code># yum install telnet telnet-server -y\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/10-0.png\" alt=\"Install Telnet Telnet Server\" \/><\/div>\n<pre class=\"post-pre\"><code> \r\n# systemctl start telnet.socket\r\n# systemctl enable telnet.socket\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/12-0.png\" alt=\"Start And Enable Telnet\" \/><\/div>\n<pre class=\"post-pre\"><code># firewall-cmd --permanent --add-port=23\/tcp\r\n<\/code><\/pre>\n<p>In the end, you should refresh the firewall so that the rule becomes active.<\/p>\n<pre class=\"post-pre\"><code># firewall-cmd --reload\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/16-0.png\" alt=\"Allow Port 23 Over Firewall\" \/><\/div>\n<pre class=\"post-pre\"><code># systemctl status telnet.socket\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/18-0.png\" alt=\"Check Status Of Telnet In CentOS 7\" \/><\/div>\n<h3>Making a login account<\/h3>\n<p>In this instance, we will generate a login user for accessing through the telnet protocol.<\/p>\n<pre class=\"post-pre\"><code># adduser telnetuser\r\n<\/code><\/pre>\n<p>Generate a password for the user.<\/p>\n<pre class=\"post-pre\"><code># passwd telnetuser\r\n<\/code><\/pre>\n<p>Please provide the password and confirm it. To log in to a server using the telnet command, use the syntax provided below.<\/p>\n<pre class=\"post-pre\"><code>$ telnet server-IP address\r\n<\/code><\/pre>\n<p>One possible paraphrase for &#8220;For example&#8221; is:<\/p>\n<p>&#8220;An instance of this is&#8230;&#8221;<\/p>\n<pre class=\"post-pre\"><code>$ telnet 38.76.11.19\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/28-2.png\" alt=\"Logging In To Centos Via Telnet In Putty\" \/><\/div>\n<h3>How to install Telnet on <a href=\"https:\/\/releases.ubuntu.com\/18.04\/\">Ubuntu 18.04<\/a>?<\/h3>\n<p>Executing the command in Ubuntu 18.04 will install the telnet protocol.<\/p>\n<pre class=\"post-pre\"><code>$ sudo apt install telnetd -y\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/32-0.png\" alt=\"Install Telnet On Ubuntu\" \/><\/div>\n<pre class=\"post-pre\"><code>$ systemctl status inetd\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/34-0.png\" alt=\"Systemctl Status Inetd\" \/><\/div>\n<pre class=\"post-pre\"><code>$ ufw allow 23\/tcp\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/36-0.png\" alt=\"Allow Port 23 Over Ufw Firewall\" \/><\/div>\n<pre class=\"post-pre\"><code>$ ufw reload\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/38-0.png\" alt=\"Reload ufw Firewall\" \/><\/div>\n<h2>Using the telnet protocol for verifying the availability of ports.<\/h2>\n<p>Using Telnet, you can verify the openness of a particular port on a server by employing the provided syntax.<\/p>\n<pre class=\"post-pre\"><code>$ telnet server-IP port\r\n<\/code><\/pre>\n<p>To illustrate, run a command to verify the status of port 22 on a server.<\/p>\n<pre class=\"post-pre\"><code>$ telnet 38.76.11.19  22\r\n<\/code><\/pre>\n<div><img decoding=\"async\" class=\"post-images\" title=\"\" src=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/44-0.png\" alt=\"Telnet To Test Open Ports\" \/><\/div>\n<h2>Please provide the content you would like me to paraphrase.<\/h2>\n<p>This tutorial serves as an educational manual explaining how to utilize the telnet protocol. We strongly advise against the utilization of telnet because of the significant security vulnerabilities it presents due to the absence of encryption. When accessing remote systems, SSH is the recommended protocol as it ensures data encryption and protects against potential hacking threats.<\/p>\n<p>&nbsp;<\/p>\n<p>more tutorials<\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/common-errors-that-occur-when-using-nginx-for-connections\/\" target=\"_blank\" rel=\"noopener\">Common errors that occur when using Nginx for connections.<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/permissions-in-postgresql\/\" target=\"_blank\" rel=\"noopener\">permissions in PostgreSQL<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\" target=\"_blank\" rel=\"noopener\">Installation of Arch Linux<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/how-to-integrate-playwright-for-react-application-component-testing\/\" target=\"_blank\" rel=\"noopener\">React Application Component Testing Integrate with Playwright<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What does Telnet refer to? Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting to servers and network devices via port 23. Now, let&#8217;s examine the application of Telnet commands. This statement acts as a warning or clarification. Do not use Telnet as [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-1387","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using Telnet Commands in Linux\/Unix - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting\" \/>\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.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Telnet Commands in Linux\/Unix\" \/>\n<meta property=\"og:description\" content=\"Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-12T18:47:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-07T14:19:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/10-0.png\" \/>\n<meta name=\"author\" content=\"Emily Johnson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Emily Johnson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\"},\"author\":{\"name\":\"Emily Johnson\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3b041b19cffc258705478ecfab895378\"},\"headline\":\"Using Telnet Commands in Linux\/Unix\",\"datePublished\":\"2023-02-12T18:47:26+00:00\",\"dateModified\":\"2024-03-07T14:19:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\"},\"wordCount\":406,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\",\"name\":\"Using Telnet Commands in Linux\/Unix - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2023-02-12T18:47:26+00:00\",\"dateModified\":\"2024-03-07T14:19:45+00:00\",\"description\":\"Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Telnet Commands in Linux\/Unix\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3b041b19cffc258705478ecfab895378\",\"name\":\"Emily Johnson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a5cb4e73d02ab1d79f2dfe919389ff7c1de072baa97686392031c03d858cc358?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a5cb4e73d02ab1d79f2dfe919389ff7c1de072baa97686392031c03d858cc358?s=96&d=mm&r=g\",\"caption\":\"Emily Johnson\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/emilyjohnson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Using Telnet Commands in Linux\/Unix - Blog - Silicon Cloud","description":"Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting","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.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/","og_locale":"en_US","og_type":"article","og_title":"Using Telnet Commands in Linux\/Unix","og_description":"Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting","og_url":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2023-02-12T18:47:26+00:00","article_modified_time":"2024-03-07T14:19:45+00:00","og_image":[{"url":"https:\/\/cdn.silicloud.com\/blog-img\/blog\/img\/655dd6b2cdcf9b6757a01f6a\/10-0.png"}],"author":"Emily Johnson","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Emily Johnson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/"},"author":{"name":"Emily Johnson","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3b041b19cffc258705478ecfab895378"},"headline":"Using Telnet Commands in Linux\/Unix","datePublished":"2023-02-12T18:47:26+00:00","dateModified":"2024-03-07T14:19:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/"},"wordCount":406,"commentCount":0,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/","url":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/","name":"Using Telnet Commands in Linux\/Unix - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2023-02-12T18:47:26+00:00","dateModified":"2024-03-07T14:19:45+00:00","description":"Telnet is a dated network protocol employed for establishing connections with remote systems on a TCP\/IP network. It operates by connecting","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/using-telnet-commands-in-linux-unix\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using Telnet Commands in Linux\/Unix"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/3b041b19cffc258705478ecfab895378","name":"Emily Johnson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a5cb4e73d02ab1d79f2dfe919389ff7c1de072baa97686392031c03d858cc358?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a5cb4e73d02ab1d79f2dfe919389ff7c1de072baa97686392031c03d858cc358?s=96&d=mm&r=g","caption":"Emily Johnson"},"url":"https:\/\/www.silicloud.com\/blog\/author\/emilyjohnson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1387","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=1387"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1387\/revisions"}],"predecessor-version":[{"id":1775,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/1387\/revisions\/1775"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=1387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=1387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=1387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}