The Bits and Bytes of Computer Networking 2 Flashcards
How many bits is a MAC address and how are they represented?
48 bits, represented by 6 groupings of 2 hexadecimal digits.
What is an octet, and how many hex digits can represent one?
Any number that can be represented by 8 bits. Can be represented by 2 hex digits.
What are the first and last 3 octets of a MAC address?
First 3 = OUI - Organizationally Unique Identifier, assigned to individual hardware manufacturers by the IEEE.
Last 3 = assigned to devices by the manufacturer.
What is a Unicast?
A one-to-one transmission from one point in the network to another point. Delivered from one sender to one specific recipient.
What is a Multicast?
One-to-many, transmitted only to intended recipients in the network.
What is a broadcast?
One-to-many, transmitted to all the hosts connected to the network. Sent using broadcast MAC address - all Fs.
What is a Checksum and how is it calculated?
Calculated by performing a CRC - Cyclical Redundancy Check - against the contents of the packet. The receiving device will also perform a CRC to ensure received data is complete and uncorrupted.
How many bits are IPv4 addresses and how are they represented?
32 bits, represented by 4 octets, described in decimal numbers, in dotted decimal notation.
What is DHCP?
Dynamic Host Configuration Protocol, the process that automatically assigns an IP address to a new device from the network it has connected to.
What is the difference between a dynamic and a static IP address.
A dynamic IP is assigned by DHCP, it can change each time a device connects to a network.
A static IP must be manually configured and does not change.
What are data packets at the data link layer called?
Ethernet Frames.
What are data packets at the network layer called?
IP Datagrams.
What is the TTL field and what is it’s purpose?
Indicates the number of hops a packet can traverse before it is thrown away, each router that the packet reaches will decrement the field by one. The purpose is to prevent endless loops in the case of a misconfiguration.
How are the octets in Classes A, B and C divided?
Class A - first octet = network ID.
last 3 octets = host ID.
Class B - first 2 octets = network ID.
last 2 octets = host ID.
Class C - first 3 octets = network ID.
last octet = host ID.
What are Classes D and E used for?
D = Multicasting. E = Testing purposes.