Ch 8 Networking Fundamentals Flashcards

1
Q

What is the main purpose of a router?

A

to connect networks to one another

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

What kind of network requires an IP that is globally unique?

A

The Internet!

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

How many unique IP addresses can IPv4 create?

A

4 billion

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

Private networks solve what problem?

A

There aren’t enough unique IPv4 addresses for all the devices that exist, and IPv6 is annoying

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

What IP addresses have been reserved for private, internal networks?

A

10.0.0.0/8 (a single Class A network)
172.16.0.0/12 (16 Class B networks)
192.168.0.0/16 (256 Class C networks)

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

Can a private network IP reach the internet?

A

not directly (and vice versa… nodes from other networks cannot easily reach them)

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

What is NAT used for?

A

Makes it easier for a private IP device/internal network device to reach the internet or an outside network

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

What does NAT mean?

A

Network Address Translation

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

How does NAT work?

A

When a private IP device tries to reach the internet, a NAT router replaces that IP with its own public facing IP.

outside nodes think they are communicating directly with host when they’re directly communicating with the NAT router.

The NAT router uses tables to keep track of all cnxns that currently exist for the hosts in the network.

NAT is common and embedded in most routers (homes and small businesses)

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

What could a long string of zeros in an IPv6 address be replaced with?

A

:: colons

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

What is a subnet mask?

A

tells you what numbers in an IP indicate the network and which indicate the node within the network

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

CIDR stands for

A

classless inter-domain routing

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

Give an example of CIDR notation for an IP

A

192.168.10.100/24

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

What does the 24 in 192.168.10.100/24 stand for?

A

a 24 bit network address is used.

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

What is the classical notation version of the CIDR notation version 192.168.10.100/24?

A

192.168.10.100/255.255.255.0

the 255.255.255.0 is the 24. 24 bits out of 32 bits are turned on for the network.

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

How many bytes in an IP address?

A

4 (8 bits is a byte)

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

How are bytes typically allocated in an IP address?

A

first three bytes are for network and last byte is for hosts

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

For an IP address of 192.168.10.100/24, what would the network address be?

A

In this case, since the first three octects (bytes) is the subnet mask (24 = 8*3 = 3 octets), then the network IP is 192.168.10.0

19
Q

What is the broadcast address?

A

This is an address that can address all the nodes in a network

20
Q

How can you find the broadcast address?

A

Take all the host bits and turn them to 1.

192.168.10.100/24 with this IP example, that last octect (32-24 = 8 bits or one byte or one octet) – we have 8 host bits. turn them all to 1 and we get 255

So broadcast address for 192.168.10.100/24 or the 192.168.10.0 network is 192.168.10.255

21
Q

What is variable length subnetting?

A

When a subnetting mask does not fit a neat octet

only a part of the byte is used for addressing nodes, and the rest is used for the network

22
Q

What’s an example of variable length subnetting?

A

212.209.113.33/27

you only have the last 5 bits of the last byte for addressing hosts (2^5 = 32 hosts) and the first three for addressing the network (2^7 + 2^6 + 2^5 + 0 + 0 + 0 + 0 + 0 )

23
Q

What would 212.209.113.33/27 be in binary notation?

A

11010100.11010001.00001010.00100001

is the host

/27 = 11111111.11111111.11111111.11100000

24
Q

If an IP in binary notation is 11010100.11010001.00001010.00100001, and the network mask in binary notation is /27 = 11111111.11111111.11111111.11100000, then what is the subnet IP?

A

since the last octect of the mask is 11100000(224), and the last octect of the IP is 00100001(33), then the subnet IP is the first three of the IP === 00100000 (32)

so 212.209.113.33/27 belongs to network 212.209.113.32/27

broadcast address (where all host bits are set to 1s) is 212.209.113.63

63-32 = 32 addresses. one is for network address (gateway) and one for the broadcast. so the rest, 30, are for host addresses

25
Q

Every NIC has a …

A

MAC address

26
Q

How many bytes is a mac address?

27
Q

What kind of addressing is used within networks but can’t be used to talk to other networks?

A

MAC addresses

28
Q

What kind of address must be paired with an IP address?

A

a MAC address

29
Q

How do MAC addresses help with finding a node?

A

They find the NIC that goes with an IP

30
Q

What are the first 6 and then the last 6 of a MAC address?

A

first six: vendor ID
last six: unique node ID

31
Q

What part of the MAC ID needs to be registered?

A

The first six bytes that are the vendor ID

32
Q

How do you identify the services on a server?

A

through its ports and protocols

34
Q

What is 00100000?

35
Q

What is 01000000

36
Q

What is 01100000

37
Q

What is 10000000

38
Q

What is 10100000

39
Q

What is 11000000

40
Q

What is 11100000