Chapter 3: Exploring Network Technologies and Tools Flashcards
What does ARP stand for and what does it do?
Address Resolution Protocol: Resolves IPv4 addresses to media access control (MAC) addresses.
See page 74 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does RTP stand for and what is its function?
Real-time Transport Protocol: Delivers audio (voice) and video over IP networks. This would include voice over IP communications, streaming media, video teleconferencing, and deceives that use web-based push-to-talk features.
See page 74 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SRTP stand for and what is its function?
Secure Real-time Transport Protocol: Provides encryption, message authentication, and integrity for RTP. This protocol protects against replay attacks.
See page 74 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SIP stand for and what is its function?
Session Initiation Protocol: Use to initiate, maintain, and terminate voice, video, and messaging sessions. After SIP establishes the session RTP or SRTP transports the audio or video.
See page 74 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does FTP stand for, its function, and what ports are used?
File Transfer Protocol: Used to upload, download, and transfer files to and from an FTP server in clear text.
FTP active mode uses TCP 21 for control signals and 20 for data
FTP passive (PASV) mode uses TCP 21 for control signals and a random port for data
See page 75 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does TFTP stand for, its function, and what ports are used?
Trivial File Transfer Protocol: Used to transfer smaller amounts of data (i.e. communicating with network devices) within a network in clear text and not over the internet.
TFTP uses UDP port 69
See page 75 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SSH stand for, what is its function, and what ports are used?
Secure Shell: Provides encryption for traffic over the internet and is used to encrypt other protocols such as FTP (SFTP).
SSH uses TCP port 22 for encrypted traffic
See pages 75, & 76 - 77 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SCP stand for and what is its function?
Secure Copy: is based on SSH and is used to copy encrypted files over a network.
See page 75 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SSL stand for, what is its function, and what ports are used?
Secure Socket Layer: Used to encrypt HHTPS traffic, and other protocols such as LDAP and SMTP. It has since been deprecated due to vulnerabilities and replaced by TLS.
Ports used with SSL depend on the protocol it is encrypting, however, it is not recommended that SSL is used because it has known vulnerabilities.
See pages 75 & 76 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does TLS stand for, what is its function, and what ports are used?
Transport Layer Secure: Replaced SSL. Provides encryption for HTTPS traffic and is used to encrypt other protocols such as FTP (FTPS).
Many protocols that support TLS use STARTTLS which upgrades an unencrypted connection to an encrypted connection on the same port.
Ports used with TLS depend on the protocol it is encrypting.
See pages 75 & 76 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does IPSec stand for, what is its function, and what ports are used?
Internet Protocol Security: is used to encrypt IP traffic (IPv6 & IPv4) by encapsulating and encrypting IP packet/payload and uses tunnel mode to protect VPN traffic.
IPsec uses the Internet Key Exchange (IKE) over UDP port 500 to create a security association for VPN.
See pages 75, 128, & 129 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What are the two main components of IPsec and their protocol ID (think in terms of the CIA triad)?
Authentication Header (AH): IPsec AH allows each of the IPsec conversation hosts to authenticate with each other before exchanging data. AH provides authentication and integrity.
AH uses protocol ID 51.
Encapsulating Security Payload (ESP): IPsec ESP encrypts data and provides confidentiality. ESP includes an AH and provides confidentiality, authentication, and integrity.
ESP uses protocol ID 50
See pages 75, 128, & 129 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SFTP stand for, what is its function, and what ports are used?
Secure File Transfer Protocol: Uses SSH to encrypt FTP.
SFTP uses TCP port 22 to transmit data
See page 75 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does FTPS stand for, what is its function, and what ports are used?
File Transfer Protocol Secure: Is an extension of FTP and uses TLS to encrypt FTP traffic.
FTPS can use TCP port 21 (control signal) and TCP port 20 (data). Also, some implementations of FTPS use TCP ports 989 and 990.
See page 76 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does SMTP stand for, what is its function, and what ports are used?
Simple Mail Transfer Protocol: Sends emails between client and SMTP server.
SMTP uses TCP port 25 for unencrypted emails
SMTP uses TCP port 587 for encrypted emails using TLS
See page 76 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does POP3 stand for, what is its function, and what ports are used?
Post Office Protocol version 3: Transfers email from servers down to clients.
POP3 uses TCP port 110 for unencrypted connections
Secure POP uses TCP 995 for encrypted connections
See page 76 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does IMAP4 stand for, what is its function, and what ports are used?
Internet Message Access Protocol version 4: Use to store emails on the email server, as well as allow users to manage and organize emails in folders on the server.
IMAP4 uses TCP port 143 for unencrypted connections
Secure IMAP uses TCP port 993 for encrypted connection
See page 76 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does HTTP stand for, what is its function, and what ports are used?
Hyper Text Transfer Protocol: Transmits web traffic on the internet and in the intranets in clear text. Hypert Text Markup Language (HTML) is used to display webpages.
HTTP uses TCP port 80
See page 77 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does HTTPS stand for, what is its function, and what ports are used?
Hyper Text Transfer Protocol Secure: Encrypts web traffic using TLS (commonly displayed as HTTP over SSL/TLS).
HTTPS uses TCP 443
See page 77 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study
What does LDAP stand for, what is its function, and what ports are used?
Lightweight Directory Acess Protocol: Specifies the formats and methods used to query directories, such as Microsoft Active Directory Domain Service.
LDAP uses TCP port 389 for unencrypted connection
LDAP Secure (LDAPS) uses TCP port 636 using TLS
See page 77 of CompTIA Security+ SY0-601: Get Certified Get Ahead by Darril Gibson for an in-depth study