1
0
Fork 0
mirror of https://gitlab.com/netravnen/NetworkLabNotes.git synced 2024-12-26 21:07:55 +00:00

DNS chapter: Normal dns content added

DNSSEC follows
This commit is contained in:
netravnen 2017-09-10 20:22:33 +02:00
parent 7994b24e96
commit 7c22c00f90
3 changed files with 28 additions and 11 deletions

View file

@ -156,6 +156,7 @@
\newacronym{sdm}{SDM}{Security Device Manager} \newacronym{sdm}{SDM}{Security Device Manager}
\newacronym{sdsl}{SDSL}{Symmetric Digital Subscriber Line} \newacronym{sdsl}{SDSL}{Symmetric Digital Subscriber Line}
\newacronym{sftp}{SFTP}{Secure Shell File Transfer Protocol} \newacronym{sftp}{SFTP}{Secure Shell File Transfer Protocol}
\newacronym{spf}{SPF}{Sender Policy Framework}
\newacronym{slaac}{SLAAC}{Stateless Address Autoconfiguration} \newacronym{slaac}{SLAAC}{Stateless Address Autoconfiguration}
\newacronym{sla}{SLA}{Service Level Agreement} \newacronym{sla}{SLA}{Service Level Agreement}
\newacronym{smtp}{SMTP}{Simpe Mail Transfer Protocol} \newacronym{smtp}{SMTP}{Simpe Mail Transfer Protocol}

View file

@ -29,19 +29,26 @@ Is hierarchical by design going from:
\section{Record Types} \section{Record Types}
\begin{itemize} \begin{itemize}
\item \itemhead{A} Stores info on \gls{ip4} address. \item \itemhead{\gls{a}} Stores info on \gls{ip4} address.
\item \itemhead{AAAA} Store info on \gls{ip6} address. \item \itemhead{\gls{aaaa}} Store info on \gls{ip6} address.
\item \itemhead{CNAME} Store URL pointing to another URL (a.k.a. \gls{a}/\gls{aaaa} records). \item \itemhead{\gls{cname}} Store URL pointing to another URL (a.k.a. \gls{a}/\gls{aaaa} records).
\item \itemhead{HINFO} \item \itemhead{\gls{hinfo}} Used to acquire general information about a host. For security reasons the HINFO records are not typically used on public servers.\cite{DNSRecor50:online}
\item \itemhead{ISDN} \item \itemhead{\gls{isdn}} The ISDN resource record specifies ISDN address for a host. An ISDN address is a telephone number that consists of a country code, a national destination code, a ISDN Subscriber number and, optionally, a ISDN subaddress. The function of the record is only variation of the A resource record function.\cite{DNSRecor50:online}
\item \itemhead{MX} \item \itemhead{\gls{mx}} Store info pointing to responsible e-mail server for the domain.
\item \itemhead{NS} \item \itemhead{\gls{ns}} Info on Authoritative Name Server for domain.
\item \itemhead{PTR} \item \itemhead{\gls{ptr}} Reverse-lookup pointers. Returning a domain name when asked about an \gls{ip} address.
\item \itemhead{SOA} \item \itemhead{\gls{soa}} Contains core info on on \gls{dns} zone. Primary \gls{ns} server, e-mail of domain administrator, domain serial number, and several timers related to refreshing of the zone.
\item \itemhead{TXT} \item \itemhead{\gls{txt}} Can hold arbitrary non-formatted text string(s). Often used for \gls{spf} records, and domain owner verification. Note the following examples:
\item \itemhead{DNSKEY} \begin{itemize}
\item \texttt{\gls{spf}} records,
\item \texttt{keybase-site-verification} for site owner verification,
\item \texttt{dnslink} for site owner verification,
\item \texttt{google-site-verification=} for site owner verification.
\end{itemize}
\end{itemize} \end{itemize}
\pagebreak
\section{DNSSEC} \section{DNSSEC}
\subsection[KSK]{Key Signing Key} \subsection[KSK]{Key Signing Key}

View file

@ -40,3 +40,12 @@
year = "2011", year = "2011",
note = "[Online; accessed on 24-June-2017]" note = "[Online; accessed on 24-June-2017]"
} }
@misc{DNSRecor50:online,
author = {},
title = {DNS Record Viewer - A, AAAA, CNAME, MX, NS, PTR, SOA, SRV, TXT},
howpublished = {\url{http://dns-record-viewer.online-domain-tools.com/}},
month = {},
year = {},
note = {(Accessed on 09/10/2017)}
}