02 - Networks and The Internet | 03. Introduction To Network Basics Flashcards
How are we able to access context online?
Networking
Your device uses a _________ connection and goes through a series of defined ________ protocols to send and receive information.
NETWORK
What is a network?
A network is two or more computers or devices that are linked in order to share information.
Why are our computers and devices able to communicate?
Our computers and devices are able to communicate due to a large set of standards, much like we have road systems and traffic protocols when we drive a car. These network standards have been built by the community over the decades, and these standards guide engineers and security professionals.
When we talk about a network that could be anything connecting ______________ devices.
TWO OR MORE
Networks are broken into subsets based on what?
Based on their SIZE and FUNCTION
What are the most common network types?
- LAN
- CAN
- WAN
What is a CAN?
A Campus Area Network (CAN) connects multiple computers and devices over a slightly larger area. In many cases, these types of networks will connect multiple buildings located in the same vicinity. You may see these networks in a university where multiple buildings and outdoor spaces provide students with network access.
What is a LAN?
A Local Area Network (LAN) is a smaller network that connects multiple devices in a limited area. Examples of LANs include small offices, a home, or any other network contained within a small area.
What is a WAN?
A Wide Area Network (WAN) connects multiple computers over a geographically large area. Large, international organizations may operate these types of networks. To ensure that computers spread over large regions are able to communicate, companies may use a VPN (Virtual Private Network) to connect systems securely. A VPN can allow systems across large regions to connect and interact with one another on the same network.
Is the internet classified as a LAN, CAN, or WAN?
WAN
What does OSI Model stand for?
Open Systems Interconnection Model
When was OSI Model made and what is it for?
The OSI (Open Systems Interconnection) Model was developed in the 1970s and 1980s, and it is a conceptual model that breaks networking into seven separate layers. Each layer refers to a set of functions that are responsible for specific tasks.
The layers start from physical signals all the way up to the web applications we interact with. Each layer generally only interacts with the layer below it and provides useful tools or information to the layer above it.
Why is OSI helpful?
OSI is used to help us categorize network processes so we can communicate about them during troubleshooting and while improving security.
How many layers are in the OSI model?
7
What are the seven layers to the OSI model from bottom to top?
- Physical (ethernet cables, bluetooth, modem, repeater)
- Data Link (data frames, MAC addresses)
- Network (Data Packets, Routing)
- Transport (Data Delivery & Transport Protocol, Error Inspection)
- Session (Session Management, Session ID, Time Left)
- Presentation (En/decrypting & Presenting Data)
- Application (End User Applications)
PDLNTSPA
What is the 1st layer of the OSI model?
The physical layer
What does the Physical Layer in OSI do?
The Physical, and lowest layer of the model, covers how unstructured data, like bits, is transmitted. Some concrete examples of this are the ways wires are configured, the way signals are transferred over those wires, and the radio frequencies computers use.
The lowest layer of the OSI reference model is the physical layer. It is responsible for the actual physical connection between the devices. The physical layer contains information in the form of bits. It is responsible for transmitting individual bits from one node to the next. When receiving data, this layer will get the signal received and convert it into 0s and 1s and send them to the Data Link layer, which will put the frame back together.
What are technologies that are commonly used in the Physical layer in OSI?
Technology such as WiFi, Bluetooth, and cable standards such as CAT5 and CAT6 all operate at this layer.
This layer also includes the hardware part of modems, adapters, and repeaters.
Hub, Repeater, Modem, and Cables are Physical Layer devices.
Network Layer, Data Link Layer, and Physical Layer are also known as Lower Layers or Hardware Layers.
What is the Physical layer doing functionally in OSI?
Over these wires and signals, the raw data bits are received as a stream of 0s and 1s. Fixing errors that occur just at this layer means considering physical damage or interference.
- Bit Synchronization: The physical layer provides the synchronization of the bits by providing a clock. This clock controls both sender and receiver thus providing synchronization at the bit level.
- Bit Rate Control: The Physical layer also defines the transmission rate i.e. the number of bits sent per second.
- Physical Topologies: Physical layer specifies how the different, devices/nodes are arranged in a network i.e. bus, star, or mesh topology.
- Transmission Mode: Physical layer also defines how the data flows between the two connected devices. The various transmission modes possible are Simplex, half-duplex and full-duplex.
What is the layer above and below the Physical layer in OSI?
Below: Nothing
Above: Data Link
What is the 2nd layer of the OSI model?
The Data Link Layer
What does the Data Link Layer in OSI do?
The Data Link layer covers how data is sent from device to device when they are connected on the same local network.
The data link layer is responsible for the node-to-node delivery of the message. The main function of this layer is to make sure data transfer is error-free from one node to another, over the physical layer. When a packet arrives in a network, it is the responsibility of the DLL to transmit it to the Host using its MAC address.
What are technologies that are commonly used in the Data Link layer in OSI?
It involves physical addresses of devices, called Media Access Control (MAC) address. All devices have a unique 48-bit MAC address where the first 24 bits relate to the manufacturer, and the last 24 bits make it unique to each device.
The Data Link Layer is divided into two sublayers:
Logical Link Control (LLC)
Media Access Control (MAC)
The packet received from the Network layer is further divided into frames depending on the frame size of the NIC(Network Interface Card). DLL also encapsulates Sender and Receiver’s MAC address in the header.
The Receiver’s MAC address is obtained by placing an ARP(Address Resolution Protocol) request onto the wire asking “Who has that IP address?” and the destination host will reply with its MAC address.