{"id":18375,"date":"2023-11-24T07:25:59","date_gmt":"2023-11-24T07:25:59","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18375"},"modified":"2023-11-24T07:25:59","modified_gmt":"2023-11-24T07:25:59","slug":"ifconfig-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/","title":{"rendered":"ifconfig Command in Linux with Examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg\" alt=\"\" \/><br \/>\nLinux users frequently interact with the command line interface to manage network configurations. Among the many indispensable networking tools available, &#8216;ifconfig&#8217; stands out as a powerful utility for configuring and displaying network interface parameters. Whether you&#8217;re a beginner or an experienced user, mastering &#8216;ifconfig&#8217; can significantly enhance your ability to manage network interfaces efficiently.<\/p>\n<p>This comprehensive guide aims to delve into the &#8216;ifconfig&#8217; command, covering its functionalities, practical usage scenarios, and a variety of examples to assist users in understanding its versatility in Linux environments.<\/p>\n<h2>What is &#8216;ifconfig&#8217; in Linux?<\/h2>\n<p>&#8216;ifconfig&#8217; is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems. It provides a comprehensive display of network-related information, including IP addresses, MAC addresses, netmasks, and more.<\/p>\n<h3>Syntax of ifconfig Command in Linux:<\/h3>\n<pre><code>ifconfig [...OPTIONS] [INTERFACE]<\/code><\/pre>\n<h3>Basic Usage: Displaying Network Interface Information<\/h3>\n<p>To view information about all active network interfaces on your system, simply open the terminal and type:<\/p>\n<pre><code>ifconfig<\/code><\/pre>\n<p>This command will output details for all active interfaces, including their names, IP addresses, MAC addresses, and additional configuration parameters.<\/p>\n<p><strong>Example 1:<\/strong> Displaying Specific Interface Information<\/p>\n<p>Suppose you want detailed information about a particular interface, say &#8216;eth0&#8217;. You can use the following command:<\/p>\n<pre><code>ifconfig eth0<\/code><\/pre>\n<p>This command will specifically display the details related to the &#8216;eth0&#8217; network interface, providing information such as IP address, netmask, broadcast address, and more.<\/p>\n<p><strong>Configuring Network Interfaces<\/strong><br \/>\n&#8216;ifconfig&#8217; also enables users to configure network interfaces with specific parameters. For instance, to assign an IP address to a network interface, you can use the following command:<\/p>\n<pre><code>sudo ifconfig eth0  netmask <\/code><\/pre>\n<p>Replace  and  with the IP address and netmask you want to assign to the &#8216;eth0&#8217; interface, respectively. Please note that using &#8216;sudo&#8217; might be necessary to execute this command with administrative privileges.<\/p>\n<p><strong>Example 2: Assigning an IP Address<\/strong><br \/>\nLet&#8217;s say you want to assign the IP address &#8216;192.168.1.10&#8217; with a netmask of &#8216;255.255.255.0&#8217; to the &#8216;eth0&#8217; interface. You can accomplish this by executing:<\/p>\n<pre><code>sudo ifconfig eth0 192.168.1.10 netmask 255.255.255.0<\/code><\/pre>\n<p><strong>Conclusion:<\/strong><br \/>\nThe &#8216;ifconfig&#8217; command remains a fundamental tool for managing network interfaces in Linux, providing users with the ability to retrieve vital network information and configure interfaces as needed. While &#8216;ifconfig&#8217; has been widely used for years, it&#8217;s important to note that newer versions of Linux distributions are transitioning towards the &#8216;ip&#8217; command for networking tasks. Nevertheless, understanding &#8216;ifconfig&#8217; is still valuable for maintaining and troubleshooting networks, making it an essential command-line utility for Linux users.<\/p>\n<p>By exploring the various functionalities and examples provided in this guide, users can leverage &#8216;ifconfig&#8217; effectively, gaining better control over their network configurations within the Linux environment.<\/p>\n<h2>FAQ related to ifconfig command in linux with examples<\/h2>\n<p>Here are some Related to ifconfig command in linux with examples.<\/p>\n<p><strong>1. What is the &#8216;ifconfig&#8217; command in Linux?<\/strong><br \/>\n&#8216;ifconfig&#8217; is a command-line utility used in Unix-like operating systems, including Linux, to configure and display information about network interfaces on a system. It allows users to view, configure, and manipulate network interface parameters such as IP addresses, netmasks, broadcast addresses, and more.<\/p>\n<p><strong>2. How do I use &#8216;ifconfig&#8217; to display network interface information?<\/strong><br \/>\nTo display information about all active network interfaces, simply type &#8216;ifconfig&#8217; in the terminal without any arguments. This command will output details such as interface names, IP addresses, MAC addresses, and other relevant network settings.<\/p>\n<p><strong>3. How can I configure a network interface using &#8216;ifconfig&#8217;?<\/strong><br \/>\nTo configure a network interface with specific parameters, such as setting an IP address or changing the netmask, you can use commands like &#8216;ifconfig eth0  netmask &#8216;. However, note that &#8216;ifconfig&#8217; is being gradually deprecated in favor of the &#8216;ip&#8217; command, especially in newer Linux distributions.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Linux users frequently interact with the command line interface to manage network configurations. Among the many indispensable networking tools available, &#8216;ifconfig&#8217; stands out as a powerful utility for configuring and displaying network interface parameters. Whether you&#8217;re a beginner or an experienced user, mastering &#8216;ifconfig&#8217; can significantly enhance your ability to manage network interfaces efficiently. This [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[230],"tags":[],"class_list":["post-18375","post","type-post","status-publish","format-standard","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ifconfig Command in Linux with Examples<\/title>\n<meta name=\"description\" content=\"\u2018ifconfig\u2019 is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ifconfig Command in Linux with Examples\" \/>\n<meta property=\"og:description\" content=\"\u2018ifconfig\u2019 is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-24T07:25:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"ifconfig Command in Linux with Examples\",\"datePublished\":\"2023-11-24T07:25:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\"},\"wordCount\":590,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\",\"name\":\"ifconfig Command in Linux with Examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg\",\"datePublished\":\"2023-11-24T07:25:59+00:00\",\"description\":\"\u2018ifconfig\u2019 is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ifconfig Command in Linux with Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ifconfig Command in Linux with Examples","description":"\u2018ifconfig\u2019 is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems.","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:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"ifconfig Command in Linux with Examples","og_description":"\u2018ifconfig\u2019 is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems.","og_url":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-24T07:25:59+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"ifconfig Command in Linux with Examples","datePublished":"2023-11-24T07:25:59+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/"},"wordCount":590,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/","url":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/","name":"ifconfig Command in Linux with Examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg","datePublished":"2023-11-24T07:25:59+00:00","description":"\u2018ifconfig\u2019 is a command-line tool primarily used to configure, view, and troubleshoot network interfaces on Linux systems.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700810719835-ifconfig%20Command%20in%20Linux%20with%20Examples.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/ifconfig-command-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/prepbytes.com\/blog\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"ifconfig Command in Linux with Examples"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18375","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=18375"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18375\/revisions"}],"predecessor-version":[{"id":18376,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18375\/revisions\/18376"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18375"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18375"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18375"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}