Advanced IPv4 Addressing Concepts Flashcards
What are the three part structure of an IP address?
network, subnet, host.
How is the prefix value /24 calculated?
network bits + subnet bits
How to find the mask range?
The range is between: Network bits + Subnet bits(with minimum subnet value) AND Network Bits + Subnet bits(with minimum host bit requirement).
What are the three best mask criteria that engineers will choose from?
Highest Subnet bits, highest host bits or the increase both the numbers of supported subnets and hosts(middle).
How to find the magic number for which the subnet ID will use?
256-interesting octet number=interval range:
ie. 255.255.224.0 would have magic number of 256-224=32. Subnet ID will be 255.255.32.0, 255.255.64,0, 255.255.96.0 and goes on to 255.255.224.0
How to find your broadcast subnet?
When adding the magic number to the network ID so that interesting octet reaches 256, then the previous number is the broadcast subnet. Or the value of the octet(256-magic number).
With subnet bits more than 8, we will have an interesting octet and a _______ octet
just-left
How to find subnet IDs that has more than 8 subnet bits?
Find the subnet in the fourth octet with the magic number, when it reaches the broadcast number, add 1 to the just-left octet and restart the adding of the magic number until just left reaches 255. Or if having more than 16 bits, add on to the next octet.
How do we define VLSM
Variable Length Subnet Mask is defined when a same classful network uses different subnet mask(different prefixes).
How to identify overlaps in VLSM?
Identify the subnet ID and subnet broadcast address for the given subnets; compare the range of all and identify the range of addresses that are overlapping.
What is the function of summary route?
To minimize memory use of routing table.
What is the formula to calculate the best summary route for a given list of subnets?
- List all subordinate subnets in decimal from low to high along with their broadcast subnet address.
- Identify the lowest subordinate subnet and the highest subnet broadcast address.
- identify prefix: pick the shortest prefix length mask of all the subordinate subnet and then subtract 1.
- Calculate a new potential summary subnet/mask with matching broadcast address based on the lowest subordinate subnet ID from the original list and the current prefix length.
a. if the calculate range of address includes the entire range from step 2, you have found the best summary route.
b. If not, subtract 1 from the prefix length used in the most recent calculation and repeat step 4.
What is the ACL and its major function?
Access Control Lists has many features, one of them is to filter(deny) or let through(permit) IP packets.
What are the four types of IP ACL?
Standard Numbered
Standard Named
Extended Numbered
Extended Named
What is first-match logic for all IP ACL types?
When fist logic on the list(going in order) is met, it will stop processing the ACL function list and go with that logic’s outcome(either deny or permit). It will ignore the rest of the list that follows. IF there is no match for any logics on the list, the packet will be denied.