{"id":9199,"date":"2020-08-19T16:07:14","date_gmt":"2020-08-19T13:07:14","guid":{"rendered":"https:\/\/unihost.com\/help\/?p=9199"},"modified":"2023-01-19T13:48:57","modified_gmt":"2023-01-19T10:48:57","slug":"how-to-check-scan-for-open-ports-in-linux","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/","title":{"rendered":"How to Check (scan) for Open Ports in Linux"},"content":{"rendered":"<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the services running on the server.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Network Mapper (nmap) is usually used for port scanning. This program allows you to determine open TCP and UDP ports. To install it, use the following command:<\/span><\/p>\n<h5><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Ubuntu \/ Debian<\/span><\/h5>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">apt-get install nmap -y<\/span><\/pre>\n<h5><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">RedHat\/Centos<\/span><\/h5>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">yum install nmap -y<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">After installation, you can start checking the running services on the server. For example, let&#8217;s check the Google public DNS server:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">nmap 8.8.8.8<\/span><\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-9200 aligncenter\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/AGa_110820_pWLZBold.png\" alt=\"How to Check (scan) for Open Ports in Linux - Image 1\" width=\"583\" height=\"193\" \/ title=\"How to Check (scan) for Open Ports in Linux - Image 1\"><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">As we can see from the results of the check, two ports are open on the server on which the DNS services (port 53) and the webserver (port 443) are running.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Also, for checking, you can use various keys that determine how to scan:<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-p-: scan for all 65535 ports<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-sT: scan TCP connections<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-O: scan to determine the operating system running on the server<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-v: verbose scan<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-A: aggressive scan, scan everything<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-T [1-5]: to set the scan speed<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-Pn: if the server is blocking ping<\/span><br \/>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">-sU: scan UDP ports<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">More details about the operation of this program can be found on the project <a href=\"https:\/\/nmap.org\/\" target=\"_blank\" rel=\"noopener noreferrer nofollow noopener noreferrer\">website<\/a><\/span><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">. <\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Some scans may require root user privileges:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sudo nmap -sU 8.8.8.8<\/span><\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-9202 aligncenter\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/AGa_110820_HegWHeJp.png\" alt=\"How to Check (scan) for Open Ports in Linux - Image 2\" width=\"585\" height=\"212\" \/ title=\"How to Check (scan) for Open Ports in Linux - Image 2\"><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Also, remember that in some countries, port scanning is illegal and punishable by law.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If you need to check a specific port, you can use telnet. The command syntax will be as follows:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">telnet <em>IP-address port<\/em><\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">For example:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">telnet 8.8.8.8 443<\/span><\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-9204 aligncenter\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/AGa_110820_4PYXaVt1.png\" alt=\"How to Check (scan) for Open Ports in Linux - Image 3\" width=\"448\" height=\"123\" \/ title=\"How to Check (scan) for Open Ports in Linux - Image 3\"><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">In the above example, we were able to establish a connection to port 443 on the server. To terminate the connection, use the key combination Ctrl+], and then enter quit or press Ctrl+d.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If the port is closed or not in use, you will receive a message similar to the following:<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-9206 aligncenter\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/AGa_110820_7MElN9i-.png\" alt=\"How to Check (scan) for Open Ports in Linux - Image 4\" width=\"577\" height=\"56\" \/ title=\"How to Check (scan) for Open Ports in Linux - Image 4\"><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">By default, a telnet client is available in most Linux distributions, but there may be a situation when you need to check the port using Windows OS. In this case, you can use a third-party application &#8211; for example, Putty or the telnet client built into the OS. To enable it, go to Control Panel &#8211; Programs and Features &#8211; Turn Windows features on or off. In the window that opens, check the Telnet Client check box.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-9208 aligncenter\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/AGa_110820_zEb3xkIB.png\" alt=\"How to Check (scan) for Open Ports in Linux - Image 5\" width=\"633\" height=\"484\" \/ title=\"How to Check (scan) for Open Ports in Linux - Image 5\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the services running on the server. Network Mapper (nmap) is usually used for port scanning. This program allows you to determine open TCP and UDP ports. To install it, use the following command: [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[636,637],"class_list":["post-9199","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-nmap","tag-scan-ports"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Check (scan) for Open Ports in Linux - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/how-to-check-scan-for-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 (scan) for Open Ports in Linux - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-19T13:07:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T10:48:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"How to Check (scan) for Open Ports in Linux\",\"datePublished\":\"2020-08-19T13:07:14+00:00\",\"dateModified\":\"2023-01-19T10:48:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/\"},\"wordCount\":363,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png\",\"keywords\":[\"nmap\",\"scan ports\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/\",\"url\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/\",\"name\":\"How to Check (scan) for Open Ports in Linux - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png\",\"datePublished\":\"2020-08-19T13:07:14+00:00\",\"dateModified\":\"2023-01-19T10:48:57+00:00\",\"description\":\"In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage\",\"url\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Check (scan) for Open Ports in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Check (scan) for Open Ports in Linux - Unihost.FAQ","description":"In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the","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:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Check (scan) for Open Ports in Linux - Unihost.FAQ","og_description":"In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the","og_url":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2020-08-19T13:07:14+00:00","article_modified_time":"2023-01-19T10:48:57+00:00","og_image":[{"url":"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png","type":"","width":"","height":""}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"How to Check (scan) for Open Ports in Linux","datePublished":"2020-08-19T13:07:14+00:00","dateModified":"2023-01-19T10:48:57+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/"},"wordCount":363,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png","keywords":["nmap","scan ports"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/","url":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/","name":"How to Check (scan) for Open Ports in Linux - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png","datePublished":"2020-08-19T13:07:14+00:00","dateModified":"2023-01-19T10:48:57+00:00","description":"In this article, we will look at scanning server ports for running services. In some cases, this helps to identify problems with the","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#primaryimage","url":"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png","contentUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/AGa_110820_pWLZBold.png"},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/how-to-check-scan-for-open-ports-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"How to Check (scan) for Open Ports in Linux"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/9199","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=9199"}],"version-history":[{"count":8,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/9199\/revisions"}],"predecessor-version":[{"id":9229,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/9199\/revisions\/9229"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=9199"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=9199"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=9199"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}