Network Fundamentals Flashcards
What is the “client-server” model?
The Client-Server model is a distributed application structure that manages tasks and
workloads by sharing them among providers of resources and services (servers) and
delivers responses to service requesters (clients).
An alternative method is to use broadcast or multicast channels to distribute
information.
Identify several common network protocols
HTTP (110), HTTPS (443), DNS (53), DHCP (67, 68), FTP (20,21), SMTP (25), SSH (22), ICMP (143)
What is the function of a “network model”?
Set standards that allow devices to communicate without requiring continuous configuration in
different device platforms.
Name the 7 layers and their functions in the OSI Model.
Physical, Data Link, Network, Transport, Session, Presentation, Application
Name a protocol associated with each of the OSI layers
Physical - Ethernet (IEEE802.3), Wi-Fi (IEEE 802.11), FDDI, RJ45
Data Link - Ethernet, Frame relay EEE 802.5/ 802.2,
Network - IP IPv4, IPv6, ICMPv4, ICMPv6, IPX
Transport - TCP, UDP, RTP, SCTP
Session - Tunneling. SQL NFS, NetBios names, RPC,
Presentation - Encryption, Encoding, SSL/TLS, ASCII, EBCDIC, TIFF, GIF, PICT,JPEG, MPEG, MID
Application - DNS, DHCP, SSH, HTTPS, FTP, SNMP, SMTP, POP3
What is data “encapsulation”?
Data encapsulation refers to sending data where the data is augmented with successive layers of control information before transmission across a network. The reverse of data encapsulation is decapsulation, which refers to the successive layers of data being removed (essentially unwrapped) at the receiving end of a network.
Identify the 4 layers of the TCP/IP model?
Network Access, Internet, Transport, Application
What are TCP and UDP?
TCP and UDP are protocols that operate in Layer 4 (Transport Layer) and are used to
transmit data over the network.
What is TCP?
Transport Layer Protocol - TCP is trusted and more commonly used than UDP and is fully described in RFC 793.
It verifies the availability of all parties before initiating a connection by performing a
three-way handshake. It then marks packets and makes sure they are received in the
correct order
What is UDP
UDP is less strict about data integrity and is more speed oriented. It simply sends
packets, without checking the data, even if no device is ready to receive them.
UDP is fully described in RFC 768.
What is the function of the 3-way handshake?
Communication between network devices that
use TCP.
The handshake is known as “3-way” because it includes 3 steps:
1. The client sends “SYN”.
2. The server responds with “SYN-ACK”.
3. The client finalizes with “ACK
What is checksum?
Checksum is a piece of data that is calculated and represented as a number and is
used for data integrity and error detection.
What is a logical port?
Logical port is a number assigned to a “logical” connection, which
is used to represent a service or protocol on the end device.
What is a “well-known” or “known” port?
Well-Known Ports (0-1023) - Port numbers in the “well-known” range are assigned to
commonly used and essential protocols. The port numbers are permanent,
What is the range of registered ports?
Registered Ports (1024-49151) - IANA assigned these ports for IT companies that want
to register them for proprietary applications.
What is the function of private ports?
Dynamic and Private Ports (49152-65535) - This group covers the remaining logical
ports that are available for any application. The port range is known as “client ports”
and is usually used for logical client connection.
What is the function of “netstat -ab”?
To inspect open ports, use the command netstat –ab, where: a represents ‘all’, and b
represents the names.