{"id":1652,"date":"2022-08-19T18:07:23","date_gmt":"2022-08-19T18:07:23","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=1652"},"modified":"2026-06-09T16:09:54","modified_gmt":"2026-06-09T16:09:54","slug":"netstat-cheatsheet","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/","title":{"rendered":"Netstat Cheatsheet"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Introduction<\/h3>\n\n\n\n<p><strong>Netstat (Network Statistics)<\/strong> is a command-line utility used to monitor and troubleshoot network connections on Linux systems. It provides detailed information about active TCP\/UDP connections, listening ports, routing tables, network interfaces, and protocol statistics.<\/p>\n\n\n\n<p>This quick reference guide covers some of the most commonly used <code>netstat<\/code> commands for system administrators and developers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">View Listening Ports and Associated Processes<\/h2>\n\n\n\n<p>Display all TCP and UDP ports currently listening, along with the process ID (PID) and program name.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -lnptu<\/code><\/pre>\n\n\n\n<p><strong>Options:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-l<\/code> : Show listening sockets<\/li>\n\n\n\n<li><code>-n<\/code> : Display numerical addresses instead of resolving hostnames<\/li>\n\n\n\n<li><code>-p<\/code> : Show PID and process name<\/li>\n\n\n\n<li><code>-t<\/code> : Show TCP connections<\/li>\n\n\n\n<li><code>-u<\/code> : Show UDP connections<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Display the Routing Table<\/h2>\n\n\n\n<p>View the system&#8217;s routing table.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -r<\/code><\/pre>\n\n\n\n<p>To prevent DNS lookups and display numeric addresses:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -rn<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Identify Which Process Is Using a Specific Port<\/h2>\n\n\n\n<p>Find the process listening on a particular port.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -pln | grep &lt;port&gt; | awk '{print $NF}'<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -pln | grep 8080 | awk '{print $NF}'<\/code><\/pre>\n\n\n\n<p><strong>Sample Output:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1507\/python<\/code><\/pre>\n\n\n\n<p>This indicates that the Python process with PID <code>1507<\/code> is listening on port <code>8080<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Quickly Display IPv4 TCP Listening Services<\/h2>\n\n\n\n<p>Show active IPv4 TCP listening ports and the associated programs.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -vtlnp --listening -4<\/code><\/pre>\n\n\n\n<p>This command is useful for quickly auditing exposed TCP services on a server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">List All Active Connections and Ports<\/h2>\n\n\n\n<p>Display all active network connections and listening ports.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -a<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">List All Listening Ports<\/h2>\n\n\n\n<p>Show only listening sockets.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -l<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Display TCP Connections<\/h2>\n\n\n\n<p>View TCP connections.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -t<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Show Process IDs and Program Names<\/h2>\n\n\n\n<p>Display the process associated with each connection.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -p<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Note: Root privileges may be required to view all processes.<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Monitor Connections Continuously<\/h2>\n\n\n\n<p>Refresh network statistics continuously in real time.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -c<\/code><\/pre>\n\n\n\n<p>Press <code>Ctrl + C<\/code> to stop monitoring.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Display Listening TCP and UDP Ports with Process Information<\/h2>\n\n\n\n<p>View listening TCP and UDP ports along with user and process details.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -lepunt<\/code><\/pre>\n\n\n\n<p>This command is particularly useful during security audits and troubleshooting sessions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Print the Routing Table<\/h2>\n\n\n\n<p>Display the kernel routing table using numeric IP addresses.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -nr<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>Although modern Linux distributions often recommend using the <code>ss<\/code> command as a replacement, <code>netstat<\/code> remains a valuable tool for network diagnostics and system administration. Understanding these commands can help you quickly identify open ports, troubleshoot connectivity issues, and monitor network activity on your servers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Commonly Used Commands<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Purpose<\/th><th>Command<\/th><\/tr><tr><td>View listening ports and processes<\/td><td><code>sudo netstat -lnptu<\/code><\/td><\/tr><tr><td>Show routing table<\/td><td><code>netstat -rn<\/code><\/td><\/tr><tr><td>Find process using a port<\/td><td><code>netstat -pln | grep &lt;port&gt;<\/code><\/td><\/tr><tr><td>Show IPv4 TCP listeners<\/td><td><code>sudo netstat -vtlnp --listening -4<\/code><\/td><\/tr><tr><td>List all connections<\/td><td><code>netstat -a<\/code><\/td><\/tr><tr><td>List listening ports<\/td><td><code>netstat -l<\/code><\/td><\/tr><tr><td>Show TCP connections<\/td><td><code>netstat -t<\/code><\/td><\/tr><tr><td>Show process information<\/td><td><code>netstat -p<\/code><\/td><\/tr><tr><td>Continuous monitoring<\/td><td><code>netstat -c<\/code><\/td><\/tr><tr><td>Show listening TCP\/UDP ports<\/td><td><code>sudo netstat -lepunt<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Keep this cheat sheet handy for quick network troubleshooting and server administration tasks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p><code>netstat<\/code> remains one of the most useful networking tools for Linux administrators, DevOps engineers, and developers. Whether you need to identify which service is listening on a port, inspect active connections, analyze routing tables, or troubleshoot network-related issues, <code>netstat<\/code> provides valuable insights with simple commands.<\/p>\n\n\n\n<p>While newer tools such as <code>ss<\/code> offer improved performance and are gradually replacing <code>netstat<\/code> on modern Linux distributions, understanding <code>netstat<\/code> is still an essential skill because it is widely documented and commonly found in existing server environments.<\/p>\n\n\n\n<p>By keeping these commands handy, you can quickly diagnose connectivity problems, verify service availability, and maintain better visibility into your system&#8217;s network activity.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Netstat (Network Statistics) is a command-line utility used to monitor and troubleshoot network connections on Linux systems. It provides detailed information about active TCP\/UDP connections, listening ports, routing tables, network interfaces, and protocol statistics. This quick reference guide covers some of the most commonly used netstat commands for system administrators and developers. View Listening ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[33],"tags":[165,164],"class_list":["post-1652","post","type-post","status-publish","format-standard","hentry","category-whm","tag-cheatsheet","tag-netstat"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Netstat Cheatsheet - PheonixSolutions Knowledge-Base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Netstat Cheatsheet - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Introduction Netstat (Network Statistics) is a command-line utility used to monitor and troubleshoot network connections on Linux systems. It provides detailed information about active TCP\/UDP connections, listening ports, routing tables, network interfaces, and protocol statistics. This quick reference guide covers some of the most commonly used netstat commands for system administrators and developers. View Listening ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-19T18:07:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-09T16:09:54+00:00\" \/>\n<meta name=\"author\" content=\"knowledge-base\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"knowledge-base\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/\"},\"author\":{\"name\":\"knowledge-base\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"headline\":\"Netstat Cheatsheet\",\"datePublished\":\"2022-08-19T18:07:23+00:00\",\"dateModified\":\"2026-06-09T16:09:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/\"},\"wordCount\":487,\"commentCount\":0,\"keywords\":[\"cheatsheet\",\"netstat\"],\"articleSection\":[\"WHM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/\",\"name\":\"Netstat Cheatsheet - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"datePublished\":\"2022-08-19T18:07:23+00:00\",\"dateModified\":\"2026-06-09T16:09:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/08\\\/19\\\/netstat-cheatsheet\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Netstat Cheatsheet\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\",\"name\":\"PheonixSolutions Knowledge-Base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/24ddfd756e23cf1ce3c8e5f0fb309e6b\",\"name\":\"knowledge-base\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g\",\"caption\":\"knowledge-base\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/author\\\/knowledge-base\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Netstat Cheatsheet - PheonixSolutions Knowledge-Base","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:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/","og_locale":"en_US","og_type":"article","og_title":"Netstat Cheatsheet - PheonixSolutions Knowledge-Base","og_description":"Introduction Netstat (Network Statistics) is a command-line utility used to monitor and troubleshoot network connections on Linux systems. It provides detailed information about active TCP\/UDP connections, listening ports, routing tables, network interfaces, and protocol statistics. This quick reference guide covers some of the most commonly used netstat commands for system administrators and developers. View Listening ..Read more","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2022-08-19T18:07:23+00:00","article_modified_time":"2026-06-09T16:09:54+00:00","author":"knowledge-base","twitter_card":"summary_large_image","twitter_misc":{"Written by":"knowledge-base","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/"},"author":{"name":"knowledge-base","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"headline":"Netstat Cheatsheet","datePublished":"2022-08-19T18:07:23+00:00","dateModified":"2026-06-09T16:09:54+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/"},"wordCount":487,"commentCount":0,"keywords":["cheatsheet","netstat"],"articleSection":["WHM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/","name":"Netstat Cheatsheet - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"datePublished":"2022-08-19T18:07:23+00:00","dateModified":"2026-06-09T16:09:54+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b"},"breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/08\/19\/netstat-cheatsheet\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"Netstat Cheatsheet"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/","name":"PheonixSolutions Knowledge-Base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/knowledge-base\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/24ddfd756e23cf1ce3c8e5f0fb309e6b","name":"knowledge-base","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7203df2304073f631b2bf04267130cc48b8b1a82bb0ec98285125d6bc3cb8ade?s=96&d=mm&r=g","caption":"knowledge-base"},"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/author\/knowledge-base\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1652","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=1652"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1652\/revisions"}],"predecessor-version":[{"id":3772,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1652\/revisions\/3772"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=1652"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=1652"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=1652"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}