Week 6 Flashcards
What does multicast mean?
Sending a packet to a multicast address group
What does unicast mean?
Sending a packet to 1 destination IP address
What does broadcast mean?
Sending a packet to all destination IP addresses (other than itself)
What is prefix length in regards to a subnet mask?
The number of bits set to 1 in the subnet mask
With a subnet mask of 255.0.0.0, what would the prefix length be? How about a subnet mask of 255.255.255.0?
/8 and /24
How does “slash notation” work? Explain with this example: 11111111.11111111.00000000.00000000
Count the number of bits in the subnet mask and prepend it with a slash. The example is /16
IPv4 host addresses and IPv4 network addresses differ. How is the host address used to create the network address?
The host address is combined with the subnet mask using a logical AND operator.
IPv4 host address: 1100 0000 1010 1000 0000 1010 0000 1010
Subnet mask: 1111 1111 1111 1111 1111 1111 0000 0000
What is the IPv4 network address?
1100 0000 1010 1000 0000 1010 0000 00000
What are the 3 types of IP addresses used in networking?
Network address, host address, broadcast address
The first 3 parts of an IP address is referred to as the _______ portion, and final part is referred to as the ____ portion
network portion, host portion
If my host portion is 11111111 (255) the host bits are all _. If my host portion is 00000000 (0) all the host bits are _.
1, 0
T/F - RFC 1918 defines a private address range that is used as a common block to assign IPv4 addresses internally
True
Are private IPv4 addresses unique?
No they are not. They can be used internally within any network.
What translates private IPv4 addresses to public ones? Where is it typically enabled?
NAT - Network address translation. Typically enabled on the edge router connecting to the internet.
What are loopback addresses used for? What IP is commonly identified as a loopback address?
Used by the host to determine if TCP/IP is operational. Commonly identified as 127.0.0.1.