Module 2: Networking Flashcards
(37 cards)
What is a computer network?
A computer network is a system that connects numerous independent computers in order to share information (data) and resources.
Why do networks exist?
Networks exist to transfer data at literal lightning speeds. They improve daily life, business, and even warfare. They also facilitate even the most mundane office tasks.
What does a router do?
A router sends traffic between different networks. It’s a computer with software on it that is capable of routing traffic.
What does a switch do?
A switch sends traffic between different hosts on the same network.
What is a wireless access point?
A wireless access point allows hosts to connect to the network wirelessly.
What is an IP address?
A unique ID for devices connecting to a network, used to send and receive information.
What is the structure of an IPv4 address?
It is made up of four sections, each called an “octet”. Each octet, in binary, is comprised of eight bits, making a total of 32 bits for the IP address.
How does binary counting work?
Binary counting uses multiples of two, from right to left: 1’s, 2’s, 4’s, 8’s, 16’s, etc., based on electrical signals being “ON” (1), or “OFF” (0).
What is a subnet mask and how does it work?
A subnet mask identifies which portion of the IP address is the Network ID; the remainder is considered the Host ID.
What is CIDR notation?
CIDR Notation is a shorthand way of representing any given IP address with its Subnet Mask. (Ex. 192 . 168 . 0 . 0 / 24) (The /24 represents the number of bits in the Subnet Mask. That is:)
What is an APIPA?
Automatic Private IP Addressing (APIPA) is a DHCP failover mechanism used by all Microsoft Windows Operating Systems which assigns an address when a DHCP server is not available. This allows hosts on the same network to be able to communicate with each other in spite of not being assigned an address by a DHCP server.
What are Loopback Addresses?
The address range 127.0.0.0 to 127.255.255.254 are referred to as “loopback” addresses. They allow a computer to confirm that it can use TCP/IP and allow for different programs running on the same machine to communicate with each other using IP.
What are Private IP Addresses?
A specific set of IP addresses used for private network use. You’ll likely see these assigned to your personal devices whenever you are working from home or an office.
What are Ports?
Ports are essentially endpoints where network connections can start and or end. Ports can be considered the “apartment number” or “suite number” in an apartment building where the apartment building is the “IP Address”.
What are Protocols?
A network protocol is an established set of rules that determine how data is transmitted between different devices in the same network.
What is TCP?
(Transmission Control Protocol)
TCP is considered a “connection oriented” protocol and is used when it’s absolutely imperative that all data is successfully transmitted (for example, when sending files) at the cost of speed.
What is UDP?
(User Datagram Protocol)
UDP offers best-effort delivery of data but is much quicker with less overhead.
What is HTTP?
(Hypertext Transfer Protocol)
HTTP is a protocol used by your computer usually when browsing the internet. The port for HTTP is 80 (TCP).
What is HTTPS?
(Hypertext Transfer Protocol Secure)
HTTPS is a secure version of HTTP. The port for HTTPS is 443 (TCP).
What is DHCP?
(Dynamic Host Configuration Protocol)
DHCP is a protocol used to assign an IP address to devices when they are first connected to the network. The ports for DHCP are 67 and 68 (UDP).
What is DNS?
(Domain Name System)
DNS is a protocol whose primary goal is to convert human readable domain names (such as www.google.com) to IP addresses, which computer can use and understand. The port for DNS is 53 (Both TCP and UDP).
What is RDP?
(Remote Desktop Protocol)
RDP is used when remotely connecting from one computer to another to gain a remote desktop GUI. The port for RDP is 3389 (TCP).
What is SSH?
(Secure Shell)
SSH is used when remotely connecting from one computer to another and spawning a command line. The port for SSH is 22 (TCP).
What is ICMP?
(Internet Control Message Protocol)
ICMP is the protocol that “ping” uses. Ping is a command tool used to check if another computer is reachable on the network line. ICMP does not have a port.