{"id":2428,"date":"2025-02-18T14:56:51","date_gmt":"2025-02-18T14:56:51","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=2428"},"modified":"2025-03-26T04:49:46","modified_gmt":"2025-03-26T04:49:46","slug":"check-port-open-or-not-in-linux","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html","title":{"rendered":"How to Check Whether Port is Open or Not in Linux?"},"content":{"rendered":"\n<p>In Linux, ports play a crucial role in network communication. Every service on a Linux system listens on a specific port, allowing other devices or applications to connect. However, you may need to check whether a particular port is open or closed.<\/p>\n\n\n\n<p>This is essential for troubleshooting network issues, ensuring proper firewall configurations, and securing your system from unauthorised access.<\/p>\n\n\n\n<p>In this guide, we will explore different methods to check whether a port is open in Linux. These methods include using built-in Linux utilities like <strong>netstat<\/strong>, <strong>ss<\/strong>, <strong>nc<\/strong>, <strong>telnet<\/strong>, and <strong>nmap<\/strong>. Each method serves different purposes, and you can choose the one that best fits your requirements.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/429\/install-rpm-files-on-linux.html\"><strong>How to Install RPM files on Different Linux Distributions?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Methods to Check Open Ports in Linux<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Using netstat Command<\/strong><\/h3>\n\n\n\n<p><strong>netstat<\/strong> is a powerful networking tool that provides information about network connections, routing tables, and port usage.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>netstat -tulnp | grep :PORT_NUMBER<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to check if port 80 is open:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>netstat -tulnp | grep :80<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<p><strong>-t<\/strong> -> Show TCP ports<\/p>\n\n\n\n<p><strong>-u<\/strong> -> Show UDP ports<\/p>\n\n\n\n<p><strong>-l<\/strong> -> Show listening ports<\/p>\n\n\n\n<p><strong>-n<\/strong> -> Show numerical addresses instead of resolving names<\/p>\n\n\n\n<p><strong>-p<\/strong> -> Show the process using the port<\/p>\n\n\n\n<p><strong>*Note:<\/strong> If netstat is not available, install it using the following:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt install net-tools \u00a0 # For Debian-based systems<\/strong><br><strong>sudo yum install net-tools \u00a0 # For RHEL-based systems<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/428\/create-zip-file-in-linux.html\"><strong>Create Zip File With Command in Linux With Examples<\/strong><\/a><\/p><hr>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Using ss Command<\/strong><\/h3>\n\n\n\n<p><strong>ss <\/strong>Command is a faster and more efficient alternative to netstat. Below is the command to check the port in Linux.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ss -tuln | grep :PORT_NUMBER<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to check if port 22 is open:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>ss -tuln | grep :22<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<p><strong>-t<\/strong> -> Show TCP ports<\/p>\n\n\n\n<p><strong>-u<\/strong> -> Show UDP ports<\/p>\n\n\n\n<p><strong>-l<\/strong> -> Show listening ports<\/p>\n\n\n\n<p><strong>-n<\/strong> -> Show numerical addresses<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/427\/echo-command-in-linux.html\"><strong>A Guide to Echo Command in Linux With Examples<\/strong><\/a><\/p><hr>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Using nc (netcat) Command<\/strong><\/h3>\n\n\n\n<p><strong>nc (netcat)<\/strong> is a versatile networking utility that can check whether a port is open by attempting a connection.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>nc -zv HOSTNAME PORT_NUMBER<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to check if port 433 is open on yourwebsite.com:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\">nc -zv yourwebsite.com 443<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<p><strong>-z <\/strong>-> Scan mode (don\u2019t send data, just check connection)<\/p>\n\n\n\n<p><strong>-v<\/strong> -> Verbose mode (shows detailed output)<\/p>\n\n\n\n<p><strong>Expected Output:<\/strong><\/p>\n\n\n\n<p>If the port is open, you will get this message: Connection succeeded!<\/p>\n\n\n\n<p>If the port is closed, you will get this message: Connection refused<\/p>\n\n\n\n<p><strong>*Note:<\/strong> Install <strong>netcat<\/strong> if not available:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt install netcat \u00a0 # Debian-based<\/strong><br><strong>sudo yum install nc \u00a0 \u00a0 \u00a0 # RHEL-based<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/425\/remove-directory-in-linux.html\"><strong>How To Remove Directory in Linux With Command?<\/strong><\/a><\/p><hr>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Using telnet Command<\/strong><\/h3>\n\n\n\n<p>The telnet command can also check if a port is open by attempting a connection.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>telnet HOSTNAME PORT_NUMBER<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>telnet example.com 25<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Output:<\/strong><\/p>\n\n\n\n<p>You will see a \u201csuccessful connection\u201d message if the port is open.<\/p>\n\n\n\n<p>If the port is closed, you will see \u201cConnection refused.\u201d<\/p>\n\n\n\n<p><strong>*Note:<\/strong> If telnet is not installed, install it using:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt install telnet \u00a0 # Debian-based<\/strong><br><strong>sudo yum install telnet \u00a0 # RHEL-based<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/426\/telnet-command-in-windows.html\"><strong>What is Telnet Command in Windows &amp; How to Use it?<\/strong><\/a><\/p><hr>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Using nmap Command<\/strong><\/h3>\n\n\n\n<p><strong>nmap<\/strong> is a powerful network scanning tool that can check for open ports.<\/p>\n\n\n\n<p><strong>Command:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>nmap -p PORT_NUMBER HOSTNAME<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>If you want to check if port 3306 is open on yourwebsite.com:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>nmap -p 3306 example.com<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Explanation:<\/strong><\/p>\n\n\n\n<p><strong>-p<\/strong> -> Specifies the port number to scan<\/p>\n\n\n\n<p><strong>*Note:<\/strong> Install nmap if not available:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>sudo apt install nmap \u00a0 # Debian-based<\/strong><br><strong>sudo yum install nmap \u00a0 # RHEL-based<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Checking whether a port is open in Linux is crucial for troubleshooting and maintaining network security. Multiple ways exist, including netstat, ss, nc, telnet, and nmap. These commands provide useful information about open ports, listening services, and network connectivity.<\/p>\n\n\n\n<p>If a port unexpectedly closes, you may need to check firewall rules (iptables or firewalld), ensure the corresponding service runs, or verify network configurations. Regular monitoring of open ports helps prevent unauthorized access and enhances the security of your Linux system.<\/p>\n\n\n\n<p>Using these simple commands, you can efficiently diagnose port-related issues and keep your network running smoothly.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/417\/how-to-change-server-time-in-linux.html\"><strong>How to Change Server Time in Linux?<\/strong><\/a><\/p><hr>\n\n\n    <div class=\"blg-advrt-main blg-prm-bx\">\n        <div class=\"row\" style=\"display: flex; justify-content: space-evenly; align-items: center;\">\n            <div class=\"col-md-5\">\n                <div class=\"blg-advrt-first blg-advrt-right\">\n                    <img decoding=\"async\" src=\"https:\/\/www.hostitsmart.com\/assets\/images\/blog\/Frequent-Server-Downtime.png\" alt=\"Frequent-Server-Downtime\" \/>\n                <\/div>\n            <\/div>\n            <div class=\"col-md-7\">\n                <div class=\"blg-advrt-first blg-advrt-left\">\n                    <div class=\"blg_advrt_cnt\">\n                        Haunted by an Unreliable Linux VPS?                    <\/div>\n                    <p>\n                        Get a power-packed VPS server for your Business!                    <\/p>\n                    <div class=\"blg-advrt-first-btn affl-blg-btn\">\n                        <a href=\"https:\/\/www.hostitsmart.com\/servers\/linux-vps-hosting\">\n                            Get Linux VPS                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    ","protected":false},"excerpt":{"rendered":"<p>In Linux, ports play a crucial role in network communication. Every service on a Linux system listens on a specific port, allowing other devices or applications to connect. However, you may need to check whether a particular port is open or closed. This is essential for troubleshooting network issues, ensuring proper firewall configurations, and securing [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[49],"tags":[],"class_list":["post-2428","post","type-post","status-publish","format-standard","hentry","category-vps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Check Whether Port is Open or Not in Linux?<\/title>\n<meta name=\"description\" content=\"Learn how to check if a port is open in Linux using simple commands like netstat, ss, nc, telnet, and nmap. Troubleshoot network issues &amp; secure it easily!\" \/>\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.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check Whether Port is Open or Not in Linux?\" \/>\n<meta property=\"og:description\" content=\"Learn how to check if a port is open in Linux using simple commands like netstat, ss, nc, telnet, and nmap. Troubleshoot network issues &amp; secure it easily!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-18T14:56:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-26T04:49:46+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html\",\"name\":\"How to Check Whether Port is Open or Not in Linux?\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-02-18T14:56:51+00:00\",\"dateModified\":\"2025-03-26T04:49:46+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn how to check if a port is open in Linux using simple commands like netstat, ss, nc, telnet, and nmap. Troubleshoot network issues & secure it easily!\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check Whether Port is Open or Not in Linux?","description":"Learn how to check if a port is open in Linux using simple commands like netstat, ss, nc, telnet, and nmap. Troubleshoot network issues & secure it easily!","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.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html","og_locale":"en_US","og_type":"article","og_title":"How to Check Whether Port is Open or Not in Linux?","og_description":"Learn how to check if a port is open in Linux using simple commands like netstat, ss, nc, telnet, and nmap. Troubleshoot network issues & secure it easily!","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-02-18T14:56:51+00:00","article_modified_time":"2025-03-26T04:49:46+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html","name":"How to Check Whether Port is Open or Not in Linux?","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-02-18T14:56:51+00:00","dateModified":"2025-03-26T04:49:46+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn how to check if a port is open in Linux using simple commands like netstat, ss, nc, telnet, and nmap. Troubleshoot network issues & secure it easily!","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/431\/check-port-open-or-not-in-linux.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2428","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2428"}],"version-history":[{"count":2,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2428\/revisions"}],"predecessor-version":[{"id":2640,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/2428\/revisions\/2640"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2428"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2428"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2428"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}