Learn Python, Microsoft 365 and Google Workspace
Connect with me: Youtube | LinkedIn | WhatsApp Channel | Web | Facebook | Twitter
Contents:
A private IP address is an IP address reserved for internal use within a network (such as a home, office, or enterprise) that is not routable on the global internet. These addresses are used to identify devices within a private network and are translated to public IP addresses when communicating outside the network (via technologies like NAT, Network Address Translation).
In Class C networks, the range of private IP addresses is:
This gives a total of 256 Class C networks, with each network having 256 addresses (from 192.168.0.0/24
to 192.168.255.255/24
).
Breakdown of Class C Private IP Range:
192.168.0.0
192.168.255.255
255.255.255.0
The first IP (192.168.x.0
) is typically reserved as the network address, and the last IP (192.168.x.255
) is usually reserved as the broadcast address.
Examples:
192.168.1.0/24
192.168.1.1
to 192.168.1.254
192.168.100.0/24
192.168.100.1
to 192.168.100.254
Other Private IP Ranges (for reference):
10.0.0.0
to 10.255.255.255
172.16.0.0
to 172.31.255.255
192.168.0.0
to 192.168.255.255
These IP ranges are reserved for internal network use and will not be routed on the public internet, ensuring that devices in these ranges cannot directly access or be accessed from the global internet without proper configuration (e.g., using NAT).
A public IP address is an IP address that is accessible over the internet. It is assigned to a network device, like a router, by an Internet Service Provider (ISP) and allows devices on that network to communicate with devices outside of it. This IP address is globally unique, meaning that no two devices connected directly to the internet will have the same public IP address at the same time.
Key Points
Most devices connected to the internet via a home network have a private IP address within the network, which is then mapped to the public IP of the router or modem when accessing the internet.
GigabitEthernet0/0 refers to a specific network interface on a Cisco router or switch. Let’s break down the term in parts:
Here’s what it means:
On a router with GigabitEthernet0/0, it refers to:
When configuring a Cisco router, you often interact with this interface to assign IP addresses, enable or disable the interface, and define routing settings.
R1(config)# interface gigabitEthernet 0/0
R1(config-if)# ip address 192.168.1.1 255.255.255.0
R1(config-if)# no shutdown
In this example:
192.168.1.1
with a subnet mask of 255.255.255.0
.no shutdown
to enable the interface.Each port is associated with a specific process or service, allowing computers to differentiate between different types of traffic. For example, emails use a different port than webpages, even though both reach a computer over the same internet connection
** 192.168.1.0/24
**
The IP address 192.168.1.0/24
represents a subnet in the world of IP addressing.
Let’s break it down:
Components of 192.168.1.0/24
:
192.168.1.0
(Network Address):
192.168.x.x
is a common range for home and small business networks./24
(Subnet Mask):
/24
means that the first 24 bits of the IP address are reserved for the network portion, and the remaining 8 bits are used for the host portion (devices within the network)./24
is 255.255.255.0, which is equivalent to 24 network bits.What Does 192.168.1.0/24
Represent?
Network Address: 192.168.1.0
is the network identifier for the subnet. It is not assigned to any device.
Structure of an IP Address
An IPv4 address is 32 bits, and in CIDR notation, we divide this into two parts:
.1
, .2
, .3
, … up to .254
).Example:
For the network 192.168.1.0/24
:
This setup allows for 254 usable IP addresses (from .1
to .254
) that can be assigned to hosts (e.g., computers, printers, phones) on the network.
192.168.1.0
is the network identifier, and the /24
means the first 24 bits are used for the network, leaving 8 bits for the hosts./24
allows for 254 devices on the network (usable IPs from 192.168.1.1 to 192.168.1.254).This type of subnetting is typical in home and small office networks.
Routers and switches are essential networking devices, but they serve different purposes within a network:
Feature | Router | Switch |
---|---|---|
Primary Role | Connects networks | Connects devices within a LAN |
Data Handling | Routes data using IP addresses | Forwards data using MAC addresses |
Scope | Operates across networks | Operates within a network |
Security | Often has firewall capabilities | Typically lacks security features |
Key Features of VLANs:
Answer Key (True/False):
Watch this video for the answer:
Answer key (Mutiple Choice):
Answer Key (Fill in the Blanks):
Beginner: Basic concepts and syntax. Intermediate: More complex problems involving data structures and algorithms. Advanced: Challenging problems that require in-depth understanding and optimization.
[1] Z. Yue, “What Is Virtual Local Area Network (VLAN)? - Huawei,” info.support.huawei.com, Jun. 29, 2021. https://info.support.huawei.com/info-finder/encyclopedia/en/VLAN.html [2] “VLAN,” Wikipedia, Jul. 21, 2022. https://en.wikipedia.org/wiki/VLAN [3] Techopedia, “What is a Virtual Local Area Network (VLAN)? - Definition from Techopedia,” Techopedia.com, 2019. https://www.techopedia.com/definition/4804/virtual-local-area-network-vlan [4] “When Should I Use VLANs?,” Learning Center, Dec. 06, 2022. https://www.extnoc.com/learn/networking/what-is-virtual-lan
For more details, see Appendix A.
This section includes the data tables referred to in the text…