{"id":17378,"date":"2026-02-11T11:02:13","date_gmt":"2026-02-11T05:32:13","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=17378"},"modified":"2026-02-11T11:02:26","modified_gmt":"2026-02-11T05:32:26","slug":"netstat-command-in-linux","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/netstat-command-in-linux","title":{"rendered":"Netstat Command in Linux Explained With Examples in 2026"},"content":{"rendered":"\n<p><strong>The netstat command in Linux<\/strong> displays active network connections, listening ports, interface statistics, routing tables, and protocol metrics. It\u2019s a diagnostic tool that helps you see which services are bound to which ports, who is connected, and how traffic flows across your system useful for troubleshooting, security audits, and performance tuning.<\/p>\n\n\n\n<p>If you\u2019ve ever needed a quick, clear view of what\u2019s happening on your Linux network stack, the netstat command in Linux is a classic go to. In this guide, I\u2019ll explain netstat in simple terms, show practical examples you can copy paste, and share real world tips from managing production servers and hosting environments.<\/p>\n\n\n\n<p>We\u2019ll cover installation, essential options, how to read outputs, and when to use netstat versus the modern ss command. Whether you manage a VPS, dedicated server, or a local workstation, the steps below will help you solve problems fast and safely.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-the-netstat-command-in-linux\">What is the Netstat Command in Linux?<\/h2>\n\n\n\n<p>netstat (network statistics) is a command line tool from the net tools package. It shows sockets (TCP\/UDP), the processes using them, listening ports, routing information, and interface stats. While netstat is considered legacy and replaced by tools like ss and ip, it remains widely used and available on many servers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"install-netstat-on-popular-linux-distributions\">Install Netstat on Popular Linux Distributions<\/h2>\n\n\n\n<p>netstat is part of net tools. If you see \u201ccommand not found,\u201d install it using your package manager.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Debian\/Ubuntu\nsudo apt update &amp;&amp; sudo apt install -y net-tools\n\n# RHEL\/CentOS\/AlmaLinux\/Rocky\nsudo yum install -y net-tools\n# or\nsudo dnf install -y net-tools\n\n# Fedora\nsudo dnf install -y net-tools\n\n# openSUSE\nsudo zypper install -y net-tools<\/code><\/pre>\n\n\n\n<p>On newer distributions, ss provides similar and often faster functionality. Still, netstat remains handy for quick checks and legacy scripts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"basic-syntax-and-common-options\">Basic Syntax and Common Options<\/h2>\n\n\n\n<p><strong>Basic usage pattern:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat &#91;options]<\/code><\/pre>\n\n\n\n<p><strong>Useful options you\u2019ll use often:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>-t:<\/strong> TCP sockets<\/li>\n\n\n\n<li><strong>-u:<\/strong> UDP sockets<\/li>\n\n\n\n<li><strong>-l:<\/strong> Listening sockets<\/li>\n\n\n\n<li><strong>-n:<\/strong> Show numeric addresses\/ports (skip DNS)<\/li>\n\n\n\n<li><strong>-p:<\/strong> Show PID\/program name (use sudo)<\/li>\n\n\n\n<li><strong>-a:<\/strong> All sockets (listening + non listening)<\/li>\n\n\n\n<li><strong>-r:<\/strong> Routing table (use -rn for numeric)<\/li>\n\n\n\n<li><strong>-i:<\/strong> Interface statistics<\/li>\n\n\n\n<li><strong>-s: <\/strong>Per-protocol statistics<\/li>\n\n\n\n<li><strong>-c:<\/strong> Continuous output (repeat every second)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"netstat-command-in-linux-practical-examples\">Netstat Command in Linux: Practical Examples<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"1-show-all-listening-ports-tcp-and-udp\">1) Show All Listening Ports (TCP and UDP)<\/h3>\n\n\n\n<p>See which services are listening and on which ports. Add sudo to show the owning process.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -tulnp<\/code><\/pre>\n\n\n\n<p><strong>What to look for:<\/strong> The Local Address column shows IP:Port <strong>(0.0.0.0 means all IPv4 interfaces; ::: means all IPv6)<\/strong>. The PID\/Program name confirms which service owns the port.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"2-find-which-process-is-using-a-specific-port\">2) Find Which Process Is Using a Specific Port<\/h3>\n\n\n\n<p>When a service won\u2019t start because the port is already in use, identify the culprit quickly.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -tulnp | grep ':80'<\/code><\/pre>\n\n\n\n<p>Replace 80 with your target port (e.g., 443, 3306, 6379). Stop or reconfigure the conflicting service.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"3-list-all-active-connections-established-time-wait-etc\">3) List All Active Connections (Established, Time Wait, etc.)<\/h3>\n\n\n\n<p>Get a complete picture of current socket states to diagnose traffic surges or slowdowns.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -anp<\/code><\/pre>\n\n\n\n<p><strong>Filter to established TCP sessions:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -ant | grep ESTABLISHED<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"4-watch-connections-in-real-time\">4) Watch Connections in Real Time<\/h3>\n\n\n\n<p>Use -c to refresh continuously. Useful during traffic spikes or after deploying firewall rules.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -tulnp -c<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"5-show-the-routing-table\">5) Show the Routing Table<\/h3>\n\n\n\n<p>Confirm gateways, subnets, and routes when debugging <a href=\"https:\/\/www.youstable.com\/blog\/troubleshoot-network-connectivity-issues\/\">connectivity between networks<\/a> or VPCs.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -rn<\/code><\/pre>\n\n\n\n<p>-r shows routes, -n prevents DNS lookups for speed and clarity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"6-interface-statistics-errors-drops-mtu\">6) Interface Statistics (Errors, Drops, MTU)<\/h3>\n\n\n\n<p>Identify problematic NICs by checking input\/output errors and dropped packets.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -i<\/code><\/pre>\n\n\n\n<p>For extended stats on many distros, use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -ie<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"7-protocol-level-statistics-tcp-udp-icmp\">7) Protocol Level Statistics (TCP, UDP, ICMP)<\/h3>\n\n\n\n<p>Spot retransmissions, failed connections, or UDP issues impacting <a href=\"https:\/\/www.youstable.com\/blog\/best-application-performance-monitoring-tools\/\">application performance<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -s<\/code><\/pre>\n\n\n\n<p><strong>Combine with grep to isolate a protocol:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netstat -s | grep -i tcp -A 10<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"8-show-unix-domain-sockets\">8) Show UNIX Domain Sockets<\/h3>\n\n\n\n<p>Many services communicate locally via UNIX sockets (e.g., Docker, systemd, databases).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -ax --unix<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"9-display-the-program-name-owning-each-socket\">9) Display the Program Name Owning Each Socket<\/h3>\n\n\n\n<p>Attach connections to processes for faster diagnostics. Requires root privileges.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -plant<\/code><\/pre>\n\n\n\n<p>-p shows PID\/Program, -l listens, -a all, -n numeric, -t TCP. Adjust to your needs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"10-continuous-port-monitoring-during-troubleshooting\">10) Continuous Port Monitoring During Troubleshooting<\/h3>\n\n\n\n<p>Track port binds after starting a service to ensure it actually listens on the right interface.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo netstat -tulnp -c | grep -E '(:80|:443)'<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-to-read-netstat-output-columns-explained\">How to Read netstat Output (Columns Explained)<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Proto:<\/strong> Protocol (tcp, udp, unix)<\/li>\n\n\n\n<li><strong>Recv-Q\/Send-Q: <\/strong>Bytes queued to receive\/send (non-zero may indicate congestion)<\/li>\n\n\n\n<li><strong>Local Address:<\/strong> IP and port on your machine<\/li>\n\n\n\n<li><strong>Foreign Address:<\/strong> Remote IP and port<\/li>\n\n\n\n<li><strong>State:<\/strong> Connection state (LISTEN, ESTABLISHED, TIME_WAIT, SYN_SENT, etc.)<\/li>\n\n\n\n<li><strong>PID\/Program name: <\/strong>Owning process (requires sudo -p)<\/li>\n<\/ul>\n\n\n\n<p>Always use -n to avoid reverse DNS lookups that slow down output and clutter results with hostnames.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"netstat-vs-ss-which-should-you-use\">netstat vs ss: Which Should You Use?<\/h2>\n\n\n\n<p>The ss command from iproute2 is the modern replacement with faster, more detailed output. However, netstat remains helpful for legacy servers and quick checks. Here\u2019s a practical comparison:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Speed and scale: <\/strong>ss is faster on busy hosts.<\/li>\n\n\n\n<li><strong>Detail: <\/strong>ss exposes more TCP metrics and filters.<\/li>\n\n\n\n<li><strong>Availability: <\/strong>netstat may not be installed by default; ss usually is.<\/li>\n\n\n\n<li><strong>Familiarity:<\/strong> netstat syntax is widely known; many guides and scripts still rely on it.<\/li>\n<\/ul>\n\n\n\n<p><strong>Equivalent examples with ss:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Listening ports with processes\nsudo ss -tulnp\n\n# Established TCP\nss -ant state established\n\n# Who uses port 3306?\nsudo ss -ltnp sport = :3306<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"real-world-use-cases-from-hosting-and-devops\">Real World Use Cases (From Hosting and DevOps)<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Web server isn\u2019t responding:<\/strong> Confirm Nginx\/Apache is listening on 0.0.0.0:80\/443 and not just 127.0.0.1.<\/li>\n\n\n\n<li><strong>Port conflict:<\/strong> Identify which legacy service is holding port 25 or 8080 and stop\/replace it.<\/li>\n\n\n\n<li><strong>Database connectivity: <\/strong>Check if MySQL\/MariaDB listens on 3306 and which IPs can reach it.<\/li>\n\n\n\n<li><strong>Firewall hardening: <\/strong>List all listening ports and close anything unnecessary.<\/li>\n\n\n\n<li><strong>Traffic surge analysis:<\/strong> Count ESTABLISHED connections to spot DDoS patterns or sudden client spikes.<\/li>\n\n\n\n<li><strong>Routing issues:<\/strong> Verify default gateway and route specificity with netstat -rn.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"security-and-privacy-considerations\">Security and Privacy Considerations<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run with sudo only when required (e.g., -p for process names).<\/li>\n\n\n\n<li>Limit who can view process to port mappings on multi user systems.<\/li>\n\n\n\n<li>Use -n to avoid DNS lookups that can accidentally leak queries.<\/li>\n\n\n\n<li>Regularly audit listening ports and disable unneeded services.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"troubleshooting-tips-from-production\">Troubleshooting Tips from Production<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If netstat hangs, add -n to bypass DNS and speed up output.<\/li>\n\n\n\n<li>Combine with grep, <a href=\"https:\/\/www.youstable.com\/blog\/awk-command\">awk<\/a>, or wc for quick analytics:<\/li>\n\n\n\n<li>Check both IPv4 and IPv6; services may listen on ::: only.<\/li>\n\n\n\n<li>When a service binds to localhost only (127.0.0.1), update its config to listen on the public IP or 0.0.0.0\/::.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"is-netstat-deprecated-alternatives-you-should-know\">Is netstat Deprecated? Alternatives You Should Know<\/h2>\n\n\n\n<p>Yes, netstat (net-tools) is considered legacy. The recommended replacements are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>ss for sockets and connections<\/li>\n\n\n\n<li>ip for addresses, routes, and interfaces<\/li>\n\n\n\n<li>nmcli or systemd networkd for network management<\/li>\n<\/ul>\n\n\n\n<p>Even so, netstat remains common in documentation and on long lived servers. Learn netstat for compatibility, and ss\/ip for modern workflows.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"how-we-use-netstat-at-youstable\">How We Use netstat at YouStable<\/h2>\n\n\n\n<p>At <strong><a href=\"https:\/\/www.youstable.com\/\">YouStable<\/a><\/strong>, our Linux engineers regularly use netstat and ss to audit open ports, validate firewall policies, and troubleshoot customer workloads on VPS and Dedicated Servers. If you prefer not to manage low level networking, our managed hosting plans include 24\/7 help with connectivity, security hardening, and performance tuning.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\">FAQs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1768201765820\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"what-does-netstat-do-in-linux\">What does netstat do in Linux?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>netstat shows network connections, listening ports, routing tables, and protocol statistics. It helps diagnose connectivity issues, identify which processes own sockets, and audit open services.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768201773738\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-check-open-ports-in-linux-with-netstat\">How do I check open ports in Linux with netstat?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Run: sudo netstat -tulnp. This lists TCP\/UDP ports in LISTEN state along with the PID\/Program. Use grep to filter by a specific port, such as :80 or :3306.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768201781852\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"why-is-netstat-not-found-on-my-server\">Why is netstat not found on my server?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Many modern distros no longer install net tools by default. Install it with your package manager (e.g., sudo apt install net-tools) or use the ss command as a faster alternative.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768201788264\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"whats-the-difference-between-netstat-and-ss\">What\u2019s the difference between netstat and ss?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>ss is newer, faster, and offers richer filtering and statistics. netstat is older but still widely used. For high traffic servers, ss usually performs better and is the recommended choice.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1768201795227\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-can-i-see-which-process-is-using-a-port\">How can I see which process is using a port?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use: sudo netstat -tulnp | grep &#8216;:PORT&#8217;. The PID\/Program name column shows the owning process. You can then manage it with systemctl, kill, or by editing the service configuration.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p><strong>The netstat command in Linux<\/strong> remains a reliable way to inspect connections, verify listening services, and troubleshoot routing or interface issues. For modern performance and filtering, pair it with ss and ip. Running applications on a <strong><a href=\"https:\/\/www.youstable.com\/\">VPS or Dedicated Server<\/a><\/strong>? YouStable\u2019s experts can help you harden, monitor, and optimize your network stack 24\/7.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The netstat command in Linux displays active network connections, listening ports, interface statistics, routing tables, and protocol metrics. It\u2019s a [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":18602,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-17378","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/Netstat-Command-in-Linux.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17378","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=17378"}],"version-history":[{"count":7,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17378\/revisions"}],"predecessor-version":[{"id":18604,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17378\/revisions\/18604"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/18602"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=17378"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=17378"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=17378"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}