Networking Basics Flashcards

1
Q

What is a server and what are it’s uses?

A

Server is a computer that serves a role of providing services to other devices over a network. For example there could be web hosting servers, database servers, email servers.

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

What is IP and how it’s built?

A

IP stands for internet protocol, and it is a numerical adress, that is used to identify devices over a network. It is build by 4 numbers each seperated by a period (which are called octets)

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

What is DNS,

A

DNS (Domain Name System) - a system that “changes” domain names into ip adresses, so that way we can connect to websites (server) with using their domain names, instead of ip adresses.

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

What is a purpose of a hub, a switch, and a router?

A

Hub is a device that allows differents computers to be connected, creating a network. Switch role is similiar with a difference, that when computer wants to connect to other computer over a network via hub, hub will send the data to every other computer in that network. Switch would send the data only to destined computer in that same situation.
Router is used to connect different networks with each other.

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

What is a modem?

A

Modem is a device that demodulates analogue signal that the internet uses, and passes it down to router as a digital signal, that computer use. And vice versa.

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

What is a difference between modem and a router?

A

Modem connects your computer to the Internet. A router connects computers together so they can share a modem.

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

What is a CPU cache?

A

CPU cache is CPU’s built-in memory. It stores RAM’s frequently used data, so that the CPU can access it without going to RAM, as connecting with RAM is much more slower than accessing CACHE. The process unfolds like this:
If cpu needs some data it will first search it in cache level 1, then level 2, then level 3, and if it doesn’t find it it will search for that data in RAM.

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

What is TCP?

A

It stands for Transmission Control Protocol, and it allows computers to connect to each other via network. It makes sure that data transferred is being recieved correctly, or if it is recieved at all.

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

What is UDP

A

User Datagram Protocol - it is a transmission protocol that allows computer to send data via network. It doesn’t check if data is being recieved correctly or recieved at all.

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

What is the use of a PING command?

A

The ping command is one of the most used tools for troubleshooting, testing, and diagnosing network connectivity issues. Ping works by sending one or more ICMP (Internet Control Message Protocol) Echo Request packages to a specified destination IP on the network and waits for a reply.
Examples:
ping google.com; ping 8.8.8.8 - if there is a problem connecting to google.com, but not to it’s ip (8.8.8.8) then it means there is a problem with DNS.
ping 127.0.0.1 (or localhost) - checks your system networking device.

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

What is a firewall, and two types of it?

A

A firewall is a network security device that monitors incoming and outgoing network traffic and permits or blocks data packets based on a set of security rules.
It can either be host-based firewall, or network-based firewall. First one is a piece of software, and it monitors network traffic to the single device. Latter checks traffic to whole network.

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

What is VLAN?

A

VLANs are used to divide a physical LAN into multiple broadcast domains to isolate services with the aim of improving the security and management of the network. Hosts within a VLAN can directly communicate only with other hosts in the same VLAN and must use a router to communicate with hosts in other VLANs.

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

What is FTP?

A

FTP stands for File Transfer Protocol and, as the name implies, it is a way of transferring files between computers.

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

What is Telnet and SSH?

A

Telnet is a system that allows to get access to command line access to a system over a network. SSH (Secure Shell) is the same, but much more secure.

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

What is port forwarding?

A

Port forwarding, sometimes called port mapping, allows computers or services in private networks to connect over the internet with other public or private computers or services.

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

How port forwarding works?

A

If we want to, for example, remotely control a computer over the internet, we (computer) would have to send given IP adress and port (that has to be a correct one that is assigned to remote control technology). IP:port is being picked up by reciever’s router, and if everything is configurated correctly, router would sent data to the computer we want to remote control.