{"id":17642,"date":"2023-05-22T14:56:37","date_gmt":"2023-05-22T14:56:37","guid":{"rendered":"https:\/\/webhostinggeeks.com\/howto\/?p=17642"},"modified":"2023-07-07T15:48:47","modified_gmt":"2023-07-07T15:48:47","slug":"tcp_miss_aborted-000-squid-troubleshoot","status":"publish","type":"post","link":"https:\/\/webhostinggeeks.com\/howto\/tcp_miss_aborted-000-squid-troubleshoot\/","title":{"rendered":"How to Troubleshoot TCP_MISS_Aborted\/000 in Squid Proxy Server"},"content":{"rendered":"<p><img decoding=\"async\" data-src=\"https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-1024x768.jpg\" alt=\"How to Troubleshoot TCP_MISS_Aborted_000 in Squid Proxy Server\" width=\"1024\" height=\"768\" class=\"alignnone size-large wp-image-17643 lazyload\" data-srcset=\"https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-1024x768.jpg 1024w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-300x225.jpg 300w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-1536x1152.jpg 1536w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-2048x1536.jpg 2048w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-128x96.jpg 128w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-420x315.jpg 420w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-540x405.jpg 540w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-720x540.jpg 720w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-960x720.jpg 960w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-1140x855.jpg 1140w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-1320x990.jpg 1320w, https:\/\/webhostinggeeks.com\/howto\/wp-content\/uploads\/2023\/07\/How-to-Troubleshoot-TCP_MISS_Aborted_000-in-Squid-Proxy-Server-1440x1080.jpg 1440w\" data-sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024\/768;\" \/><\/p>\n<p>In the <a href=\"https:\/\/webhostinggeeks.com\/best\/proxy-servers\/\">world of proxy servers<\/a>, a well-known and widely used software is <a href=\"https:\/\/webhostinggeeks.com\/blog\/squid-proxy-server-features-functions-benefits\/\">Squid<\/a>. It serves as a caching and forwarding HTTP web proxy, providing a variety of features that enhance the performance and security of large network systems. However, like any software, it&#8217;s not immune to issues.<\/p>\n<p>One such issue that administrators often encounter is the TCP_MISS_Aborted\/000 error. This error can be puzzling, especially if you&#8217;re not familiar with Squid&#8217;s logging terminologies.<\/p>\n<p>In this tutorial, we will discuss TCP_MISS_Aborted\/000 in-depth, what it means, why it occurs, and most importantly, how to troubleshoot it. <\/p>\n<p>By the end of this guide, you will be equipped with the knowledge to resolve this issue and ensure the smooth operation of your Squid proxy server.<\/p>\n<p>Before we proceed, it&#8217;s important to understand what TCP_MISS means in Squid. TCP_MISS is a log code that indicates that a requested object was not in the cache, and the server had to fetch a fresh copy from the source. The &#8220;\/000&#8221; following TCP_MISS indicates the HTTP status code of the response. In this case, &#8220;000&#8221; means that the server didn&#8217;t receive any response from the source.<\/p>\n<p>Now, let&#8217;s dive into the troubleshooting process.<\/p>\n<h2>Step 1: Verify Network Connectivity<\/h2>\n<p>The first step in troubleshooting the TCP_MISS_Aborted\/000 error is to verify the network connectivity between your Squid proxy server and the source server. This is crucial because if your Squid server cannot reach the source server, it will not be able to fetch the requested resources, leading to the TCP_MISS_Aborted\/000 error.<\/p>\n<p>You can verify network connectivity by using the ping or traceroute commands. Here&#8217;s how you can do it:<\/p>\n<h3>Using the Ping Command<\/h3>\n<p>The ping command is a simple tool that sends ICMP Echo Request packets to the target host and listens for ICMP Echo Reply packets. The time taken for the packets to return is reported, giving you an idea of the network latency between your Squid server and the source server.<\/p>\n<p>Here&#8217;s an example of how to use the ping command:<\/p>\n<pre>\r\nsudo ping -c 4 source_server.com\r\n<\/pre>\n<p>In this command, replace source_server.com with the domain name or IP address of the source server. The -c 4 option tells ping to send 4 packets.<\/p>\n<p>If the network connection is good, you should see output similar to this:<\/p>\n<pre>\r\nPING source_server.com (192.0.2.1) 56(84) bytes of data.\r\n64 bytes from source_server.com (192.0.2.1): icmp_seq=1 ttl=64 time=0.027 ms\r\n64 bytes from source_server.com (192.0.2.1): icmp_seq=2 ttl=64 time=0.033 ms\r\n64 bytes from source_server.com (192.0.2.1): icmp_seq=3 ttl=64 time=0.030 ms\r\n64 bytes from source_server.com (192.0.2.1): icmp_seq=4 ttl=64 time=0.031 ms\r\n<\/pre>\n<p>If you see Request timed out or Destination Host Unreachable messages, it means there are network connectivity issues that you need to resolve.<\/p>\n<h3>Using the Traceroute Command<\/h3>\n<p>The traceroute command is another useful tool for diagnosing network connectivity issues. It shows the path that packets take from your Squid server to the source server, and it can help you identify where the connection is failing.<\/p>\n<p>Here&#8217;s an example of how to use the traceroute command:<\/p>\n<pre>\r\nsudo traceroute source_server.com\r\n<\/pre>\n<p>Replace source_server.com with the domain name or IP address of the source server.<\/p>\n<p>The output of the traceroute command shows the network path from your server to the source server. If there are any network issues, you will see * * * at the point where the connection fails.<\/p>\n<p>If there are any network issues, you will need to resolve them before proceeding. This might involve checking your network configuration, firewall settings, or contacting your network administrator or ISP. Once you have confirmed that the network connectivity is good, you can proceed to the next step of troubleshooting the TCP_MISS_Aborted\/000 error.<\/p>\n<h2>Step 2: Check the Squid Access Logs<\/h2>\n<pre>\r\n192.168.0.1 TCP_MISS\/200 776 GET http:\/\/xml.alexa.com\/data? proxyuser1 HIER_DIRECT\/23.21.109.107 text\/xml\r\n192.168.0.1 TCP_MISS\/200 2285 POST http:\/\/sd.symcd.com\/ proxyuser1 HIER_DIRECT\/23.51.43.27 application\/ocsp-response\r\n192.168.0.1 TCP_MISS\/200 915 POST http:\/\/ocsp.digicert.com\/ proxyuser1 HIER_DIRECT\/117.18.237.29 application\/ocsp-response\r\n192.168.0.1 TCP_MISS\/200 2285 POST http:\/\/sd.symcd.com\/ proxyuser1 HIER_DIRECT\/23.51.43.27 application\/ocsp-response\r\n192.168.0.1 TCP_MISS_ABORTED\/000 0 POST http:\/\/ocsp.thawte.com\/ proxyuser1 HIER_NONE\/- -\r\n192.168.0.1 TCP_MISS_ABORTED\/000 0 POST http:\/\/ocsp.thawte.com\/ proxyuser1 HIER_DIRECT\/199.7.71.72 -\r\n192.168.0.1 TCP_MISS\/200 794 GET \r\n192.168.0.1 TCP_MISS\/200 446 GET http:\/\/toolbarqueries.google.com\/tbr? proxyuser1 HIER_DIRECT\/58.27.61.123 text\/html\r\n192.168.0.1 TCP_MISS\/200 4214 GET http:\/\/xml.alexa.com\/data? proxyuser1 HIER_DIRECT\/23.21.109.107 text\/xml\r\n<\/pre>\n<p>The Squid access logs are a valuable resource when troubleshooting any Squid-related issue. They provide detailed information about the requests processed by the Squid proxy server. Look for any patterns or anomalies around the time the TCP_MISS_Aborted\/000 errors occurred.<\/p>\n<h2>Step 3: Review the Squid Configuration<\/h2>\n<p>The Squid configuration file, typically located at \/etc\/squid\/squid.conf, contains the settings that control the behavior of the Squid proxy server. Review the configuration file to ensure that it&#8217;s correctly set up. Pay special attention to the ACLs (Access Control Lists) and http_access directives, as incorrect settings can lead to errors.<\/p>\n<pre>\r\n# Example rule allowing access from your local networks.\r\n# Adapt to list your (internal) IP networks from where browsing\r\n# should be allowed\r\nacl localnet src 10.0.0.0\/8\t# RFC1918 possible internal network\r\nacl localnet src 172.16.0.0\/12\t# RFC1918 possible internal network\r\nacl localnet src 192.168.0.0\/16\t# RFC1918 possible internal network\r\nacl localnet src fc00::\/7       # RFC 4193 local private network range\r\nacl localnet src fe80::\/10      # RFC 4291 link-local (directly plugged) machines\r\nacl webhostinggeeks.com src 192.168.1.0\/24    # Your internal network\r\n\r\nacl SSL_ports port 443\r\nacl Safe_ports port 80\t\t# http\r\nacl Safe_ports port 21\t\t# ftp\r\nacl Safe_ports port 443\t\t# https\r\nacl Safe_ports port 70\t\t# gopher\r\nacl Safe_ports port 210\t\t# wais\r\nacl Safe_ports port 1025-65535\t# unregistered ports\r\nacl Safe_ports port 280\t\t# http-mgmt\r\nacl Safe_ports port 488\t\t# gss-http\r\nacl Safe_ports port 591\t\t# filemaker\r\nacl Safe_ports port 777\t\t# multiling http\r\nacl CONNECT method CONNECT\r\n\r\n#Add this at the bottom of the ACL Section\r\n#\r\nacl surfing_hours time M T W H F 08:00-17:00\r\nacl Bad_Websites  dstdomain \"\/etc\/squid\/web\/Bad_Websites.squid\"\r\n\r\n#\r\n# Recommended minimum Access Permission configuration:\r\n#\r\n# Only allow cachemgr access from localhost\r\nhttp_access allow manager localhost\r\nhttp_access deny manager\r\n\r\n# Only allow cachemgr access from webhostinggeeks.com\r\nhttp_access allow webhostinggeeks.com surfing_hours !Bad_Websites\r\nhttp_access deny Bad_Websites\r\nhttp_access deny webhostinggeeks.com\r\n\r\n\r\n\r\n# Deny requests to certain unsafe ports\r\nhttp_access deny !Safe_ports\r\n\r\n# Deny CONNECT to other than secure SSL ports\r\nhttp_access deny CONNECT !SSL_ports\r\n\r\n# We strongly recommend the following be uncommented to protect innocent\r\n# web applications running on the proxy server who think the only\r\n# one who can access services on \"localhost\" is a local user\r\n#http_access deny to_localhost\r\n\r\n#\r\n# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS\r\n#\r\n\r\n# Example rule allowing access from your local networks.\r\n# Adapt localnet in the ACL section to list your (internal) IP networks\r\n# from where browsing should be allowed\r\n#http_access allow localnet\r\nhttp_access allow localhost\r\n\r\n# And finally deny all other access to this proxy\r\nhttp_access deny all\r\n\r\n# Squid normally listens to port 3128\r\nhttp_port 3128\r\n\r\n# We recommend you to use at least the following line.\r\nhierarchy_stoplist cgi-bin ?\r\n\r\n# Uncomment and adjust the following to add a disk cache directory.\r\n#cache_dir ufs \/var\/spool\/squid 100 16 256\r\n\r\n# Leave coredumps in the first cache dir\r\ncoredump_dir \/var\/spool\/squid\r\n\r\n# Add any of your own refresh_pattern entries above these.\r\nrefresh_pattern ^ftp:\t\t1440\t20%\t10080\r\nrefresh_pattern ^gopher:\t1440\t0%\t1440\r\nrefresh_pattern -i (\/cgi-bin\/|\\?) 0\t0%\t0\r\nrefresh_pattern .\t\t0\t20%\t4320\r\n<\/pre>\n<h2>Step 4: Test with Different Clients or Destinations<\/h2>\n<p>Another effective troubleshooting step is to try and reproduce the error using different client machines or by requesting different destination URLs. This can help determine if the issue is specific to a certain client or destination.<\/p>\n<h3>Testing with Different Clients<\/h3>\n<p>If you have access to different client machines, you can try to reproduce the error on these machines. For example, if you have a client machine running Linux, you can use the curl command to send a request through the Squid proxy server:<\/p>\n<pre>\r\ncurl -x http:\/\/your_squid_server:3128 http:\/\/destination_url\r\n<\/pre>\n<p>In this command, replace your_squid_server with the IP address or hostname of your Squid server, 3128 with the port number your Squid server is listening on, and http:\/\/destination_url with the URL you&#8217;re trying to access.<\/p>\n<p>If the request is successful on some client machines but not others, the issue might be with the specific client machine that&#8217;s experiencing the error.<\/p>\n<h3>Testing with Different Destinations<\/h3>\n<p>You can also try to reproduce the error by requesting different destination URLs. For example, you can use the curl command to send requests to different URLs through the Squid proxy server:<\/p>\n<pre>\r\ncurl -x http:\/\/your_squid_server:3128 http:\/\/different_destination_url\r\n<\/pre>\n<p>Replace http:\/\/different_destination_url with a different URL you&#8217;re trying to access.<\/p>\n<p>If the request is successful for some URLs but not others, the issue might be with the specific destination that&#8217;s causing the error.<\/p>\n<p>By testing with different clients and destinations, you can narrow down the scope of the problem and get closer to identifying the root cause. Once you&#8217;ve gathered this information, you can proceed to the next step of troubleshooting the TCP_MISS_Aborted\/000 error.<\/p>\n<h2>Step 5: Update or Reinstall Squid<\/h2>\n<p>If the above steps don&#8217;t resolve the issue, it might be due to a bug in the version of Squid you&#8217;re using. In such cases, updating Squid to the latest version or reinstalling it might help. Here&#8217;s how you can do it:<\/p>\n<h3>Updating Squid<\/h3>\n<p>On a CentOS or RHEL system, you can update Squid using the yum package manager:<\/p>\n<pre>\r\nsudo yum update squid\r\n<\/pre>\n<p>On a Debian or Ubuntu system, you can use the apt package manager:<\/p>\n<pre>\r\nsudo apt-get update\r\nsudo apt-get upgrade squid\r\n<\/pre>\n<p>These commands will check for updates and install them if available. After updating, you should restart Squid to ensure the new version is in use:<\/p>\n<pre>\r\nsudo systemctl restart squid\r\n<\/pre>\n<h3>Reinstalling Squid<\/h3>\n<p>If updating Squid doesn&#8217;t resolve the issue, or if you&#8217;re already using the latest version, you can try reinstalling Squid. Here&#8217;s how:<\/p>\n<p>On a CentOS or RHEL system:<\/p>\n<pre>\r\nsudo yum remove squid\r\nsudo yum install squid\r\n<\/pre>\n<p>On a Debian or Ubuntu system:<\/p>\n<pre>\r\nsudo apt-get remove squid\r\nsudo apt-get install squid\r\n<\/pre>\n<p>These commands will uninstall Squid and then reinstall it. After reinstalling, you should restart Squid:<\/p>\n<pre>\r\nsudo systemctl restart squid\r\n<\/pre>\n<p>Remember to back up any important configuration files before uninstalling Squid, as the uninstallation process might remove them.<\/p>\n<p>After updating or reinstalling Squid, check if the TCP_MISS_Aborted\/000 error is resolved. If not, you might need to delve deeper into the Squid configuration or network settings, or seek help from the Squid community or your network administrator.<\/p>\n<h2>Commands Mentioned:<\/h2>\n<ul>\n<li><span class=\"fw-bold\">ping<\/span> \u2013 This command is used to test the network connectivity between your server and the source server.<\/li>\n<li><span class=\"fw-bold\">traceroute<\/span> \u2013 This command is used to trace the route that packets take from your server to the source server.<\/li>\n<li><span class=\"fw-bold\">sudo nano \/etc\/squid\/squid.conf<\/span> \u2013 This command opens the Squid configuration file in the nano text editor with superuser permissions.<\/li>\n<li><span class=\"fw-bold\">sudo systemctl restart squid<\/span> \u2013 This command restarts the Squid service, applying any changes made to the configuration file.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>Troubleshooting the TCP_MISS_Aborted\/000 error in Squid can be a complex task, requiring a good understanding of Squid and its operation. However, with a systematic approach and a bit of patience, it&#8217;s certainly manageable. In this tutorial, we&#8217;ve walked through the steps to identify and resolve this issue.<\/p>\n<p>Remember, the key to effective troubleshooting is to understand the problem, gather as much information as possible, and then apply logical reasoning to identify the root cause and solution.<\/p>\n<p>If you have any questions or comments about this tutorial, feel free to leave a comment below. We&#8217;d love to hear from you!<\/p>\n<h2>FAQ<\/h2>\n<ol itemscope itemtype=\"https:\/\/schema.org\/FAQPage\">\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">What does TCP_MISS_Aborted\/000 mean in Squid?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<span itemprop=\"text\">In Squid, TCP_MISS_Aborted\/000 indicates that a requested object was not in the cache (TCP_MISS), and the server had to fetch a fresh copy from the source. However, the server didn&#8217;t receive any response from the source (&#8220;\/000&#8221;).<\/span>\n<\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">How can I view the Squid access logs?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<span itemprop=\"text\">The Squid access logs are typically located at \/var\/log\/squid\/access.log. You can view them using any text editor or log viewing tool. For real-time viewing, you can use the tail -f command.<\/span>\n<\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">What is the location of the Squid configuration file?<\/p>\n<p itemprop=\"accepted\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<span itemprop=\"text\">The Squid configuration file is typically located at \/etc\/squid\/squid.conf. This file contains the settings that control the behavior of the Squid proxy server.<\/span>\n<\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">How can I update Squid to the latest version?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<span itemprop=\"text\">You can update Squid to the latest version using your system&#8217;s package manager. For example, on a CentOS system, you can use the yum update squid command. On an Ubuntu system, you can use the apt-get update &#038;&#038; apt-get upgrade squid command.<\/span>\n<\/p>\n<\/li>\n<li itemscope itemprop=\"mainEntity\" itemtype=\"https:\/\/schema.org\/Question\">\n<p class=\"fw-bold\" itemprop=\"name\">What is the role of ACLs in Squid?<\/p>\n<p itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<span itemprop=\"text\">ACLs (Access Control Lists) in Squid are used to define and control who has access to the proxy server. They can be used to restrict access based on various criteria such as IP address, time of day, and requested URL. ACLs are defined in the Squid configuration file and are used in conjunction with http_access directives to control access to the proxy server.<\/span>\n<\/p>\n<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>In the world of proxy servers, a well-known and widely used software is Squid. It serves as a caching and forwarding HTTP web proxy, providing a variety of features that&#8230;<\/p>\n","protected":false},"author":6,"featured_media":17643,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"wds_primary_category":0,"footnotes":""},"categories":[1057],"tags":[1678,1793,2133,1849],"class_list":["post-17642","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-squid-server","tag-proxy","tag-squid","tag-tcp_miss","tag-troubleshooting"],"_links":{"self":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/posts\/17642","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/comments?post=17642"}],"version-history":[{"count":0,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/posts\/17642\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/media\/17643"}],"wp:attachment":[{"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/media?parent=17642"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/categories?post=17642"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webhostinggeeks.com\/howto\/wp-json\/wp\/v2\/tags?post=17642"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}