routing Flashcards

1
Q

What standard is Ethernet?

A

IEEE 802.3

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

What layer of the OSI model do ethernet frames operate on?

A

data link

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

What do the ethernet frames contain?

A

Source and dest MAC address.

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

What are sniffers?

A

Listening to all network traffic even if it isn’t intended for you. This can happen when the NIC runs in promiscuous mode.

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

What is CSMA/CD?

A

Carrier sense multiple access /collision detection

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

What is carrier sense?

A

computer analyzing wire before sending frame

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

What is a collision domain?

A

A group of nodes that can all send data all at the same time, which can definitely cause collision.

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

What is a hub?

A

Just a repeater. It reads a signal in and sends it out all the output ports.

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

What is a switch?

A

Stores all Mac addresses of devices and stores them on a source address table. Then connects computers with ports.

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

What is a full duplex switch?

A

Each port has its own collision domain.

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

What is a unicast message?

A

A message just to a single machine

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

What is a broadcast message?

A

A message to all machines on a network segment.

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

What do routers do?

A

Connect LANs and WLANs, interpret layer 3 (network) and layer 4 (transport). Finds the best paths, reroutes traffic accordingly.

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

How does routing work?

A

Layer 2 data gets removed, Ip packet is created and sent through the correct port.

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

What is a route table?

A

A database of IPs and subnet masks. Also has Gateway and port currently being used.

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

What are interior routers?

A

Connecting multiple LANs on the same domain.

17
Q

What are border routers?

A

Connecting domains with their ISP.

18
Q

What are exterior routers?

A

Routers the ISP owns or other backbone routers for the internet.

19
Q

What is NAT?

A

Network address translation. Basically translates between external IPs and internal IPs.

20
Q

What are the two types of NAT?

A

Static and dynamic NAT.

21
Q

What is a static NAT?

A

Always give the same mapping to the same device

22
Q

What is dynamic NAT?

A

Mapping different devices to different IPs at different times. From a “pool” of all possible IP addresses.

23
Q

What is PAT?

A

Port address translation. Dynamically routing one public IP address with multiple ports to multiple private IPs.

24
Q

What are the three types of ports and the ranges of each?

A

Well known: 0- 1023
Registered: 1024 - 49151
Dynamic and private: 49152 - 65535

25
Q

What is port forwarding?

A

Basically lets someone outside the network connect directly to a machine by specifying the public IP address and the port

26
Q

What is an ACL?

A

Access control list. Determines wether or not to drop packet.