{"id":78508,"date":"2025-09-16T17:02:29","date_gmt":"2025-09-16T17:02:29","guid":{"rendered":"http:\/\/bangla.sitestree.com\/?p=78508"},"modified":"2025-09-16T17:02:30","modified_gmt":"2025-09-16T17:02:30","slug":"ipv6-addresses-in-ipconfig-command-in-windows","status":"publish","type":"post","link":"http:\/\/bangla.sitestree.com\/?p=78508","title":{"rendered":"IPV6 Addresses in ipconfig command in Windows"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p>REF: AI Tools\/OpenAI\/ChatGPT<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"716\" height=\"386\" src=\"https:\/\/i0.wp.com\/bangla.sitestree.com\/wp-content\/uploads\/2025\/09\/image-10.png?resize=716%2C386\" alt=\"\" class=\"wp-image-78509\" srcset=\"https:\/\/i0.wp.com\/bangla.sitestree.com\/wp-content\/uploads\/2025\/09\/image-10.png?w=716 716w, https:\/\/i0.wp.com\/bangla.sitestree.com\/wp-content\/uploads\/2025\/09\/image-10.png?resize=300%2C162 300w\" sizes=\"auto, (max-width: 716px) 100vw, 716px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Understanding IPv6 Addresses: Link-Local, Regular, and Temporary<\/h1>\n\n\n\n<p>When you run the <code>ipconfig<\/code> command in Windows, you might notice that your network adapter lists not one but <strong>three different IPv6 addresses<\/strong>. These are the <strong>link-local address<\/strong>, a <strong>regular IPv6 address<\/strong>, and a <strong>temporary IPv6 address<\/strong>. Let\u2019s break down what each one means, why they exist, and how they work together.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">1. Link-Local IPv6 Address<\/h2>\n\n\n\n<p><strong>Format:<\/strong> Always begins with <code>fe80::\/10<\/code> (so it starts with <code>fe80<\/code>, <code>fe81<\/code>, \u2026 up to <code>febf<\/code>).<\/p>\n\n\n\n<p><strong>Scope:<\/strong> Only valid on the local link (LAN segment). It cannot be routed to the internet.<\/p>\n\n\n\n<p><strong>Purpose:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Every IPv6-enabled interface automatically generates a link-local address.<\/li>\n\n\n\n<li>It is essential for core IPv6 operations like neighbor discovery, router advertisements, and auto-configuration.<\/li>\n\n\n\n<li>Devices use it to talk to other nodes on the same physical or wireless segment, even if no router or ISP is present.<\/li>\n<\/ul>\n\n\n\n<p><strong>Windows Zone Index (<code>%<\/code> number):<\/strong><br>On Windows, a link-local address is often followed by something like <code>%12<\/code>. This is called a <strong>zone index<\/strong> (or interface index). It tells the system which network adapter the address belongs to because multiple interfaces can all have link-local addresses that start with <code>fe80::...<\/code>.<\/p>\n\n\n\n<p>You can see interface indexes with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>netsh interface ipv6 show interface\n<\/code><\/pre>\n\n\n\n<p>If you want to ping a link-local address, you must include the zone index, for example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ping fe80::1a2b:3c4d:5e6f%12\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">2. Regular (Stable) IPv6 Address<\/h2>\n\n\n\n<p><strong>Format:<\/strong> Typically a global unicast address starting with <code>2000::\/3<\/code> (such as <code>2001:...<\/code>).<\/p>\n\n\n\n<p><strong>Scope:<\/strong> Globally routable across the internet.<\/p>\n\n\n\n<p><strong>Purpose:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Assigned by your ISP, router, or configured manually.<\/li>\n\n\n\n<li>Serves as the <strong>main identity<\/strong> of your device on the IPv6 network.<\/li>\n\n\n\n<li>Other devices and servers can reach you at this address, provided no firewall blocks the traffic.<\/li>\n<\/ul>\n\n\n\n<p>This is the \u201cpermanent\u201d IPv6 address that stays consistent on a given network unless manually changed or reassigned.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">3. Temporary IPv6 Address<\/h2>\n\n\n\n<p><strong>Format:<\/strong> Looks like a regular global IPv6 address (<code>2001:...<\/code>), but with a <strong>randomized interface ID<\/strong>.<\/p>\n\n\n\n<p><strong>Why Temporary?<\/strong><br>Normally, the stable IPv6 address can reveal information about your device, since part of it may be derived from the hardware MAC address. This makes it easy for websites or trackers to link all your activity to one consistent address.<\/p>\n\n\n\n<p>To solve this, IPv6 introduced <strong>Privacy Extensions (RFC 4941)<\/strong>. With privacy extensions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your device generates <strong>temporary, random IPv6 addresses<\/strong>.<\/li>\n\n\n\n<li>These addresses are valid only for a limited time (hours or days).<\/li>\n\n\n\n<li>They rotate periodically to prevent long-term tracking.<\/li>\n\n\n\n<li>Temporary addresses are used mostly for <strong>outbound traffic<\/strong>, like browsing the web.<\/li>\n\n\n\n<li>Your stable IPv6 address is still present and used for inbound connections if you\u2019re running a server or need to be reachable.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Example from <code>ipconfig<\/code><\/h2>\n\n\n\n<p>Here\u2019s what a typical Windows output looks like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Ethernet adapter Ethernet:\n\n   Link-local IPv6 Address . . . : fe80::1a2b:3c4d:5e6f%14\n   Temporary IPv6 Address . . .  : 2001:0db8:85a3:9d3::1234\n   IPv6 Address . . . . . . . .  : 2001:0db8:85a3:9d3::5678\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Link-local (<code>fe80::...%14<\/code>)<\/strong> \u2192 Always present, only for LAN communication.<\/li>\n\n\n\n<li><strong>Temporary (<code>2001:...::1234<\/code>)<\/strong> \u2192 Randomized, used for privacy in outbound connections.<\/li>\n\n\n\n<li><strong>Regular (<code>2001:...::5678<\/code>)<\/strong> \u2192 Stable, long-term identity on the IPv6 network.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>Every IPv6-enabled device typically carries three types of addresses at the same time:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Link-local<\/strong> (<code>fe80::\/10<\/code>) \u2192 Always there, LAN-only, required for IPv6 operations.<\/li>\n\n\n\n<li><strong>Regular (stable)<\/strong> \u2192 Globally routable, your main IPv6 identity.<\/li>\n\n\n\n<li><strong>Temporary<\/strong> \u2192 Randomized, short-lived, used for outgoing connections to protect privacy.<\/li>\n<\/ul>\n\n\n\n<p>This design gives IPv6 a balance of <strong>functionality, global connectivity, and privacy protection<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u2728 With this knowledge, the next time you run <code>ipconfig<\/code>, you\u2019ll understand why multiple IPv6 addresses appear \u2014 and how each plays a different role in keeping your device connected and secure.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><\/p>\n\n\n\n<p>Got it \u2705 Here\u2019s a <strong>blog-post ready, copyright-free article<\/strong> that combines everything I explained to you about IPv6 addresses \u2014 link-local, temporary, and regular \u2014 along with details like the <code>%<\/code> zone index.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>REF: AI Tools\/OpenAI\/ChatGPT Understanding IPv6 Addresses: Link-Local, Regular, and Temporary When you run the ipconfig command in Windows, you might notice that your network adapter lists not one but three different IPv6 addresses. These are the link-local address, a regular IPv6 address, and a temporary IPv6 address. Let\u2019s break down what each one means, why &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"http:\/\/bangla.sitestree.com\/?p=78508\">Continue reading<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1978],"tags":[],"class_list":["post-78508","post","type-post","status-publish","format-standard","hentry","category-computer-networks","item-wrap"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":78439,"url":"http:\/\/bangla.sitestree.com\/?p=78439","url_meta":{"origin":78508,"position":0},"title":"Basic Commands for Networking in Linux","author":"Sayed","date":"August 30, 2025","format":false,"excerpt":"IPV4 Address: 32-bit 192.168.2.34-- IPv6 address : 128 bit : 8 groups of 4 hex digits 3ffe:1900:fe21:4545:0000:0000:0000:0000--- IPV6 Format (From AI Tools\/OpenAI\/ChatGPT) ifconfig command output: to know your network interface configurations. ifconfig Explain the output of the Linux Command (From AI Tools\/OpenAI\/ChatGPT\/Interney)ifconfig instead of ifconfig you can use ip address\u2026","rel":"","context":"In &quot;Computer Networks&quot;","block_context":{"text":"Computer Networks","link":"http:\/\/bangla.sitestree.com\/?cat=1978"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":24099,"url":"http:\/\/bangla.sitestree.com\/?p=24099","url_meta":{"origin":78508,"position":1},"title":"27 :: CCNA R&amp;S Exam Course :: IPv6 #Root","author":"Author-Check- Article-or-Video","date":"April 5, 2021","format":false,"excerpt":"From: http:\/\/sitestree.com\/?p=3079 Categories:RootTags: Post Data:2015-10-27 04:41:48 Shop Online: https:\/\/www.ShopForSoul.com\/ (Big Data, Cloud, Security, Machine Learning): Courses: http:\/\/Training.SitesTree.com In Bengali: http:\/\/Bangla.SaLearningSchool.com http:\/\/SitesTree.com 8112223 Canada Inc.\/JustEtc: http:\/\/JustEtc.net (Software\/Web\/Mobile\/Big-Data\/Machine Learning) Shop Online: https:\/\/www.ShopForSoul.com\/ Medium: https:\/\/medium.com\/@SayedAhmedCanada","rel":"","context":"In &quot;FromSitesTree.com&quot;","block_context":{"text":"FromSitesTree.com","link":"http:\/\/bangla.sitestree.com\/?cat=1917"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":78482,"url":"http:\/\/bangla.sitestree.com\/?p=78482","url_meta":{"origin":78508,"position":2},"title":"Understanding DNS on the Internet: Generic, Country, and Inverse Domains","author":"Sayed","date":"September 13, 2025","format":false,"excerpt":"Ref: AI Tools\/OpenAI\/ChatGPT Got it \ud83d\udc4d \u2014 here\u2019s a blog-ready, copyright-free article explaining DNS on the Internet, including generic domains, country domains, and the inverse domain. Understanding DNS on the Internet: Generic, Country, and Inverse Domains The Domain Name System (DNS) is often called the \u201cphonebook of the Internet.\u201d It\u2026","rel":"","context":"In &quot;Computer Networks&quot;","block_context":{"text":"Computer Networks","link":"http:\/\/bangla.sitestree.com\/?cat=1978"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/bangla.sitestree.com\/wp-content\/uploads\/2025\/09\/image-7.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":78485,"url":"http:\/\/bangla.sitestree.com\/?p=78485","url_meta":{"origin":78508,"position":3},"title":"How an IP Address Gets Resolved to a Name in DNS","author":"Sayed","date":"September 13, 2025","format":false,"excerpt":"REF: AI Tools\/OpenAI\/ChatGPT Great question \ud83d\udc4d \u2014 let\u2019s turn this into a blog-ready, copyright-free post explaining step by step how an IP address gets resolved to a name (reverse lookup) and how the DNS servers, root servers, and TLD servers take part. How an IP Address Gets Resolved to a\u2026","rel":"","context":"In &quot;Computer Networks&quot;","block_context":{"text":"Computer Networks","link":"http:\/\/bangla.sitestree.com\/?cat=1978"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/bangla.sitestree.com\/wp-content\/uploads\/2025\/09\/image-8.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":9204,"url":"http:\/\/bangla.sitestree.com\/?p=9204","url_meta":{"origin":78508,"position":4},"title":"\u09a1\u09c7\u099f\u09be \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8 \u0993 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09a8\u09c7\u099f\u0993\u09af\u09bc\u09be\u09b0\u09cd\u0995 : \u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09b2\u09c7\u09df\u09be\u09b0 : \u09ad\u09c2\u09ae\u09bf\u0995\u09be (DCN &#8211; Network Layer Introduction)","author":"Author-Check- Article-or-Video","date":"June 9, 2015","format":false,"excerpt":"\u09b0\u09bf\u09a6\u0993\u09df\u09be\u09a8 \u09ac\u09bf\u09a8 \u09b6\u09be\u09ae\u09c0\u09ae \u00a0 \u0993\u098f\u09b8\u0986\u0987 \u09ae\u09a1\u09c7\u09b2\u09c7\u09b0 \u09b2\u09c7\u09df\u09be\u09b0-\u09e9 \u0995\u09c7 \u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09b2\u09c7\u09df\u09be\u09b0 \u09ac\u09b2\u09be \u09b9\u09df, \u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09b2\u09c7\u09df\u09be\u09b0 \u09b9\u09cb\u09b7\u09cd\u099f \u0993 \u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u098f\u09a1\u09cd\u09b0\u09c7\u09b8\u09bf\u0982 \u09b8\u0982\u0995\u09cd\u09b0\u09be\u09a8\u09cd\u09a4 \u09ac\u09bf\u09b7\u09df, \u09b8\u09be\u09ac\u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09ac\u09cd\u09af\u09ac\u09b8\u09cd\u09a5\u09be\u09aa\u09a8\u09be \u0993 \u0987\u09a8\u09cd\u099f\u09be\u09b0\u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995\u09bf\u0982 \u09a8\u09bf\u09df\u09a8\u09cd\u09a4\u09cd\u09b0\u09a3 \u0995\u09b0\u09c7 \u09a5\u09be\u0995\u09c7\u0964 \u09b8\u09be\u09ac\u09a8\u09c7\u099f\u09c7\u09b0 \u0986\u0993\u09a4\u09be\u09df \u09ac\u09be \u09ac\u09be\u0987\u09b0\u09c7 \u09b8\u09cb\u09b0\u09cd\u09b8 \u09a5\u09c7\u0995\u09c7 \u09b2\u0995\u09cd\u09b7\u09cd\u09af\u09c7 \u09aa\u09cd\u09af\u09be\u0995\u09c7\u099f \u09aa\u09cc\u0981\u099b\u09c7 \u09a6\u09c7\u09df\u09be \u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09b2\u09c7\u09df\u09be\u09b0\u09c7\u09b0 \u09a6\u09be\u09df\u09bf\u09a4\u09cd\u09ac\u0964 \u09a6\u09c1\u099f\u09bf \u09ad\u09bf\u09a8\u09cd\u09a8 \u09b8\u09be\u09ac\u09a8\u09c7\u099f\u09c7\u09b0 \u09ad\u09bf\u09a8\u09cd\u09a8 \u098f\u09a1\u09cd\u09b0\u09c7\u09b8\u09bf\u0982 \u09b8\u09cd\u0995\u09bf\u09ae \u09ac\u09be \u0985\u09b8\u09ae\u09cd\u09aa\u09c3\u0995\u09cd\u09a4 \u098f\u09a1\u09cd\u09b0\u09c7\u09b8\u09bf\u0982 \u099f\u09be\u0987\u09aa\u2026","rel":"","context":"In &quot;\u09a1\u09c7\u099f\u09be \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8 \u0993 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09a8\u09c7\u099f\u0993\u09af\u09bc\u09be\u09b0\u09cd\u0995&quot;","block_context":{"text":"\u09a1\u09c7\u099f\u09be \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8 \u0993 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09a8\u09c7\u099f\u0993\u09af\u09bc\u09be\u09b0\u09cd\u0995","link":"http:\/\/bangla.sitestree.com\/?cat=896"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":9335,"url":"http:\/\/bangla.sitestree.com\/?p=9335","url_meta":{"origin":78508,"position":5},"title":"\u09a1\u09c7\u099f\u09be \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8 \u0993 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09a8\u09c7\u099f\u0993\u09af\u09bc\u09be\u09b0\u09cd\u0995 :  \u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09b2\u09c7\u09df\u09be\u09b0 \u09aa\u09cd\u09b0\u099f\u09cb\u0995\u09b2 (DCN &#8211; Network Layer Protocols)","author":"Author-Check- Article-or-Video","date":"June 9, 2015","format":false,"excerpt":"\u09b0\u09bf\u09a6\u0993\u09df\u09be\u09a8 \u09ac\u09bf\u09a8 \u09b6\u09be\u09ae\u09c0\u09ae \u00a0 \u09b8\u09ac \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0\u09c7\u09b0\u0987 \u098f\u0995\u099f\u09bf \u0986\u0987\u09aa\u09bf \u098f\u09a1\u09cd\u09b0\u09c7\u09b8 \u09a5\u09be\u0995\u09c7 \u09af\u09be\u09b0 \u09ae\u09be\u09a7\u09cd\u09af\u09ae\u09c7 \u09b8\u09cd\u09ac\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09ad\u09be\u09ac\u09c7 \u09b6\u09a8\u09be\u0995\u09cd\u09a4 \u0995\u09b0\u09be \u09af\u09be\u09df\u0964 \u0986\u0987\u09aa\u09bf \u098f\u09a1\u09cd\u09b0\u09c7\u09b8 \u09b2\u09c7\u09df\u09be\u09b0-\u09e9(\u09a8\u09c7\u099f\u0993\u09df\u09be\u09b0\u09cd\u0995 \u09b2\u09c7\u09df\u09be\u09b0) \u09b2\u099c\u09bf\u0995\u09be\u09b2 \u098f\u09a1\u09cd\u09b0\u09c7\u09b8\u0964 \u09aa\u09cd\u09b0\u09a4\u09bf\u09ac\u09be\u09b0 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09b0\u09bf\u09b8\u09cd\u099f\u09be\u09b0\u09cd\u099f \u0995\u09b0\u09be\u09b0 \u09b8\u09ae\u09df \u098f\u0987 \u0986\u0987\u09aa\u09bf \u098f\u09a1\u09cd\u09b0\u09c7\u09b8 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09bf\u09a4 \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7\u0964 \u00a0 \u098f\u09a1\u09cd\u09b0\u09c7\u09b8 \u09b0\u09c7\u09b8\u09cb\u09b2\u09bf\u0989\u09b6\u09a8 \u09aa\u09cd\u09b0\u099f\u09cb\u0995\u09b2 \u09af\u09cb\u0997\u09be\u09af\u09cb\u0997\u09c7\u09b0 \u09b8\u09ae\u09df \u09b9\u09cb\u09b7\u09cd\u099f\u09c7\u09b0 \u0985\u09ad\u09c0\u09b7\u09cd\u099f \u09ae\u09c7\u09b6\u09bf\u09a8\u09c7\u09b0 \u09b2\u09c7\u09df\u09be\u09b0-\u09e8(\u098f\u09ae\u098f\u0995\u09c7 ) \u098f\u09a1\u09cd\u09b0\u09c7\u09b8 \u09aa\u09cd\u09b0\u09df\u09cb\u099c\u09a8 \u09b9\u09df, \u098f\u09ae\u098f\u0995\u09c7 \u098f\u09a1\u09cd\u09b0\u09c7\u09b8\u0995\u09c7 \u09ac\u09b8\u09cd\u09a4\u09c1\u0997\u09a4\u09ad\u09be\u09ac\u09c7\u2026","rel":"","context":"In &quot;\u09a1\u09c7\u099f\u09be \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8 \u0993 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09a8\u09c7\u099f\u0993\u09af\u09bc\u09be\u09b0\u09cd\u0995&quot;","block_context":{"text":"\u09a1\u09c7\u099f\u09be \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u0995\u09c7\u09b6\u09a8 \u0993 \u0995\u09ae\u09cd\u09aa\u09bf\u0989\u099f\u09be\u09b0 \u09a8\u09c7\u099f\u0993\u09af\u09bc\u09be\u09b0\u09cd\u0995","link":"http:\/\/bangla.sitestree.com\/?cat=896"},"img":{"alt_text":"\u098f\u09a1\u09cd\u09b0\u09c7\u09b8 \u09b0\u09c7\u09b8\u09cb\u09b2\u09bf\u0989\u09b6\u09a8 \u09aa\u09cd\u09b0\u099f\u09cb\u0995\u09b2","src":"https:\/\/i0.wp.com\/www.tutorialspoint.com\/data_communication_computer_network\/images\/arp.jpg?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.tutorialspoint.com\/data_communication_computer_network\/images\/arp.jpg?resize=350%2C200 1x, https:\/\/i0.wp.com\/www.tutorialspoint.com\/data_communication_computer_network\/images\/arp.jpg?resize=525%2C300 1.5x"},"classes":[]}],"_links":{"self":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/78508","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=78508"}],"version-history":[{"count":1,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/78508\/revisions"}],"predecessor-version":[{"id":78510,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=\/wp\/v2\/posts\/78508\/revisions\/78510"}],"wp:attachment":[{"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=78508"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=78508"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/bangla.sitestree.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=78508"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}