Networks Flashcards
What is the computer network?
Two or more computer devices linked together to communicate and share resources and data. A network can be wired or wireless
What are the ways a device/network connects to other networks?
• Routers and switches • Network interface cards • MAC address • Ethernet • Packet
What does a router do?
It is used to route data between two distinct networks. Usually between LAN and WAN
What does a switch do?
Used to connect devices on the same LAN together. Knows MAC address of each device on the LAN and only sends packets to the intended recipient
What do Network Interface Cards do?
They are required to connect a device to a network. Can be wired or wireless. Includes a MAC address built in
What does MAC stand for?
Media Access Control
What does the MAC address do?
Unique address for each network interface card. Set at the factory. Made up of 48 bits, shown as 12 hexadecimal characters - each pair is separated by a colon. First 6 characters identify the manufacturer. Next 6 characters identify the unique device
What is the difference between the internet and the world wide web?
The world wide web is web pages - it is a subset of the internet
What is the internet?
A universe-wide system of computer networks. A network of networks. A wide area network
What is the world wide web?
It is a combination of all resources and users on the internet that are using the Hypertext Transfer Protocol (Secure) HTTP/HTTPS. This includes all webpages you visit via a web browser
What is a star network?
A network where all computers have their own cable to a network switch. If a link fails, all other computers are not affected. It has consistent performance. Good for security. Expensive to implement. Single point of failure (switch)
What is a bus network?
All computers connected to a single cable. Very cheap to implement. More computers mean slower performance
What is ethernet?
A family of protocols for computers to transmit between each other on the same LAN. Nodes wait until the network is quiet, then transmit. If a conflict occurs, try again in a random amount of time. Transmits data in small chunks called frames - similar to packets
What is packet switching?
Packet switching involves splitting up data into small packets. These are sent from A to B via the best route, which isn’t necessarily the same route
What is a network protocol?
A set of rules that allows computers to communicate and exchange information over a network
What is internet protocol (IP)?
IP identifies the location (the internet location, not the geographical location) of a device on the internet. IP then can be used to route from A to B via a router. IP addresses are 32 bits long. It is 4 numbers from 000-255 separated by dots
What is TCP?
Transmission Control Protocol. It is used when data is required to make it to the recipient. TCP splits data up into packets and reassembles them at the other end. If any packet goes missing with TCP, it will be resent
What is UDP?
User Datagram Protocol. It is much simpler than TCP, as it is a send and forget approach - No error checking or checking the datagram was received. Used for video calls and gaming
What is HTTPS?
HyperText Transfer Protocol Secure. Used to transfer HTML web pages on the world wide web. It transfers from a web server to a web browser. HTTPS uses encryption to secure the connection
What is FTP?
File Transfer Protocol. A simple protocol for transferring files from an FTP server to a computer. Not used anymore. Uses 2 connections - control connection is used to send the instructions, data connection is used to send the requested file data
What are the two protocols in email?
SMTP - sending emails. IMAP - retrieving email from mail server to client
How does email work?
Email is sent between email servers, with email clients then requesting these emails from the email server
What is SMTP?
Simple Mail Transfer Protocol. It is used only for sending emails. It is also used to relay mails between different mail servers
What is IMAP?
Internet Message Access Protocol. It is used to access emails stored on a mail server. Emails remain on the server until deleted so multiple devices can use a single email account. It replaces the POP3 protocol