Common networking protocols Flashcards
Frame Relay
WAN protocol that operates at the physical and data link layers of the OSI model.
For data transmission for intermittent traffic between LANs and between endpoints in a WAN. Frame Relay is a packet-switching technology
Transmission Control Protocol (TCP)
A connection-oriented transport protocol.
If a segment is dropped, the sender can detect that drop and retransmit that dropped segment. sender can determine which segments were successfully received.
TCP operates at the transport layer of the OSI model.
TCP three-way handshake.
- It sends a message called a SYN to the target host.
- The target host opens a connection for the request and sends back an acknowledgment message called an ACK (or SYN ACK).
- The host that originated the request sends back another acknowledgment, saying that it has received the ACK message and that the session is ready to be used to transfer data.
UDP(User Datagram Protocol)
A connectionless transport protocol.
- Unreliable transport(the sender is unaware of the drop, and no retransmission occurs.)
- UDP operates at the transport layer
File Transfer Protocol (FTP)
for the uploading and downloading of files from a remote host running FTP server software.
FTP is considered insecure. not encrypted.
FTP works at the transport layer of the OSI model.
SFTP Secure File Transfer Protocol
A protocol that transfers files between clients securly,Based on Secure Shell (SSH) technology, provides robust authentication between sender and receiver. It also provides encryption capabilities, which means that even if packets are copied from the network, their contents remain hidden.
TFTP Trivial File Transfer Protocol
A variation on FTP is TFTP,
Not secure
Associated with downloading stuff like firmware to a router.
It is connectionless(UDP)
SMTP
SMTP is a protocol that defines how mail messages are sent between hosts.
SMTP uses TCP connections to guarantee error-free delivery of messages.
HTTP(Hypertext Transfer Protocol)
HTTP, is the protocol that enables text, graphics, multimedia, and other material to be downloaded from an HTTP server.
HTTPS (Hypertext Transfer Protocol Secure)
uses a system known as Secure Socket Layer (SSL), which encrypts the information sent between the client and host
POP3 Post Office Protocol Version 3
A mechanisms for downloading, or pulling, email from a server.(Email stored at a central location)
IMAP4 Internet Message Access Protocol V4
Performs the same functions as POP3; IMAP4
An advantage over POP3. It uses a more sophisticated authentication system, which makes it more difficult for people to determine a password.
Telnet
Telnet is a virtual terminal protocol. It enables sessions to be opened on a remote host, and then commands can be executed on that remote host.
Telnet is commonly used to access routers and other managed network devices.
One of the problems with Telnet is that it is not secure. As a result, remote session functionality is now almost always achieved by using alternatives such as SSH.
Secure Shell (SSH)
A secure alternative to Telnet. SSH provides security by encrypting data as it travels between systems. This makes it difficult for hackers using packet sniffers and other traffic-detection systems. It also provides more robust authentication systems than Telnet
2 Versions: SSH1 and SSH2. Of the two, SSH2 is considered more secure.
The two versions are incompatible
SSH is the foundational technology for Secure File Transfer Protocol (SFTP).
(ICMP) Internet Control Message Protocol
error checking and reporting functionality.(works with IP)
Main Uses: PING,source quench(telling the sender to slow down. This action prevents packets from dropping and having to be re-sent.)
Address Resolution Protocol (ARP)
ARP, is responsible for resolving IP addresses to Media Access Control (MAC) addresses.
When a system attempts to contact another host, IP first determines whether the other host is on the
same network by looking at the IP address.
If IP determines that the destination is on the local network, it consults the ARP cache to see whether it has a corresponding entry. The ARP cache is a table on the local system that stores mappings between data link layer addresses (the MAC address or physical address) and network layer addresses (IP addresses).