9/8 Class Flashcards

1
Q

TCP and UDP

A

operate at Transport Layer of OSI Model
TCP: connection oriented(session is established)
guaranteed delivery
UDP: not guaranteed

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

TCP

A
three way handshake using a "flag field" set in the header
data transmitted in segments
SYN
SYN - ACK
ACK
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

TCP

A

the systems agree upon a TCP sliding window and “segment” byte size
after segments are sent error checking occurs

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

UDP

A

data transmitted in “datagrams”

not guaranteed, considered unreliable

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

IANA

A

assigns ports
well known ports 10-1023
registered ports 1024-49151
dynamic ports 49152-65535

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

ARP(address resolution protocol)

A

command shows contents of ARP
cache expires in predefined minutes
caches can be manually expired for troubleshooting

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

HTTP

A

plain text runs on TCP port 80

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

HTTPS

A

cipher text(encrypted) runs on TCP port 443

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

FTP

A

runs on TCP port 21(sometimes port 20 for data transfer)
used command line or via GUI
may or may not require a password
all communication is in plain text (unencrypted)
unless SFTP or FTPS are used

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

TFTP

A

runs on UDP port 69
does not require a password
all communication is in plain text(unencrypted)
most often used for system administration, such as booting routers or firmware updates, in a controlled environment

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

telnet

A

runs on TCP port 23
command line remote operation of system
usually unix or linux, but can be used in windows
unencrypted, thus rarely used, instead SSH(secure shell) is more commonly used

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

RDP Remote Desktop Services

A

runs on TCP port 3389
GUI equivalent of telnet
show the OS desktop in a window

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

encryption sockets layer (SSL)

A

secures web sites (via HTTPS) and VPNs
provides encryption for confidentiality integrity and authentication
being replaced by TLS
runs on any TCP port (usually 443 for HTTPS)
Public Key Infrastructure (PKI) is required to manage Digital Certificates that are at the foundation of SSL
transport layer security (TLS) will replace SSL

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

Secure Shell (SSH)

A

enables encrypted communications
often used in place of Telnet
does not require PKI instead using share keys
can tunnel other protocols
often used for cloud based communications

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

internet protocol security IPSec

A

authentication is accomplished with the AH authentication Header
encryption is accomplished with ESP(encapsulating security protocol)
can be challenging with firewalls
commonly used with VPNs

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

mail protocols

A
by default unencrypted but can utilize TLS
SMTP
server moves mail to another server
POP3
server moves mail to a client
IMAP
server moves a copy of mail to a client
17
Q

Lightweight Directory Access Protocol (LDAP)

A

runs on TCP 389
used for communication with directory services, such as Microsoft’s active directory
open vendor neutral protocol
by default unencrypted, but SLDAP(Secure LDAP) is available and run on port…..

18
Q

Kerberos

A

open, vendor neutral runs on TCP port 88
auth is proving an identity
fundamental to using microsofts active directory for domain level authentication
complex protocol, using time stamped tickets to continually authenticate users to resources

19
Q

PPTP(point to point tunneling protocol)

L2TP(Layer 2 tunneling protocol)

A

PPTP(point to point tunneling protocol) runs on TCP port 1723 to securely encrypt network traffic
primarily used on microsoft based networks
L2TP(Layer 2 tunneling protocol) runs on UDP

20
Q

Simple Network Management Protocol (SNMP)

A

runs on UDP port 161
used to manage network devices
not encrypted, should be use in….

21
Q

Internet Group Multicast protocol (IGMP)

A

is used for multicasting

works with IP directly(OSI Network Layer)

22
Q

Internet Control Message Protocol (ICMP)

A

is a core protocol…