DNS Flashcards
(95 cards)
DNS
DNS REQUEST
DNS
LOAD BALANCER
CDN
CONTENT DELIVERY NETWORK
IP ADDRESS
FORMAT
ISP
INTERNET SERVICE PROVIDER
WHAT IS A WEB SERVER
STATIC CONTENT
DYNAMIC CONTENT
FRONT END
BACK END
VIRTUAL HOST
LAN
VPN
ETHERNET
ROOT DNS SERVER
The root servers act as the DNS backbone of the internet; their job is to redirect you to the correct Top Level Domain Server, depending on your request. If, for example, you requestwww.tryhackme.com, the root server will recognise the Top Level Domain of .com and refer you to the correct TLD server that deals with .com addresses.
RECURSIVE DNS SERVER
A Recursive DNS Server is usually provided by your ISP, but you can also choose your own. This server also has a local cache of recently looked up domain names. If a result is found locally, this is sent back to your computer, and your request ends here (this is common for popular and heavily requested services such as Google, Facebook, Twitter). If the request cannot be found locally, a journey begins to find the correct answer, starting with the internet’s root DNS servers.
AUTHORITATIVE DNS SERVER
An authoritative DNS server is the server that is responsible for storing the DNS records for a particular domain name and where any updates to your domain name DNS records would be made. Depending on the record type, the DNS record is then sent back to the Recursive DNS Server, where a local copy will be cached for future requests and then relayed back to the original client that made the request. DNS records all come with a TTL (Time To Live) value. This value is a number represented in seconds that the response should be saved for locally until you have to look it up again. Caching saves on having to make a DNS request every time you communicate with a server.
COMMON HTML REQUEST HEADERS
HOST
USER-AGENT
CONTENT-LENGTH
ACCEPT-ENCODING
COOKIE
HOST
Host:Some web servers host multiple websites so by providing the host headers you can tell it which one you require, otherwise you’ll just receive the default website for the server.
USER-AGENT
User-Agent:This is your browser software and version number, telling the web server your browser software helps it format the website properly for your browser and also some elements of HTML, JavaScript and CSS are only available in certain browsers.
CONTENT-LENGTH
Content-Length:When sending data to a web server such as in a form, the content length tells the web server how much data to expect in the web request. This way the server can ensure it isn’t missing any data.
ACCEPT-ENCODING
Accept-Encoding:Tells the web server what types of compression methods the browser supports so the data can be made smaller for transmitting over the internet.