Internet Communication Flashcards

1
Q

What does circuit switching do?

A
  • Creates a direct link between two devices for the duration of the communication.
  • Involves creating a communication connection between two endpoints for the duration of a phone call or transfer of data.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why was packet switching developed?

A

Allow simultaneous data transfer along the same channel.

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

What are some disadvantages of circuit switching?

A
  • Bandwidth is wasted during the periods when no data is being sent.
  • Two devices must transmit and receive data at the same rate, so circuit switched networks can only connect computers or devices that operate at the same transfer rate.
  • Switches are used to connect and disconnect the circuits, electrical interference is produced, may produce corrupt or lost data if the path is being used to transmit data.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are some advantages to using circuit switching?

A

Exclusive connection between two devices for the duration of the communication, data segments arrive in the same order that they are sent, simplifying the process of reconstructing the message at the recipient end.

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

What is packet switching?

A

A method of communicating packets of data across a network on which other similar communications are happening simultaneously.

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

What happens to data that is to be transmitted across a network?

A

Data is broken into equal sized chunks called data packets, and assembled again at the receiving end.

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

Why is splitting data into data packets better?

A

Increases network efficiency and reliability.

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

What does each packet contain?

A

• Header
• Payload containing the body of data being sent.
Some data packets may contain a trailer section with:
Either:
• Checksum
Or
• Cyclical Redundancy Check

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

What path do packets take?

A
  • Sent across networks that have multiple connections with multiple routes through to a destination.
  • Each packet takes the fastest available route
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What happens to data packets once received?

A

Packets are re ordered by the receiving node

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

What are routers used for?

A

Connect at least two networks, commonly two LANS or WANS.

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

What do routers do?

A

Forward data packets from one network to another.

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

What does the router store?

A
  • Each router stores data about the available routes to the destination node.
  • Looks up the destination IP address in its routing table to find the best router to forward the packet to.
  • Routers continue to forward the packet until it reaches its destination node
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a hop?

A

Each transfer between routers.

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

What is a data packet?

A

A segment of data that needs to be sent, often referred to as the payload.

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

Why are packets kept small?

A

To ensure that individual packets do not take excessive time to transfer preventing other packets from moving.

17
Q

What does the packet header contain?

A
  • Packet header contains the recipient’s address so that it can be directed appropriately across the network.
  • Sender’s and recipient’s IP addresses.
  • The protocol being used with this type of packet
  • Number of the packet in the sequence being sent.
  • Time to live/Hop limit, after which the data packet expires.
18
Q

What does the packet trailer contain?

A
  • Error checking components that verify the data received in the payload has not been corrupted on transfer
  • Techniques such as check-sums of cyclical redundancy checks are used to check the data by the receiving host.
  • The same checksum is recalculated at the destination end.
  • If they do not match, the data become corrupted and is refused and a a new copy is requested to be sent again.
19
Q

How do check-sums work?

A

• Techniques such as check-sums of cyclical redundancy checks are used to check the data by the receiving host.
• The same checksum is recalculated at the destination end.
• If they do not match, the data become corrupted and is refused and a a new copy is requested to be sent again.
/
• Creates and attaches a hash total calculated from the data contained in the packets
• This hash total commonly involves adding up the total number of 1s in the transmission.
• The CRC checksum is recalculated for each packet upon receipt and matched to help verify that the payload data has not changed during transmission.
• If the CRC totals differ, the packet is refused with the suspected data corruption and a new copy is requested from the sender.

20
Q

What does packet switching rely on?

A

• Ability of packets to be sent from sender to recipient along entirely separate routes from each other.

21
Q

What happens when packets are sent?

A

• At the moment that a packet leaves the sender’s computer, the fastest or least congested route is taken to the recipient’s computer, the can easily be re assembled in the correct order at the receiving end and any packets that don’t make it can be requested again.