{"id":1221,"date":"2025-07-29T08:46:01","date_gmt":"2025-07-29T08:46:01","guid":{"rendered":"https:\/\/www.zframez.com\/articles\/?p=1221"},"modified":"2025-07-29T08:46:03","modified_gmt":"2025-07-29T08:46:03","slug":"networking-terminologies-a-beginners-guide-part-1","status":"publish","type":"post","link":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1","title":{"rendered":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1"},"content":{"rendered":"<body>\n<p>Understanding how computer networks work starts with learning a few essential terms. This post introduces some of the core networking concepts in a simple and practical way. If you\u2019re just getting started with networking or brushing up on the basics, this will give you a solid foundation to build on.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>1. IP Address and Mask<\/strong><\/p>\n\n\n\n<p>An IP address is like a digital address given to each device on a network. It identifies the device and helps data find its way to the correct destination.<\/p>\n\n\n\n<p>Example of an IPv4 address: 192.168.1.10<\/p>\n\n\n\n<p>But the IP address alone isn\u2019t enough. We also need a <strong>subnet mask<\/strong>, which helps separate the <strong>network part<\/strong> of the IP from the <strong>host part<\/strong>.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IP address: 192.168.1.10<\/li>\n\n\n\n<li>Subnet mask: 255.255.255.0<\/li>\n<\/ul>\n\n\n\n<p>This means 192.168.1 represents the network part, and 10 identifies the individual device within that network. So, two devices like 192.168.1.10 and 192.168.1.20 are part of the same network if they share the same subnet mask.<\/p>\n\n\n\n<p><strong>What is a Subnet Mask?<\/strong><\/p>\n\n\n\n<p>A subnet mask is a 32-bit number used with an IP address to define which portion is for the network and which is for the host.<\/p>\n\n\n\n<p>You can think of it as a divider: it tells the system where the network ID ends and the host ID begins.<\/p>\n\n\n\n<p><strong>Why is it needed?<\/strong><\/p>\n\n\n\n<p>Let\u2019s say you have the IP address 192.168.1.10. How does your system know which part refers to the network and which part refers to the host?<\/p>\n\n\n\n<p>That\u2019s where the mask helps. Wherever the mask has a 1 in binary, those bits belong to the network portion. The remaining bits are for the host.<\/p>\n\n\n\n<p><strong>Example in Binary:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IP: 192.168.1.10 \u2192 11000000.10101000.00000001.00001010<\/li>\n\n\n\n<li>Mask: 255.255.255.0 \u2192 11111111.11111111.11111111.00000000<\/li>\n<\/ul>\n\n\n\n<p>So the network part is 192.168.1, and the host is 10.<\/p>\n\n\n\n<p>This tells us that all devices with IPs from 192.168.1.1 to 192.168.1.254 are part of the same network.<\/p>\n\n\n\n<p><strong>A few key points:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Subnet masks are not IPs\u2014they just define how the IP should be interpreted.<\/li>\n\n\n\n<li>Common masks:\n<ul class=\"wp-block-list\">\n<li>255.0.0.0 \u2192 Class A<\/li>\n\n\n\n<li>255.255.0.0 \u2192 Class B<\/li>\n\n\n\n<li>255.255.255.0 \u2192 Class C<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>It helps determine whether the destination is within the local network or if data needs to go through the router.<\/li>\n<\/ul>\n\n\n\n<p><strong>Real-world use:<\/strong><\/p>\n\n\n\n<p>When a device wants to send data:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It uses the subnet mask to check if the destination is in the same network.\n<ul class=\"wp-block-list\">\n<li>If yes \u2192 sends directly.<\/li>\n\n\n\n<li>If no \u2192 sends it to the default gateway (router).<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>2. Network Stack \u2013 OSI Model and TCP\/IP<\/strong><\/p>\n\n\n\n<p>To understand how data travels across networks, we use reference models that break down communication into layers.<br>The <strong>OSI Model<\/strong> is a 7-layer theoretical framework used to explain how different network functions work together.<\/p>\n\n\n\n<p>The <strong>TCP\/IP Model<\/strong>, also known as the <strong>Internet Protocol Suite<\/strong>, is a simpler 4-layer model that is actually used in real-world networks like the internet.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"927\" src=\"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?resize=1024%2C927&#038;ssl=1\" alt=\"OSI and TCP\/IP model layer comparison diagram showing Application, Transport, Internet, and Link layers\" class=\"wp-image-1223\" loading=\"lazy\" srcset=\"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?w=1024&amp;ssl=1 1024w, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?resize=300%2C272&amp;ssl=1 300w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><figcaption class=\"wp-element-caption\">Comparison of OSI model and TCP\/IP stack with official layer names from RFC 1122<\/figcaption><\/figure>\n\n\n\n<p><strong>Clarifying the Terminology: Internet Layer and Link Layer<\/strong><\/p>\n\n\n\n<p>When learning about the TCP\/IP model, especially from different books, courses, or tutorials, you might come across <strong>multiple names<\/strong> used for the same layer. Here\u2019s a quick clarification:<\/p>\n\n\n\n<p><strong>\ud83d\udd39 Internet Layer<\/strong><\/p>\n\n\n\n<p>This layer is responsible for logical addressing and routing of packets between networks.<\/p>\n\n\n\n<p><strong>Common alternative names<\/strong> you might see:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Network Layer<\/strong> (borrowed from OSI terminology)<\/li>\n\n\n\n<li><strong>IP Layer<\/strong> (because it handles the Internet Protocol)<\/li>\n<\/ul>\n\n\n\n<p><strong>RFC 1122<\/strong> officially refers to this as the <strong>Internet Layer<\/strong>.<\/p>\n\n\n\n<p><strong>\ud83d\udd39 Link Layer (Bottom Layer)<\/strong><\/p>\n\n\n\n<p>This is the lowest layer in the TCP\/IP model, handling physical transmission and framing of data between directly connected devices.<\/p>\n\n\n\n<p><strong>Other names you may encounter:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Network Interface Layer<\/strong><\/li>\n\n\n\n<li><strong>Network Access Layer<\/strong><\/li>\n\n\n\n<li><strong>Host-to-Network Layer<\/strong><\/li>\n\n\n\n<li>Sometimes even called <strong>Data Link + Physical Layer<\/strong> (when mapping to OSI)<\/li>\n<\/ul>\n\n\n\n<p>In <strong>RFC 1122<\/strong>, it is referred to as the <strong>Link Layer<\/strong>, which is the preferred and official term<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>3. Interfaces and Ports<\/strong><\/p>\n\n\n\n<p>An interface is where a device connects to the network. This could be:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A physical port (Ethernet)<\/li>\n\n\n\n<li>A wireless interface (Wi-Fi)<\/li>\n\n\n\n<li>A virtual interface (used in virtual machines or cloud systems)<\/li>\n<\/ul>\n\n\n\n<p>The word \u201cport\u201d is also used in software\u2014these are <strong>logical ports<\/strong> used by applications to communicate.<\/p>\n\n\n\n<p>Examples:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Port 80: HTTP<\/li>\n\n\n\n<li>Port 443: HTTPS<\/li>\n\n\n\n<li>Port 22: SSH<\/li>\n<\/ul>\n\n\n\n<p>So depending on the context, <em>port<\/em> may refer to either hardware or a software communication endpoint.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>4. Packet and Frame<\/strong><\/p>\n\n\n\n<p>When data travels over a network, it is broken into smaller pieces.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <strong>packet<\/strong> is used at the <strong>Network layer<\/strong> (Layer 3). It contains the IP address info.<\/li>\n\n\n\n<li>A <strong>frame<\/strong> is used at the <strong>Data Link layer<\/strong> (Layer 2). It contains MAC address info.<\/li>\n<\/ul>\n\n\n\n<p>In simple terms:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Think of a <strong>packet<\/strong> as the actual message or letter.<\/li>\n\n\n\n<li>The <strong>frame<\/strong> is the envelope that helps deliver that message to the next point.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>5. Switch vs Router \u2013 What\u2019s the Difference?<\/strong><\/p>\n\n\n\n<p>Let\u2019s first understand what a <strong>network<\/strong> is. A network is a group of devices that share the same IP range, based on the subnet mask.<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IP: 192.168.1.10<\/li>\n\n\n\n<li>Mask: 255.255.255.0<br>\u2192 All devices with IPs starting with 192.168.1. are in the same network.<\/li>\n<\/ul>\n\n\n\n<p><strong>Switch:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Used to connect devices within the same network.<\/li>\n\n\n\n<li>Works at <strong>Layer 2 (Data Link)<\/strong>.<\/li>\n\n\n\n<li>Uses <strong>MAC addresses<\/strong> to forward data.<\/li>\n\n\n\n<li>Ideal for building local networks (LANs).<\/li>\n<\/ul>\n\n\n\n<p><strong>Router:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Used to connect <strong>different networks<\/strong> together.<\/li>\n\n\n\n<li>Works at <strong>Layer 3 (Network)<\/strong>.<\/li>\n\n\n\n<li>Uses <strong>IP addresses<\/strong> to route data.<\/li>\n\n\n\n<li>Used when data has to travel from one network to another (like from your home network to the internet).<\/li>\n<\/ul>\n\n\n\n<p>So, switches are used for communication within the same network, while routers enable communication between different networks.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>Summary Table<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><td><strong>Term<\/strong><\/td><td><strong>What It Means<\/strong><\/td><\/tr><\/thead><tbody><tr><td>IP Address<\/td><td>Unique address for a device on a network<\/td><\/tr><tr><td>Subnet Mask<\/td><td>Defines the network and host portions of the IP<\/td><\/tr><tr><td>OSI Model<\/td><td>7-layer theoretical model for network communication<\/td><\/tr><tr><td>TCP\/IP Model<\/td><td>Real-world 4-layer model used on the internet<\/td><\/tr><tr><td>Interface<\/td><td>Network connection point (physical or virtual)<\/td><\/tr><tr><td>Port<\/td><td>Communication endpoint (hardware or software)<\/td><\/tr><tr><td>Packet<\/td><td>Network layer unit with IP info<\/td><\/tr><tr><td>Frame<\/td><td>Data link layer unit with MAC info<\/td><\/tr><tr><td>Switch<\/td><td>Connects devices in the same network<\/td><\/tr><tr><td>Router<\/td><td>Connects devices across different networks<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><\/p>\n<\/body>","protected":false},"excerpt":{"rendered":"<p>Understanding how computer networks work starts with learning a few essential terms. This post introduces some of the core networking concepts in a simple and practical way. If you\u2019re just getting started with networking or brushing up on the basics, this will give you a solid foundation to build on. 1. IP Address and Mask [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"wp-custom-template-post-with-sidebar2","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[330],"tags":[],"class_list":["post-1221","post","type-post","status-publish","format-standard","hentry","category-networking-fundamentals"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1 - Tutorials<\/title>\n<meta name=\"description\" content=\"A beginner-friendly guide to core networking concepts like IP addressing, subnet masks, the OSI and TCP\/IP models, interfaces, packets, switches, and routers.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Networking Fundamentals: IP Address, OSI, TCP\/IP &amp; More\" \/>\n<meta property=\"og:description\" content=\"Get a simple introduction to core networking concepts like IP, subnet mask, OSI model, TCP\/IP, ports, switches &amp; routers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1\" \/>\n<meta property=\"og:site_name\" content=\"Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/zframez\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-29T08:46:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-29T08:46:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"927\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"sajith achipra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@zframez\" \/>\n<meta name=\"twitter:site\" content=\"@zframez\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sajith achipra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1\"},\"author\":{\"name\":\"sajith achipra\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/person\\\/8b3b88007644501771d2452d3cc80f41\"},\"headline\":\"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1\",\"datePublished\":\"2025-07-29T08:46:01+00:00\",\"dateModified\":\"2025-07-29T08:46:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1\"},\"wordCount\":970,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/OSI-vs-TCP-IP-1.png\",\"articleSection\":[\"Networking Fundamentals\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1\",\"url\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1\",\"name\":\"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1 - Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/OSI-vs-TCP-IP-1.png\",\"datePublished\":\"2025-07-29T08:46:01+00:00\",\"dateModified\":\"2025-07-29T08:46:03+00:00\",\"description\":\"A beginner-friendly guide to core networking concepts like IP addressing, subnet masks, the OSI and TCP\\\/IP models, interfaces, packets, switches, and routers.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/OSI-vs-TCP-IP-1.png?fit=1024%2C927&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/OSI-vs-TCP-IP-1.png?fit=1024%2C927&ssl=1\",\"width\":1024,\"height\":927},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-1#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Tutorials\",\"item\":\"https:\\\/\\\/www.zframez.com\\\/articles\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#website\",\"url\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/\",\"name\":\"zframez tutorials\",\"description\":\"Learn networking bit by bit\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#organization\",\"name\":\"zframez technologies\",\"url\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/zframez-logo.jpg?fit=864%2C864&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/zframez-logo.jpg?fit=864%2C864&ssl=1\",\"width\":864,\"height\":864,\"caption\":\"zframez technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/zframez\\\/\",\"https:\\\/\\\/x.com\\\/zframez\",\"https:\\\/\\\/www.instagram.com\\\/zframez_technologies\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/person\\\/8b3b88007644501771d2452d3cc80f41\",\"name\":\"sajith achipra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g\",\"caption\":\"sajith achipra\"},\"sameAs\":[\"http:\\\/\\\/www.zframez.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1 - Tutorials","description":"A beginner-friendly guide to core networking concepts like IP addressing, subnet masks, the OSI and TCP\/IP models, interfaces, packets, switches, and routers.","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:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1","og_locale":"en_US","og_type":"article","og_title":"Networking Fundamentals: IP Address, OSI, TCP\/IP & More","og_description":"Get a simple introduction to core networking concepts like IP, subnet mask, OSI model, TCP\/IP, ports, switches & routers.","og_url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1","og_site_name":"Tutorials","article_publisher":"https:\/\/www.facebook.com\/zframez\/","article_published_time":"2025-07-29T08:46:01+00:00","article_modified_time":"2025-07-29T08:46:03+00:00","og_image":[{"width":1024,"height":927,"url":"https:\/\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png","type":"image\/png"}],"author":"sajith achipra","twitter_card":"summary_large_image","twitter_creator":"@zframez","twitter_site":"@zframez","twitter_misc":{"Written by":"sajith achipra","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#article","isPartOf":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1"},"author":{"name":"sajith achipra","@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/person\/8b3b88007644501771d2452d3cc80f41"},"headline":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1","datePublished":"2025-07-29T08:46:01+00:00","dateModified":"2025-07-29T08:46:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1"},"wordCount":970,"commentCount":0,"publisher":{"@id":"https:\/\/www.zframez.com\/articles\/#organization"},"image":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#primaryimage"},"thumbnailUrl":"https:\/\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png","articleSection":["Networking Fundamentals"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1","url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1","name":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1 - Tutorials","isPartOf":{"@id":"https:\/\/www.zframez.com\/articles\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#primaryimage"},"image":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#primaryimage"},"thumbnailUrl":"https:\/\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png","datePublished":"2025-07-29T08:46:01+00:00","dateModified":"2025-07-29T08:46:03+00:00","description":"A beginner-friendly guide to core networking concepts like IP addressing, subnet masks, the OSI and TCP\/IP models, interfaces, packets, switches, and routers.","breadcrumb":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#primaryimage","url":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?fit=1024%2C927&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?fit=1024%2C927&ssl=1","width":1024,"height":927},{"@type":"BreadcrumbList","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Tutorials","item":"https:\/\/www.zframez.com\/articles"},{"@type":"ListItem","position":2,"name":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1"}]},{"@type":"WebSite","@id":"https:\/\/www.zframez.com\/articles\/#website","url":"https:\/\/www.zframez.com\/articles\/","name":"zframez tutorials","description":"Learn networking bit by bit","publisher":{"@id":"https:\/\/www.zframez.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.zframez.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.zframez.com\/articles\/#organization","name":"zframez technologies","url":"https:\/\/www.zframez.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/zframez-logo.jpg?fit=864%2C864&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/zframez-logo.jpg?fit=864%2C864&ssl=1","width":864,"height":864,"caption":"zframez technologies"},"image":{"@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/zframez\/","https:\/\/x.com\/zframez","https:\/\/www.instagram.com\/zframez_technologies\/"]},{"@type":"Person","@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/person\/8b3b88007644501771d2452d3cc80f41","name":"sajith achipra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g","caption":"sajith achipra"},"sameAs":["http:\/\/www.zframez.com"]}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":1243,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-ip-addressing-cidr-subnet-masks-network-and-host-calculation","url_meta":{"origin":1221,"position":0},"title":"Understanding IP Addressing \u2013 CIDR, Subnet Masks, Network and Host Calculation","author":"sajith achipra","date":"July 30, 2025","format":false,"excerpt":"Understanding IP Addressing \u2013 Network and Host, CIDR, and Address Calculations When we look at an IP address like 192.168.1.20, it just looks like a bunch of numbers. But the truth is, that address is made up of two parts: one part tells us which network it belongs to, and\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1231,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2","url_meta":{"origin":1221,"position":1},"title":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2","author":"sajith achipra","date":"July 29, 2025","format":false,"excerpt":"This post continues from Part 1 and covers a few more important networking concepts. These terms often come up when learning how data moves through a network, especially when understanding how devices identify each other, how applications communicate, and how data is structured at each layer. 1. MAC Address \u2013\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1256,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-network-addresses-and-routing-tables-in-ip-networks","url_meta":{"origin":1221,"position":2},"title":"Understanding Network Addresses and Routing Tables in IP Networks","author":"sajith achipra","date":"August 1, 2025","format":false,"excerpt":"Understanding Network Addresses and Their Role in Routing When we assign an IP address to a device, like 1.2.3.4\/24, it's not just about identifying a single machine. That IP belongs to a network, and the address 1.2.3.0 in this case is known as the network address. But why do we\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":1281,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-address-resolution-protocol-how-arp-works","url_meta":{"origin":1221,"position":3},"title":"Understanding Address Resolution Protocol \u2013 How ARP Works","author":"sajith achipra","date":"August 11, 2025","format":false,"excerpt":"ARP \u00a0- Address Resolution Protocol ARP is used to find the MAC address of the next device to which the packet should be sent. When a device creates a packet, in the Ethernet header we need two MAC addresses - source MAC and destination MAC.The source MAC will always be\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":1291,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-dhcp-how-dynamic-ip-allocation-works","url_meta":{"origin":1221,"position":4},"title":"Understanding DHCP &#8211; How Dynamic IP Allocation Works","author":"sajith achipra","date":"August 21, 2025","format":false,"excerpt":"Understanding DHCP \u2013 Dynamic Host Configuration Protocol When a host gets connected to a network, it needs some basic configurations like IP address, subnet mask, gateway IP, DNS server\u2019s IP and so on. These can be given manually, but it will be difficult to do this every time, especially when\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DHCP-DORA-Process.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DHCP-DORA-Process.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DHCP-DORA-Process.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DHCP-DORA-Process.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DHCP-DORA-Process.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":1265,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/routing-table-fields-explained-next-hop-exit-interface-metric-and-gateway","url_meta":{"origin":1221,"position":5},"title":"Routing Table Fields Explained: Next Hop, Exit Interface, Metric, and Gateway","author":"sajith achipra","date":"August 2, 2025","format":false,"excerpt":"Next Hop, Exit Interface and Metric \u2013 Fields in a Routing Table In the previous tutorial, we discussed how network addresses are used in the routing table. In this one, we\u2019ll look into a few more fields you\u2019ll commonly see in a routing table - like Next Hop, Exit Interface,\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-from-R1s-POV.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-from-R1s-POV.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-from-R1s-POV.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-from-R1s-POV.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-from-R1s-POV.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-from-R1s-POV.png?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts\/1221","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/comments?post=1221"}],"version-history":[{"count":3,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts\/1221\/revisions"}],"predecessor-version":[{"id":1227,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts\/1221\/revisions\/1227"}],"wp:attachment":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/media?parent=1221"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/categories?post=1221"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/tags?post=1221"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}