The Bits and Bytes of Computer Networking 5 Flashcards

1
Q

What are the specifications of wireless networks defined by?

A

The IEEE 802.11 standards.

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

How is data transferred in wireless networks?

A

Through radio waves.

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

What are 3 differences between different 802.11 standards?

A

They operate at different frequency bands, different channel widths, have different speeds.

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

What is a frequency band?

A

A certain section of the radio spectrum that is agreed to be used for certain communications.

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

What are the 2 most commonly used frequency bands for Wi-Fi, and what are the differences between the 2?

A

2.4 Ghz - slower, more susceptible to interference, larger range.

5 Ghz - faster, less range.

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

How many address fields does an 802.11 data frame have, and what are they?

A

4;

1 Source device MAC
2 Destination device MAC
3 MAC of receiving WAP
4 MAC of sending WAP

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

What are 3 ways to configure a wireless network?

A

1 Ad-hoc networks
2 LAN / WLAN
3 Mesh Networks

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

Describe the configuration of an ad-hoc wireless network.

A

Simplest type, nodes speak directly to each other, no supporting network infrastructure.

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

Describe the configuration of a LAN / WLAN.

A

Consists of one or more WAPS, connected to gateway routers, which act as a bridge between the wired LAN and wireless LAN.

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

Describe the configuration of a mesh wireless network. What is a benefit of this kind of network?

A

Is connected to a wired network, can have multiple WAPs, not all need to be connected to wired network, devices communicate with each other.

Benefit - increase performance and range of a wireless network.

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

What are channels?

A

Individual, smaller sections of the frequency band used by a wireless network.

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

What is a collision domain?

A

Any network segment where one computer can interrupt another.

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

What is a benefit of using channels in wireless networks?

A

Help avoid collision domain, wireless networking equipment can auto sense which channels are congested and use another.

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

What does WEP stand for, and what is it used for?

A

Wired Equivalent Privacy - an encryption technology. WEP key has 40 bits - not good.

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

What is the difference between WPA and WPA2?

A

Wi-Fi Protected Access, encryption technology.

WPA key = 128 bits.
WPA2 key = 256 bits.

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

How do cellular wireless networks differ to regular wireless networks?

A

A cellular network is a radio network distributed over land through cells where each cell includes a fixed location transceiver known as base station

17
Q

Aside from encryption, what is another security measure used in wireless networks?

A

MAC filtering, only allow certain devices to connect to your network.

18
Q

What does ICMP stand for, and what is it used for?

A

Internet Control Message Protocol - used by a router etc to communicate back to the source, why a transmission has failed.

19
Q

What are 2 tools to check network connectivity (at the network layer)?

A

Ping, traceroute / tracert (windows).

20
Q

What are the 2 steps in using a Ping message? (Name each step)

A

1 In command line interface - type “ping” followed by an IP address or a FQDN = “echo request”.

2 If destination is able to communicate on the network it will send an “echo reply” message.

21
Q

How does traceroute work?

A

It will send multiple packets, first with the ttl = 1, second with ttl = 2, and so on. This results in an ICMP time exceeded message being returned from every node along the route. Each time 3 packets will be sent.

22
Q

How do ping and traceroute output differ?

A

Ping output is basic info regarding the destination IP, roundtrip time and success rates of packets being sent.

Traceroute output is more detailed, with info about every router along the route, IP addresses and roundtrip time of each.

23
Q

What are 2 tools to test port connectivity (at the transport layer), what OSs do they work on?

A

Netcat - Linux / MacOS

Test-NetConnection - Windows

24
Q

When using the netcat tool, how can you tell if the connection has succeeded or failed?

A

Failed - command will exit.

Success - will see a blinking cursor waiting for more input.

25
Q

What are 2 flags you can use with netcat?

A
  • z = zero input / output mode, do not want to send / receive data from the port.
  • v = verbose, makes the output more legible for humans.
26
Q

How would you enter a netcat and a Test-NetConnection command in the shell, to test connection to googles port 80? (with at least one flag)

A

netcat = “nc -v -z google.com 80”

Test-NetConnection = “Test-NetConnection google.com -port 80”

27
Q

What is a command you can use to look up the IP of a domain? (name resolution tool)

A

nslookup twitter.com

28
Q

What are public DNS servers? Give 2 IP addresses and name who they belong to.

A

Name servers set up so anyone can freely use them.

Level 3 communications = 4.2.2.4
Google = 8.8.8.8