What are the 5 essential Network Configuration Concepts
What are IP address?
An Internet Protocol address (IP Address) is a logical numeric address that is assigned to every single device on a TCP/IP-based network
What is the goal of an IP address?
To be able to identify every node on a network
Can IP addresses change?
Yes
What are the two types of IP Adressing?
IPv4 and IPv6
How many bits are IPv4 Addresses made of?
32 bits
How many possible IP combinations can we make with IPv4
4.2 billion addresses
What is an IPv4 address example?
192.168.1.15
4 numbers separated by 3 decimals
What does an IPv4 address consist of (structure wise)
Network ID (first 3 numbers)
Host ID (4th number)
What does the first three numbers in a IPv4 structure denote?
Network ID
What does the last number in a IPv4 structure represent?
Host ID
How many bits is each number in an IPv4 structure made up of?
8 bits (as in total for the 4 numbers we have 32 bits)
What is a subnet mask?
Used by the TCP/IP protocol to determine what subnet a host is on
What is subnet short for?
Sub network
Can the host ID always be used to identify the host?
No, does not always identify, the subnet mask does
How many bits is a subnet mask?
32 bit number
How do you calculate the network address using IP address and subnet mask?
How is the host address calculated using IP address, subnet mask and network address?
It is the remainder after calculating the network address
(
1. Convert IP address and Subnet mask in decimal format
2. For all the 1’s in the same position for both IP and Subnet
3. Assign that to the network address
)
How many IPv4 network classes are there?
5:
A
B
C
D (These last two aren’t commonly used)
E
What is the first Octet for a class A IPv4 network?
1-126
What is the first Octet for a class B IPv4 network?
128-191
What is the first Octet for a class C IPv4 network?
192-223
What is the goal of IPv4 network classes?
To know how many networks or hosts you can have on an IP
What is the best way to identify what class an IP address is in?
Identifying what range the first Octet is in:
A: 1-126
B: 128-191
C: 192-223
OR
What subnet is used:
A: 255.0.0.0
B: 255.255.0.0
C: 255.255.255.0