• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/37

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

37 Cards in this Set

  • Front
  • Back
What is an MTU?
Maximum Transmission Unit. It is the maximum size of the PDU each medium can transport.
What is it called when an intermediary device has to split a packet to fit it on a medium with a smaller MTU?
Fragmenting
What is the process of determining an MTU's size?
The data link layer passes the MTU value to the network layer. The network layer then decides how big the packet should be.
An IPv4 packet has two parts. What are they?
IP header - Identifies the packet characteristics.
Payload - Contains Layer 4 segment info and the actual data.
What is DS?
Differentiated Services. It determines the priority of each packet.
What are the first six bits of Differentiated Services reserved for?
Differentiated Services Code Point. This determines the quality of service.
What are the last two bits of Differentiated Services reserved for?
Explicit congestion notification. This can be used to prevent lost packets during heavy network congestion.
What does the version in an IP packet depict?
...How about the version? Either 4 or 6 (0100 or 0110 respectively).
What is TTL?
Time to live. 8 bit binary limit to the lifetime of a packet. It's specified in seconds, but is commonly referred to as a hop count. If it is exceeded, the router drops the packet and sends an ICMP message stating "Time Exceeded" to the source.
What does the protocol header include?
It indicates the payload type. The most common are ICMP (0x01), TCP (0x06) and UDP (0x11).
What are the two most commonly referenced fields in an IPv4 header?
Source and destination IP address
What is IHL?
Internet Header Length. Identifies the number of 32 bit words in the header. Minimum value is 5 and maximum is 15. It varies due to options and padding.
What does the total length header field do?
Also known as packet length, it defines the entire packet size in bytes. The minimum is 20 bytes and the maximum is 65,535.
What is a header checksum?
It is used for error checking in an IP header.
What is an identification field used for?
Used when a packet is fragmented, it uniquely identifies the fragment of the original IP packet.
What is the flags header used for?
In fragmentation, it's used to identify how the packet is fragmented.
What is a fragment offset?
It identifies the order in which to place the packet fragment when restructuring.
What is NAT?
Network Address Translation. It was a feeble attempt to preserve IPv4 addresses. Multiple devices on an internal network share a common public IP address.
Why is IPv6 awesome?
- Fewer header fields improves packet handling
- Provides scalability options for the future
- More secure because it natively supports authentication and privacy capabilities
- WAAAAY more IP addresses
- No more NAT
What is the Traffic Class field?
IPv6's equivalent to Differentiated Services. It also contains Differentiated Services Code Point and Explicit Network Congestion.
What is a Flow Label header for?
IPv6. Special service for real times apps. It can inform routers and switches to maintain the same path for the packet flow so packets aren't reordered.
What is the payload length field for?
IPv6's solution to the total length field. It defines the entire size of the IPv6 packet.
What's the next header field for?
IPv6's equivalent to the protocol field. It indicates the type of data payload the packet carries.
What's the hop limit field for?
Exactly what it sounds like. It counts the number of router hops a packet makes. It replaces IPv4's TTL.
What is EH?
Extension headers. Used in IPv6, they are optional and place between the header and the payload. Used in fragmentation, security, mobility and so on.
What is a routing table and where is it stored?
It stored route information about the directly connected network as well as entries about remote networks it has contacted previously. It is utilized to determine the best path to take to reach its destination. It is stored in the RAM of a router.
How do you display a PC's local routing table?
route print or netstat -r
What is the local default route?
Indicates the route packets must take to reach a remote network (cross the default gateway).
What is an interface list in a routing table?
Lists the MAC addresses and assigned interface number of every network device installed on the PC.
What does an IPv4/IPv6 route table contain?
A list of all the known IPv4/IPv6 routes on the local segment.
What is the Network Destination column for in a PC's routing table?
It lists reachable networks.
What is the Netmask column for in a PC's routing table?
Lists subnet masks that inform the host which part of network a host is on.
What is the Gateway column for in a PC's routing table?
Lists address used by the local PC to get to remote destinations. If a destination is direction reachable, it'll say 'on-link'.
What is the interface column for in a PC's routing table?
It lists the address of the physical interface used to send the packet to the gateway.
What is the metric column used for in a PC's routing table?
It lists the cost of each route. It is used to determine the best route for a packet to take.
What is 0.0.0.0 in a routing table?
Local default route. It specifies that all packets with a destination that doesn't match an address in the routing table are forwarded to the gateway.
What is 255.255.255.255 representing on a routing table?
Represents the limited broadcast IP address values for use through either the loopback or host IP. Can be used to find DHCP servers before local IP is determined.