1. 3. 3 Networks Flashcards
1
Q
Characteristics of a Network
A
- Network, two or more computers are connected together allowing them to transmit data between each other and share peripherals
- Two types, Local Area Networks (LAN) and Wide Area Network (WAN)
2
Q
Advantages of Networks
A
- Users can share files, peripherals, and connections to other networks (internet)
- Users can access files from any computer on the network
- Servers can control security, central updates and central backups
- Allows communication with other people (emailing)
3
Q
Disadvantages of Networks
A
- Increased security risks to data
- Malware and viruses spread easier on networks; one computer affected rest at risk
- If server fails, computers connected may not work
- Computers may run slower if large amounts of data is travelling across the network
4
Q
LANs and WANs
A
- LAN, small geographical area, Infrastructure/equipment owned (school or home)
- WAN, large geographical area, Infrastructure/equipment hired from third parties (offices or the internet)
- Largest WAN is the Internet, this is made up of a series of smaller networks
5
Q
Protocols
A
- Set of rules/instructions defining how two computers communicate over a network
- They are a standard; all devices have designated method of communication with each other no matter the manufacturer
- Standards are a set of hardware and software specifications that allow manufactures to produce products and services that are compatible with each other
- Devices must share same protocol in order to exchange information (Same as languages)
- HTTP (Hyper Text Transfer Protocol), used for web page rendering
- HTTPS (Hyper Text Transfer Protocol Secure), same as HTTP but encrypted
- TCP/IP (Transmission Control Protocol/Internet Protocol), networking protocol used in routing packets through networks (Used between two routers for error-free transmission)
- POP3 (Post Office Protocol) & IMAP (Internet Message Access Protocol), mailing protocols, used for email access
- FTP (File Transfer Protocol), used for transmission of files over a network
- SMTP (Simple Mail Transfer Protocol), transfers outgoing emails between servers, also from email clients to servers
6
Q
The Internet Structure
A
- Internet is network of networks, allows communication of computers across the globe
- Continents connected with international backbone cables (usually underwater)
7
Q
TCP/IP Stack and Protocol Layering
A
Stack of networking protocols work together passing packets during communication, consists of 4 layers, Application Layer, Transport Layer, Network Layer and Link Layer
8
Q
Application Layer
A
- Top of stack, specifies protocol to be used, to relate the application being sent
- For example, if app is browser, selects HTTP, POP3 or FTP
9
Q
Transport Layer
A
- Uses TCP to establish end to end communication between source and recipient computer
- This layer splits data into packets, labelled with packet number, total num of packets and port number being used for communication
- If packets get lost, this layer on recipient computer requests retransmissions of lost packets
10
Q
Network Layer
A
- Adds source and destination IP addresses (IP address + Port Number = Socket address)
- Routers operate on this layer; it uses IP address to forward the packets
- Sockets used to specify device the packets sent to, and application being used on device
11
Q
Link Layer
A
- Connection between network devices, adds MAC addresses identifying Network Interface Cards of source and destination computer
- Device on same network, destination MAC address is address of recipient computer
- Device on different network, destination MAC address is address of the router
12
Q
Recipients Computer
A
- The TCP/IP is a stack keep in mind, on recipient’s computer layers go from bottom to top
- Once destination been reached following occurs
- MAC addresses are removed by the Link Layer
- IP Addresses are removed by the Network Layer
- Port Number is removed, and packets are reassembled at the Transport layer
- Data presented to recipient in form it was requested in at the Application Layer
13
Q
MAC Address Vs IP Address
A
- MAC address unique to every physical device
- Your MAC address tells me who you are
- Used in LAN to identify a computer system
- IP address is an address used to identify a single computer or a network of computers
- Your IP address tells me where you are
- Used in WAN to identify “roughly” the location of the target computer system
14
Q
DNS
A
- Domain Name System, used to name and organise internet resources
- Hierarchy, smaller domain separate larger domain with full stop (leeds.gov.uk)
- TLD stands for Top Level Domain 2LD stands for 2nd Level Domain
- Domain names easier to remember than IP addresses
- Used to link servers across the world, domain name system server (DNS server) translates domain names into IP addresses when accessing a website
15
Q
DNS process
A
- User requests a URL via a browser (www.bbc.co.uk)
- Browser sends domain name to DNS
- DNS matches domain name to an IP address, returns this to browser
- GET request for webpage sent to web server using IP address
- Requested web page returned to client’s web browser