Unit 10 - The Internet Flashcards

1
Q

What is the backbone of the internet?

A

The backbone is a set of dedicated connections that connect several large networks at various points across the world. These networks are connected to other regional networks, often controlled by ISPs.

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

What is the name for the “www.bbc.co.uk” in “www.bbc.co.uk”?

A

It is a FQDN (Fully Qualified Domain Name).

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

What is the name for the “www” in “www.bbc.co.uk”?

A

It is the host.

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

What is the name for the “bbc.co.uk” in “www.bbc.co.uk”?

A

It is the domain name.

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

What are the three components of a URL? (refer to http://www.bbc.co.uk/index.html for help)

A
  • The protocol
  • The Fully Qualified Domain Name
  • The resource being accessed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the purpose of DNS (Domain Name System) servers?

A

DNS servers are dedicated computers containing an index of domain names and their corresponding IP addresses.

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

What are the five global Internet Registries and their purposes?

A

The five global Internet Registries are registries responsible for allocating IP addresses to specific domain names. This is to ensure all IP addresses are unique.

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

What is the process of a data packet routing between networks?

A

Routers have information stored about available routes to the target destination. They then choose the best router to forward the packet onto, each pass is called a “hop”.

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

What are the three components of a packet?

A

A packet contains a header, a payload and a trailer.

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

What information is contained within a packet header?

A
  • Recipient’s address
  • Sender’s address
  • Hop limit/TTL (Time To Live)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is contained within a packet trailer?

A

The packet trailer contains error checking components that verify the received data hasn’t been corrupted.

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

When is a gateway required between networks?

A

A gateway is required when then two networks use different protocols and are often combined with routers. They modify data in the header to suit the change in protocols.

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

What does a firewall do to protect a network?

A

Firewalls only open specific ports that allow certain packets to pass through while blocking others.

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

Packet filtering process:

A
  • Data packets are inspected by firewall

- If the packet is to be allowed through, the firewall temporarily opens the required port.

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

Stateful inspection process:

A

The firewall inspects the payload of the packet before allowing access and remembers actions for future decisions.

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

Functions of a proxy server:

A
  • Makes web requests on behalf of a computer, hiding the request IP address from the recipient.
  • Enables anonymous surfing.
  • Can filter undesirable online content.
  • Logs user data with their requests.
  • Holds a cache of recently visited websites.
17
Q

The four layers of the TCP/IP protocol stack:

A
  • Application layer
  • Transport layer
  • Network layer
  • Link layer
18
Q

Purpose of application layer:

A

Provides services for applications that want to communicate across a network, such as SMTP and FTP protocols. Doesn’t actually sent the data, just decides the rules.

19
Q

Purpose of transport layer:

A

Uses TCP to establish a connection between sender and receiver. Data is split up into multiple packets, adding the port to be used. This layer at the receiving end confirms that packets have been sent and requests resends of those that are lost.

20
Q

Purpose of network layer:

A

Uses IP to address packets with source and destination IP addresses. Routers forward the packet towards the endpoint (socket) via a routing table.

21
Q

Purpose of link layer:

A

Adds the MAC address of the physical NIC that packets should be sent to at the IP address. MAC addresses change with each hop.

22
Q

What happens in the TCP/IP process when a message is recieved?

A

The message is passed back up through the layers, stripping what they each added. e.g. the link layer removes the MAC address.

23
Q

What is SSH?

A

SSH is an encrypted protocol that allows secure communication between nodes across a network.

24
Q

What does SSH do?

A

SSH can be used to create a tunnel through a network. This tunnel can allow passage of data that might usually be blocked.