Subnet Masks Flashcards

1
Q

128

A

10000000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

255

A

11111111

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

252

A

11111100

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

11111110

A

254

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

11110000

A

240

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

11000000

A

192

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

10000000

A

128

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

11100000

A

224

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

248

A

11111000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

11111111

A

255

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

192

A

11000000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

224

A

11100000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

240

A

11110000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

11111000

A

248

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

254

A

11111110

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is the broadcast address?

A

The broadcast address is the last address in the subnet, where all host bits are set to 1.

18
Q

What is a network address in a subnet?

A

Network Address – The first address in the subnet, used to identify the network (e.g., 205.68.246.0/24)

19
Q

What is the gateway address?

A

The gateway address is the IP address of a router that serves as the exit point for a network, enabling communication between different networks or subnets. It is typically the first or last usable IP address in a subnet (e.g., 205.68.246.1/24). Hosts use the gateway to send data outside their local network.

20
Q

Explain subnetting and its relationship with the number of hosts.

21
Q

How do you calculate the number of subnets created when extending a subnet mask beyond /24?

A

• Use the formula: 2^{(N - 24)} , where N is the new subnet mask. Each added subnet bit doubles the number of subnets.

22
Q

What formula determines the number of usable hosts per subnet, and why do we subtract two from the total?

A

The formula is 2^{(32 - N)} - 2 , where N is the subnet mask. We subtract 2 because the first address is reserved for the network address and the last for the broadcast address.

23
Q

Why is a /30 subnet commonly used for point-to-point links, and what makes /31 a special case?

A

A /30 subnet provides 2 usable IPs, which is ideal for connecting two devices in a point-to-point link. A /31 subnet is a special case where both addresses can be used, eliminating the need for a network and broadcast address, making it efficient for point-to-point links.

24
Q

How does adding subnet bits affect the number of available hosts in each subnet?

A

Adding 1 subnet bit halves the number of available hosts, since more bits are used for subnetting, leaving fewer for host addressing.

25
Q

What is the relationship between subnet masks, subnet bits, and the number of subnets created?

A

The more subnet bits added (increasing the subnet mask), the more subnets are created, but each subnet has fewer host addresses available. The trade-off is between network segmentation and host capacity per subnet.

26
Q

What is /32 used for?

A

A /32 subnet is used to identify a single host rather than a network. It provides only one IP address with no room for additional hosts.

Common Uses of /32:
1. Loopback Addresses – Assigned to a router’s loopback interface for management and routing processes.
2. Routing Table Entries – Used in routing protocols (e.g., OSPF, BGP) to specify a single IP route.
3. Access Control Lists (ACLs) – Helps define rules for specific devices in firewall and security settings.
4. Point-to-Point Links (Some Cases) – Occasionally used in certain configurations where no network/broadcast addresses are needed.

Since there are no network or broadcast addresses in a /32, it is ideal for uniquely identifying and managing individual devices.

27
Q

11111100