{"id":15240,"date":"2026-03-10T12:24:33","date_gmt":"2026-03-10T12:24:33","guid":{"rendered":"https:\/\/www.bodhost.com\/kb\/?p=15240"},"modified":"2026-03-13T08:32:19","modified_gmt":"2026-03-13T08:32:19","slug":"how-to-check-open-ports-in-linux","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/","title":{"rendered":"How to Check Open Ports in Linux with netstat, nmap, lsof"},"content":{"rendered":"<p>Open ports show which services are accepting connections on your Linux host. Checking them helps validate firewall rules, troubleshoot connectivity, and harden exposed services. Below are three reliable ways to inspect ports using netstat, nmap, and lsof.<\/p>\n<p>Note: On newer distributions, netstat is provided by net-tools. If unavailable, consider ss as a modern alternative.<\/p>\n<h3><strong>Understanding Linux Port Types<\/strong><\/h3>\n<p>Before checking open ports, it helps to know how Linux organizes port numbers. Ports are divided into three basic ranges.<\/p>\n<h4><strong>Linux System Ports<\/strong><\/h4>\n<p>System ports range from <strong><span style=\"text-decoration: underline;\">0 to 1023<\/span><\/strong>. These are reserved for well\u2011known services like SSH (22), HTTP (80), and HTTPS (443). Only privileged users or system-level processes can use these ports.<\/p>\n<h4><strong>Linux User Ports<\/strong><\/h4>\n<p>User ports range from <span style=\"text-decoration: underline;\"><strong>1024 to 49151<\/strong><\/span>. Regular applications and services commonly use these ports. Web servers, databases, and custom scripts often operate here.<\/p>\n<h4><strong>Linux Private Ports<\/strong><\/h4>\n<p>Private ports range from <span style=\"text-decoration: underline;\"><strong>49152 to 65535<\/strong><\/span>. These are mostly used for temporary connections, random port assignments, and local client communication.<\/p>\n<h3><strong>How to List Open Ports in Linux (Command\u2011Line Tools)<\/strong><\/h3>\n<p>Below are three reliable approaches: netstat for quick, local inspection; nmap for scanning like an external client; lsof for mapping ports to processes.<\/p>\n<h4><strong>Using netstat to Check Open Ports<\/strong><\/h4>\n<p>Retrieving a list of all TCP and UDP ports that are currently listening<\/p>\n<p><code>netstat -tuln<\/code><\/p>\n<p>Lists listening TCP and UDP sockets with numeric addresses and ports, providing a quick overview of active services.<\/p>\n<h4><strong>To list all the connections that are listening<\/strong><\/h4>\n<p><code>netstat -l<\/code><\/p>\n<p>Shows only sockets in listening state, useful for confirming which services are awaiting inbound connections.<\/p>\n<h4><strong>List open ports in Linux, alongside current TCP connections<\/strong><\/h4>\n<p><code>netstat -tn<\/code><\/p>\n<p>Displays TCP sockets and established connections with numeric output, helping verify ongoing client traffic and port usage.<\/p>\n<h4><strong>A list of open UDP ports<\/strong><\/h4>\n<p><code>netstat -un<\/code><\/p>\n<p>Shows active UDP sockets in numeric form, helpful for troubleshooting stateless services and lightweight protocols.<\/p>\n<pre><span style=\"color: #0000ff;\"><strong>Tip:<\/strong><\/span> Add -p (e.g., netstat -tulnp) to display associated process IDs \r\nand program names where permitted.<\/pre>\n<h3><strong>Using nmap to Scan Open Ports<\/strong><\/h3>\n<p>Nmap helps you scan a system like an external client, revealing open ports, active services, and potential security exposures.<\/p>\n<h4><strong>Scanning for open ports on a domain<\/strong><\/h4>\n<p><code>nmap example.com<\/code><\/p>\n<p>Performs a basic scan against a host, identifying open ports and responsive services from an external perspective.<\/p>\n<h4><strong>List of ports that are listening for connections via TCP<\/strong><\/h4>\n<p><code>nmap -sT localhost<\/code><\/p>\n<p>Runs a TCP connect scan, enumerating ports accepting connections to validate which services are reachable locally.<\/p>\n<h4><strong>List of ports that are listening for connections via UDP<\/strong><\/h4>\n<p><code>nmap -sU localhost<\/code><\/p>\n<p>Probes UDP listeners, which can respond unpredictably; helpful for discovering DNS, DHCP, and other UDP services.<\/p>\n<h4><strong>Look at a specific port (instead of all ports)<\/strong><\/h4>\n<p><code>nmap -p 443 example.com<\/code><\/p>\n<p>Targets a single port to confirm openness and service availability, ideal for focused troubleshooting of one endpoint.<\/p>\n<h4><strong>Scan every open port on both TCP and UDP<\/strong><\/h4>\n<p><code>nmap -sT -sU -p- localhost<\/code><\/p>\n<p>Sweeps all TCP and UDP ports, providing comprehensive visibility into every listening service on the scanned host.<\/p>\n<pre><span style=\"color: #0000ff;\"><strong>Note:<\/strong><\/span> UDP scans can be slow; consider narrowing targets or increasing \r\ntiming cautiously to manage duration.<\/pre>\n<h3><strong>Using lsof to Find Open Network Connections<\/strong><\/h3>\n<p>Lsof shows which running processes are using specific ports, helping you trace network activity and quickly diagnose service conflicts.<\/p>\n<h4><strong>Listing all active network connections<\/strong><\/h4>\n<p><code>lsof -i<\/code><\/p>\n<p>Shows processes with open network files, revealing listening ports and active connections from a process\u2011centric viewpoint.<\/p>\n<h4><strong>Find a process that is using a specified port<\/strong><\/h4>\n<p><code>lsof -i :8080<\/code><\/p>\n<p>Identifies which program owns a given port, enabling quick resolution of conflicts and unexpected bindings.<\/p>\n<h4><strong>Get a list of all the UDP and TCP connections<\/strong><\/h4>\n<p><code>lsof -iTCP -iUDP<\/code><\/p>\n<p>Combines TCP and UDP views to present all active sockets, simplifying audits across both protocol families.<\/p>\n<pre><span style=\"color: #0000ff;\"><strong>Pro tip:<\/strong><\/span> Add -P -n to lsof to skip service and DNS lookups for \r\nfaster, numeric output.<\/pre>\n<h4><strong>FAQ&#8217;s<\/strong><\/h4>\n<ol>\n<li><strong>How to see open ports with lsof?<br \/>\n<\/strong>You can check open ports with the lsof command by running lsof -i in the terminal. It lists active network connections, showing which services or applications are currently using specific ports on the system.<\/li>\n<li><strong>How to check open ports in Linux netstat?<br \/>\n<\/strong>To check open ports using netstat, run netstat -tuln in the terminal. This command displays listening TCP and UDP ports along with their addresses, helping you identify which services are active on your server.<\/li>\n<li><strong>What is T4 in Nmap?<br \/>\n<\/strong>T4 in Nmap is a timing template that speeds up the scanning process. It sends packets faster while still maintaining accuracy, making it useful for scanning reliable networks where speed matters more than stealth.<\/li>\n<li><strong>How to check open ports in Linux using Nmap?<br \/>\n<\/strong>You can scan open ports in Linux with Nmap by running nmap localhost or nmap [IP address]. The tool checks common ports and reports which ones are open, closed, or filtered on the target system.<\/li>\n<li><strong>How do I check if port 443 is open?<br \/>\n<\/strong>To check if port 443 is open, use commands like nmap -p 443 [IP address] or telnet [domain] 443. If the connection succeeds or shows an open state, the HTTPS port is accessible.<\/li>\n<\/ol>\n<p><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [{\n    \"@type\": \"Question\",\n    \"name\": \"How to see open ports with lsof?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"You can check open ports with the lsof command by running lsof -i in the terminal. It lists active network connections, showing which services or applications are currently using specific ports on the system.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How to check open ports in Linux netstat?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"To check open ports using netstat, run netstat -tuln in the terminal. This command displays listening TCP and UDP ports along with their addresses, helping you identify which services are active on your server.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"What is T4 in Nmap?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"T4 in Nmap is a timing template that speeds up the scanning process. It sends packets faster while still maintaining accuracy, making it useful for scanning reliable networks where speed matters more than stealth.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How to check open ports in Linux using Nmap?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"You can scan open ports in Linux with Nmap by running nmap localhost or nmap [IP address]. The tool checks common ports and reports which ones are open, closed, or filtered on the target system.\"\n    }\n  },{\n    \"@type\": \"Question\",\n    \"name\": \"How do I check if port 443 is open?\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"To check if port 443 is open, use commands like nmap -p 443 [IP address] or telnet [domain] 443. If the connection succeeds or shows an open state, the HTTPS port is accessible.\"\n    }\n  }]\n}\n<\/script><\/p>\n<h3><strong>Conclusion <\/strong><\/h3>\n<p>Regularly checking open ports helps you validate service exposure, spot misconfigurations, and tighten security. Use netstat for quick snapshots, nmap for external scanning, and lsof to map ports to processes. Together, these tools provide a complete picture of your system\u2019s network surface fast, accurate, and script\u2011friendly.<\/p>\n<p>Discover <a href=\"https:\/\/www.bodhost.com\/kb\/how-to-find-open-ports-on-netstat\/\" target=\"_blank\" rel=\"noopener\"><em>How To Find Open Ports On Netstat<\/em><\/a> and monitor active ports to improve Linux server security.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Open ports show which services are accepting connections on your Linux host. Checking them helps validate firewall rules, troubleshoot connectivity, and harden exposed services. Below are three reliable ways to&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[837],"tags":[1709,1286,1706,1708],"class_list":["post-15240","post","type-post","status-publish","format-standard","hentry","category-tutorial","tag-lsof","tag-netstat","tag-nmap","tag-open-ports-in-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Check Open Ports in Linux with netstat, nmap, lsof<\/title>\n<meta name=\"description\" content=\"Learn how to check open ports in Linux using netstat, nmap, and lsof to identify listening services and troubleshoot network connections.\" \/>\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.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Check Open Ports in Linux with netstat, nmap, lsof\" \/>\n<meta property=\"og:description\" content=\"Learn how to check open ports in Linux using netstat, nmap, and lsof to identify listening services and troubleshoot network connections.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-10T12:24:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-13T08:32:19+00:00\" \/>\n<meta name=\"author\" content=\"Paul Lopez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Lopez\" \/>\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.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/\"},\"author\":{\"name\":\"Paul Lopez\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\"},\"headline\":\"How to Check Open Ports in Linux with netstat, nmap, lsof\",\"datePublished\":\"2026-03-10T12:24:33+00:00\",\"dateModified\":\"2026-03-13T08:32:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/\"},\"wordCount\":829,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"keywords\":[\"lsof\",\"Netstat\",\"nmap\",\"Open Ports in Linux\"],\"articleSection\":[\"Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/\",\"name\":\"How to Check Open Ports in Linux with netstat, nmap, lsof\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2026-03-10T12:24:33+00:00\",\"dateModified\":\"2026-03-13T08:32:19+00:00\",\"description\":\"Learn how to check open ports in Linux using netstat, nmap, and lsof to identify listening services and troubleshoot network connections.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-check-open-ports-in-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Tutorial\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/tutorial\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Check Open Ports in Linux with netstat, nmap, lsof\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\",\"name\":\"Paul Lopez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"caption\":\"Paul Lopez\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/paullopez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check Open Ports in Linux with netstat, nmap, lsof","description":"Learn how to check open ports in Linux using netstat, nmap, and lsof to identify listening services and troubleshoot network connections.","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.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Check Open Ports in Linux with netstat, nmap, lsof","og_description":"Learn how to check open ports in Linux using netstat, nmap, and lsof to identify listening services and troubleshoot network connections.","og_url":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2026-03-10T12:24:33+00:00","article_modified_time":"2026-03-13T08:32:19+00:00","author":"Paul Lopez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Paul Lopez","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/"},"author":{"name":"Paul Lopez","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813"},"headline":"How to Check Open Ports in Linux with netstat, nmap, lsof","datePublished":"2026-03-10T12:24:33+00:00","dateModified":"2026-03-13T08:32:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/"},"wordCount":829,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"keywords":["lsof","Netstat","nmap","Open Ports in Linux"],"articleSection":["Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/","url":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/","name":"How to Check Open Ports in Linux with netstat, nmap, lsof","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"datePublished":"2026-03-10T12:24:33+00:00","dateModified":"2026-03-13T08:32:19+00:00","description":"Learn how to check open ports in Linux using netstat, nmap, and lsof to identify listening services and troubleshoot network connections.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/how-to-check-open-ports-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Tutorial","item":"https:\/\/www.bodhost.com\/kb\/category\/tutorial\/"},{"@type":"ListItem","position":2,"name":"How to Check Open Ports in Linux with netstat, nmap, lsof"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813","name":"Paul Lopez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","caption":"Paul Lopez"},"url":"https:\/\/www.bodhost.com\/kb\/author\/paullopez\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15240","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=15240"}],"version-history":[{"count":13,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15240\/revisions"}],"predecessor-version":[{"id":15264,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15240\/revisions\/15264"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=15240"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=15240"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=15240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}