Given a scenario, configure a subnet and use appropriate IP addressing schemes. Flashcards

1
Q

What is the difference between public and private IP addresses?

A

Public IP addresses are globally unique and routable on the internet, while private IP addresses (RFC1918) are used within private networks and are not routable on the internet.

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

What is RFC1918?

A

RFC1918 defines the range of IP addresses reserved for private use within a network:

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

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

What is Network Address Translation (NAT)?

A

NAT is a method that translates private IP addresses to a public IP address, allowing multiple devices on a local network to share a single public IP address for internet access.

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

What is Port Address Translation (PAT)?

A

PAT, also known as NAT overload, is a type of NAT that maps multiple private IP addresses to a single public IP address by using different ports

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

What is the difference between IPv4 and IPv6?

A

IPv4 uses 32-bit addresses allowing for 4.3 billion unique addresses, while IPv6 uses 128-bit addresses allowing for 3.4 x 10^38 unique addresses, providing a larger address space and improved features.

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

What is Automatic Private IP Addressing (APIPA)?

A

APIPA is a feature in IPv4 that allows devices to self-assign an IP address in the 169.254.x.x range when a DHCP server is unavailable.

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

What is Extended Unique Identifier (EUI-64)?

A

EUI-64 is a method used in IPv6 to automatically configure a 64-bit interface identifier using a device’s MAC address

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

What is multicast in IP addressing?

A

Multicast is a method of sending a single data packet to multiple recipients on a network using a single IP address (e.g., 224.0.0.0 to 239.255.255.255 for IPv4).

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

What is unicast in IP addressing?

A

Unicast is a one-to-one communication method where data is sent from one sender to one specific recipient.

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

What is anycast in IP addressing?

A

Anycast is a communication method where data is sent from one sender to the nearest or best destination among a group of potential receivers, typically used in IPv6

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

What is broadcast in IP addressing?

A

Broadcast is a communication method where data is sent from one sender to all devices on a network segment, typically using the address 255.255.255.255 in IPv4.

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

What is link-local addressing?

A

Link-local addresses are used for communication between devices on the same local network segment. For IPv4, it is in the 169.254.0.0/16 range, and for IPv6, it is in the FE80::/10 range.

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

What is the loopback address?

A

The loopback address is used to test network software on a local machine. For IPv4, it is 127.0.0.1, and for IPv6, it is ::1.

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

What is a default gateway?

A

A default gateway is a network device, typically a router, that routes traffic from a local network to other networks or the internet.

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

What is classless (variable-length subnet mask) subnetting?

A

Classless subnetting allows for variable-length subnet masks (VLSM) that enable more efficient use of IP addresses by allocating subnet sizes according to the needs of each segment.

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

What is classful subnetting?

A

Classful subnetting divides the IP address space into fixed classes (A, B, C, D, E), each with a predefined number of addresses and fixed subnet masks.

17
Q

What is Class A IP address range?

A

Class A IP addresses range from 1.0.0.0 to 126.255.255.255 with a default subnet mask of 255.0.0.0.

18
Q

What is Class B IP address range?

A

Class B IP addresses range from 128.0.0.0 to 191.255.255.255 with a default subnet mask of 255.255.0.0.

19
Q

What is Class C IP address range?

A

Class C IP addresses range from 192.0.0.0 to 223.255.255.255 with a default subnet mask of 255.255.255.0.

20
Q

What is Class D IP address range?

A

Class D IP addresses range from 224.0.0.0 to 239.255.255.255 and are reserved for multicast groups.

21
Q

What is Class E IP address range?

A

Class E IP addresses range from 240.0.0.0 to 255.255.255.255 and are reserved for experimental and future use.

22
Q

What is Classless Inter-Domain Routing (CIDR) notation?

A

CIDR notation represents IP addresses and their associated network masks, such as 192.168.1.0/24, allowing more flexible and efficient IP address allocation

23
Q

What is IPv6 tunneling?

A

IPv6 tunneling encapsulates IPv6 traffic within IPv4 packets to enable communication over IPv4 networks, aiding in the transition from IPv4 to IPv6.

24
Q

What is dual stack in IPv6?

A

Dual stack refers to running both IPv4 and IPv6 protocols on the same network, allowing devices to communicate over either protocol.

25
Q

What is shorthand notation in IPv6?

A

Shorthand notation in IPv6 simplifies address representation by removing leading zeros and consecutive zeros, such as converting 2001:0db8:0000:0042:0000:8a2e:0370:7334 to 2001:db8::42:0:8a2e:370:7334.

26
Q

What is router advertisement in IPv6?

A

Router advertisement in IPv6 is a mechanism where routers periodically send multicast messages to announce their presence and network information to hosts.

27
Q

What is Stateless Address Autoconfiguration (SLAAC) in IPv6?

A

SLAAC allows IPv6 devices to automatically configure their own IP addresses using router advertisements, without the need for a DHCP server.

28
Q

What is a Virtual IP (VIP)?

A

A Virtual IP (VIP) is an IP address assigned to multiple devices or interfaces, allowing for load balancing and high availability in network services

29
Q

What are subinterfaces?

A

Subinterfaces are virtual interfaces created on a single physical interface, allowing the interface to be divided into multiple logical interfaces for VLANs or other network segmentation purposes.

30
Q
A