Module 3 Flashcards
(50 cards)
Ports
A # used to uniquely identify network connection & specify services as apps that is destined 4
Open Ports
Means a device is listening or talking. If unused it can be a security risk in which the router will attempt to keep close aka firewall.
Well Known Ports
Ports that are already reserved (0 - 1023). Mostly owned by big tech firms.
Registered Ports
ports that can be registered with companies through (IANA) ( 1024 - 49,151)
Private Ports
ports ( 49,152 - 65535) that can be used by anyone
Internet Assigned Numbers Authority - IANA
Organization that assigns ports & IP addresses to companies as well search for information on ports.
Transmission Control Protocol - TCP
it is connection-oriented makes sure there is a 3-way handshake. Aka TCP segment. Favors safety over speed & has Sequence & acknowledgment #s.
TCP Cont.
- Orders the stream.
- Detects errors & connections.
- Flow control has a sliding window to control the amount of segment coming in or out.
- Congestion Control.
- Complex & heavyweights.
TCP Connection Establishment
- Source computer send SYN
- Destination Computer send an SYN + ACK.
- Source computer sends ACK.
TCP Connection Termination
- Device timeout or turns off.
- Source computer sends a FIN.
- Destination computers send ACK.
- Destination computer sends FIN + ACK.
- Source computer send ACK.
(Session Closed)
User Datagram Protocol - UDP
Gets there if it gets there. Called a UDP datagram. Favors speed over safety and has unreliable delivery. Used when loss can be tolerated. Has length & checksum. It is lightweight & fast, not ordered, and no congestion control.
NETSTAT
(-a, -b, -n, -o,-r) to know more information about the traffic happening in your network.
Port Forwarding - PF
Any traffic arriving on a specific TCP or UDP port will forward 2 a defined internal host & port. Punches a hole in firewall- FW
Domain Name System - DNS
resolves IP address based on Fully Qualified Domain Names (FQDNs). Lets us visits websites without knowing the long IP address #.
Nslookup
Used in command prompt/powershell to find the IP @.
Fully Qualified Domain Names - (FQDNs)
identifies the specific server or host @ the Domain. Ex: www.google.com
Uniform Resource Locator - URL
Includes the FQDNS & protocol such as HTTP, HTTPS, & FTP.
Public DNS Server
a free 2 use DNS server on the public internet. Resolves public FQDNs 2 IP addresses. ISP have their own DNS server.
Private DNS Server
Provides internal hostname lookups within a private organization. These names are not part of the public DNS server and are associated w/ an organizations private IP address.
Split Horizon DNS aka Split Brain
A mechanism 4 DNS server 2 supply different results based on the source. When a company hosts their own website with public facing DNS. Web will use DNS to lookup up internal private IP addresses to provide to the public facing DNS to website.
Secure Shell - SSH
command line access to network nodes. Sessions are encrypted best to use v2 and replaces protocols like Telnet.
Dynamic DNS - DDNS
is a method of automatically updating a name server in the Domain Name System (DNS), often in real-time, with the active DDNS configuration of its configured hostnames addresses or other information.
TELNET
similar to SSH but unsecure. Can see clear/plain texts even passwords. Best to be disabled.
Internet control Messaging Protocol - ICMP
Checks IP connectivity 2 any network node uses ping (echo request & echo reply). Works at L3 so no port#. traceroutes uses it but org. block to prevent DoS attacks.