Network Addressing Flashcards

1
Q

What are MAC addresses?

A

They are the physical addresses of the computer system. They do not change and are integrated into the NIC.
MAC stands for Media Access Control.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the first 6 digits of the MAC address?

A

They are the OUI.
The Organizationally Unique Identifier.
These are the organisations digits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the last 6 digits of the MAC address?

A

They are vendor assigned.
They are assigned by the NIC or other such interfaces.
They are unique to this device.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are each 6 digits of the \MAC address made up of?

A

24 bits.

They are 48 bits as a whole.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How are MAC addresses typically represented ?

A

In Hexadecimal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are MAC addresses used for?

A

They are used for NIC to NIC communications on the same network.
They are used in ethernet networks mostly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Can routers have multiple NICs?

A

Yes. They connect to multiple networks and thus require multiple NICs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are IPv4 addresses? How are they represented?

A

They are 32 bit addresses.
They are represented in decimal notation.
They are separated into four octets of 8 bits each.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are IPv6 addresses? How are they represented?

A

They are 128 bit addresses.
They are represented in hexadecimal notation, separated by colons.
They have 8 16-bit segments. Each digit is 4 bits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the difference between decimal, hexadecimal and binary?

A

Decimal is base 10. 0-9
Binary is base 2. 0-1
Hexadecimal is base 16. 0-9 and A-F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are Subnet Masks?

A

They are 32 bit addresses, represented as decimal.
They have specific values, with the first 24 bits being 1s and the rest of them being 0s.
They can be represented by a / followed by a string of 1s.
255.255.255.0 can also be represented as /24

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are subnet masks used for?

A

They are used to separate the network and host aspects of the IPv4 address.
192.168.100.1
255.255.255.0
They separate the 1 of the IPv4 address from the rest of it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the two rules of IPv6 addresses?

A

Leading 0s in any segment can be omitted.
A single string of continuous 0s can be replaced by a continuous double colon. :0000: -> ::
They can utilise only on double colon.
These rules help compress the addresses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do IPv6 addresses separate themselves?

A

Just like IPv4 they have network and host portions.
The prefix and interface ID.
They use a slash notation, to indicate how many bits are part of the network address.
2001:db8:acad:100:37ef:100:a765:1/64

Up to the first 100 is the network portion.
The host is then replaced with all 0s, which is in turn replaced with a double colon.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you find all of these addresses on a device?

A

In command prompt type ipconfig /all

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the default gateway?

A

Identifies the default router that this device uses to access the internet or another network.

17
Q

What are optional values?

A

Such as the preferred DNS server address and the alternate DNS server address.

18
Q

What is the difference between static and dynamic addressing?

A

Static is input manually.

Dynamic is done by machine using technology such as DHCP.

19
Q

What are link-local addresses?

A

They are addresses used by devices to communicate with other devices on the same network.
IPv4 uses this if the device cannot obtain an IPv4 address. They are assigned an Automatic Private IP Address (APIPA) if they cannot get a DHCP address.
IPv6 must always use dynamically or manually configured link-local IPv6 address.