Given a scenario, configure a subnet and use appropriate IP addressing schemes. Flashcards
What is the difference between public and private IP addresses?
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.
What is RFC1918?
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
What is Network Address Translation (NAT)?
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.
What is Port Address Translation (PAT)?
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
What is the difference between IPv4 and IPv6?
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.
What is Automatic Private IP Addressing (APIPA)?
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.
What is Extended Unique Identifier (EUI-64)?
EUI-64 is a method used in IPv6 to automatically configure a 64-bit interface identifier using a device’s MAC address
What is multicast in IP addressing?
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).
What is unicast in IP addressing?
Unicast is a one-to-one communication method where data is sent from one sender to one specific recipient.
What is anycast in IP addressing?
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
What is broadcast in IP addressing?
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.
What is link-local addressing?
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.
What is the loopback address?
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.
What is a default gateway?
A default gateway is a network device, typically a router, that routes traffic from a local network to other networks or the internet.
What is classless (variable-length subnet mask) subnetting?
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.