Networks Part 1 (Overview) Flashcards

1
Q

What is a computer network?

A

A collection of computers/nodes connected by communication links (can be wired or wireless).

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

What is a “network node”?

A

A device that is connected to a network.
It requires a unique address so it can be found by other devices.

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

What are the components of a network?

A
  1. Applications and Users - things that use the network to get some form of service.
  2. Host/End System/Node - things that supply or receive data, often interfaces that allow the functioning or access to a network.
  3. Links/Channels - things that connect nodes (can be wired or wireless)
  4. Communication Devices/Nodes - relay messages between links towards destination host (Repeaters, NICs, Switches ect..)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the different types of networks based on scale?

A
  1. Personal Area Network (1 square meter)
  2. Local Area Network (Room to a Campus)
  3. Metropolitan Area Network (City)
  4. Wide Area Network (Country/Continent)
  5. The Internet (Planet)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is MANET?

A

Mobile Ad-hoc Network
A network of nodes that dynamically self organise and allow transfer of data over each other.

E.g In nodes A-B-C, A might be out of range of C, but B can be used as a relay node to transfer data between nodes that would have been out of range from one another.

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

What is the MANET network?

A

Mobile Ad-hoc Network
A network of nodes that dynamically self organise and allow transfer of data over each other.

E.g In nodes A-B-C, A might be out of range of C, but B can be used as a relay node to transfer data between nodes that would have been out of range from one another.

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

What is the RFID network?

A

Radio Frequency Identification
A network of “Readers” which send signals to “Tag” nodes, labels which have no components or battery. The “Tag” nodes are able to reflect the signals of the “Readers”, which allows it to identify the tag.

This can enable systems such as smartcards or NFC contactless.

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

What is a “Sensor Network”?

A

A network where a group of sensors act as nodes. Each sensor collects data, often in different locations, and reports the data back to a central location. The data can then be stored, viewed, and used in analysis.

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

What is a protocol stack?

A

A list of interconnected protocols used in a network layer.

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

What is a “service”?

A

A set of “primitives” (operations) that a layer provides to the layer above it.

Primitives tell a service to perform an action, or report on an action that has been taken by a peer entity.

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

What is a “connection-oriented service”?

A

A service where a connection is first established before sending data. All data sent will travel along the same route. Once it has finished transferring data, the connection is then released.

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

What is “connection-oriented packet switching”?

A

A service where no connection is established before sending data. Packets are sent with their full destination address, and make their own way to their destination, often taking different routes through different nodes. They are re-arranged into their correct order upon arriving at their destination.

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

What is OSI layer 1? What is its data unit?

A

The Physical Layer
Allows the activation, maintenance and deactivation of end systems by defining the specifications of the:

  1. Electronic Systems (Voltage levels, timing of signals)
  2. Mechanical Systems (Physical data rates)
  3. Procedures (Maximum Transmission Distances)
  4. Functional Specifications (Physical Connectors)
    not super sure on the (stuff)

Data unit is a bit.

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

What is OSI layer 2? What is its data unit?

A

The Data-Link Layer
Provides a data transmission service free from transmission errors between adjacent nodes using the physical layer.

It must:
1. Process acknowledgements of received data.
2. Detect and recover from damaged, lost and duplicate frames.
3. Make sure the transmitter doesn’t overload the receiver.
4. Control access to the medium in broadcast networks.

Data unit is a frame.

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

What is OSI layer 3? What is its data unit?

A

The Network Layer
Controls how a packet is routed from its source to its destination through a subnet.

It must:
1. Determine a route for each source/destination pair.
2. Perform congestion control (when there are too many messages in transmit)
3. Overcome the problem of switching between network types (moving between LAN and WAN protocols)

Data unit is a packet.

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

What is OSI Layer 4? What is its data unit?

A

The Transport Layer
The lowest end-to-end layer between source and destination applications.

It creates a distinct network connection for each transport connection. It can improve performance by by making multiple connections and transferring one data stream across all of them, or can share several transport connections onto one network connection to reduce costs.

Provides end-to-end flow control and error detection and correction. May provide addition congestion control.

Data unit is a segment.

16
Q

What is OSI Layer 5?

A

Session Layer
In charge of:
1. Dialogue control - co-ordinating the transmission and reception of data between multiple channels.
2. Token Management - making sure restrticted data is only provided to authorised connections.
3. Data Synchronisation - fixing errors and making sure data stays concurrent.

16
Q

What is OSI Layer 5?

A

Session Layer
In charge of:
1. Dialogue control - co-ordinating the transmission and reception of data between multiple channels.
2. Token Management - making sure restrticted data is only provided to authorised connections.
3. Data Synchronisation - fixing errors and making sure data stays concurrent.

17
Q

What is OSI Layer 6?

A

Presentation Layer
Concerned with the semantics and syntax of data rather than its transmission. It provides abstractions and translations between different network types with different protocols.
Often provides data encryption.

18
Q

What is OSI Layer 7?

A

Application Layer
Where software applications reside such as File Transfer, HTTP, DNS ect..