1.3.3 Networks Flashcards
Are the internet and the world wide web the same thing?
Explain
No
The internet is the service that allows computers to connect to each other, the world wide web is a collection of web pages stored on computers that are connected via the internet.
What is a URL?
The full address of an internet resource.
What does a URL specify?
The location of the resource on the internet
The resource name
The file type
What is the job of internet registries?
They hold records of all of the possible domain names that are in use and available for purchase.
They assign an IP address to a domain name and track which addresses are assigned to which names
Give some examples of TLDs?
.uk
.fr
.de
Give an example of some 2LDs.
.co
.sch
.gov
What does a fully qualified domain name contain?
- Host server name
- Website name
- Domain suffix
What is the difference between a fully qualified domain name and a website domain name?
A website domain name does not include the host server.
Describe the makeup of a fully qualified domain name.
[HOST].[WEBSITE NAME].[2LD].[TLD]
What does IP address stand for?
Internet protocol address
What is an IP address
A unique address that is assigned to a network device
Indicates where data has originated from and where it is to be sent
What is a wide area network?
A network of inter-connected networks spread over a large geographical area.
What do wide area networks depend on?
Third party carriers to provide connections
e.g. cable under Atlantic ocean connecting Europe and USA
What is a local area network?
A number of computers connected to each other in a close geographical area.
What can users on a local area network do?
Use connected peripherals, such as printers
Access other computers
Describe a bus topology.
All computers and peripherals are connected to a single cable.
There are terminators at either end of the cable.
What is the main advantage of a bus topology?
It is very cheap to install as only a single cable is required with no additional hardware.
What are some disadvantages of a bus topology?
- If the main cable fails, none of the computers can communicate
- If there is heavy traffic on the network, performance will degrade
- All computers on the network can see all of the data flowing - low security
Describe a star topology.
Each device on the network is connected via a central node which acts as a router to only send the correct information to the relevant computer,
What are some advantages of a star topology?
- If a cable fails, only the computer that is connected via that cable cannot communicate
- Performance does not degrade with heavy use
- No “collisions” of data
- Secure as messages are only sent to the computers which they are supposed to
- Easy to add more devices to the network
What are some disadvantages of a star topology?
- They are expensive to install as they require lots of wire and a centralised router
- If the router goes down, none of the computers can communicate
What is a physical topology?
Its actual design layout - how the system is wired
What is a logical topology?
The shape of the path that data takes as it travels through the system.
Physical and logical topologies are _____ of each other.
Independent
Give an example of how a network may use a different logical and physical topology.
It may be wired as a physical star topology but data may flow using a logical bus topology.
What is a mesh topology?
All of the computers on the network are connected to every other computer on the network.
How many nodes require a connection to the internet in a mesh network?
Only one
How do the computers in a mesh network connect to each other?
Wirelessly
What are some advantages of a mesh network?
- Reduced need for cabling - wireless
- The more nodes that are installed, the more possible routes and therefore the more redundant the network becomes
- No central point of failure
What does “self healing” mean when talking about mesh networks?
If a node goes down, the traffic is rerouted using the other nodes so the system is not affected.
What is circuit switching?
When a direct link between two devices is made for the duration of the communication and the information is sent down this path.
What is a disadvantage of circuit switching?
Because the link made stays active for the entire time, no other connections can use this link while it is in use.
What is an advantage of circuit switching?
Data arrives in the order that it is sent, meaning less processing has to happen to understand the message.
What is packet switching?
When data is split up into smaller units called packets and sent separately across a network on the fastest route available at the time. The packets are combined at the end to form the message.
What information does the payload of a packet contain?
- Actual data
- Checksum
- End of packet marker
What two main parts can a packet be split into?
Header and payload
What information does the header of a packet contain?
- Source address
- Destination address
- Packet sequence number
- Protocol
Why is the source address included in the packet header?
So that the receiver can verify that the packet is coming from the correct sender and request extra packets.
Why is the destination address included in the packer header?
So that the packet is sent to the correct receiver.
Why is the packet sequence number included in the packet header?
So that the packets can be reassembled in the correct order and that any missing packets can be identified and requested to be resent.
(would look like 4/18 for example)
Why is the protocol included in the packet header?
So that when the packets are received, they are processed in the correct way.
For example a packet with the SMTP protocol will be processed as an email, not a website.
What is the job of the checksum in a packet?
It is a hash value based on the data in the packets.
When packets are received, if the calculated hash value does not match the data in the packet it will be assumed to be corrupted and a new copy will be requested.