1
0
Fork 0
mirror of https://gitlab.com/netravnen/NetworkLabNotes.git synced 2024-12-23 20:57:53 +00:00

Code cleanup after merging in all other branch WIP into master

This commit is contained in:
chhan11 2017-06-04 23:40:12 +02:00
parent 27ca82b8d3
commit 0426d70b35
5 changed files with 0 additions and 122 deletions

View file

@ -1 +0,0 @@
\section{RADIUS}

View file

@ -1 +0,0 @@
\section{TACACS+}

View file

@ -1,42 +0,0 @@
\section{DHCP Process}
\fig{dhcp/dhcpdiscoverprocess}{dhcpdiscoverprocess}{DHCP Discover Process}
\subsection{DHCP Messages}
\begin{itemize}
\item \textbf{DHCPDECLINE:} Message sent from the client to the server that the address is already in use.
\item \textbf{DHCPNAK:} The server sends a refusal to the client for request for configuration.
\item \textbf{DHCPRELEASE:} Client tells a server that it is giving up a lease.
\item \textbf{DHCPINFORM:} A client already has an IP address but is requesting other configuration parameters that the DHCP server is configured to deliver such as DNS address.
\end{itemize}
\section{DHCP Options}
\begin{itemize}
\item \textbf{43} Vendor-encapsulated option that enables vendors to have their own list of options on the server.
\item \textbf{69} SMTP server, if you want to specify available SMTP servers to the client.
\item \textbf{70} POP3 server, if you want to specify available POP3 servers to the client.
\item \textbf{150} TFTP server that enables your phones to access a list of TFTP servers.
\end{itemize}
\section{DHCP Example Configuration}
\subsection{Cisco}
\begin{txt}
ip dhcp excluded-address 192.168.0.254
!
ip dhcp pool LAN-1-POOL-DHCP
network 192.168.0.0 255.255.255.0
default-router 192.168.0.254
lease 2 ! set in days
\end{txt}
When configuring a Layer 3 interface as a relay port for DHCP request for a subnet. Set the ip helper command on the interface with one \textit{or} more ip addresses.
\begin{txt}
interface GigabitEthernet 0/3
ip helper-address 192.168.220.220
ip helper-address 192.168.222.222
\end{txt}

View file

@ -1,8 +1,6 @@
% Declare Document Class % Declare Document Class
\documentclass[a4paper,12pt,twoside,twocolumn,landscape]{book} \documentclass[a4paper,12pt,twoside,twocolumn,landscape]{book}
\include{structure} % Load structure cfg for document \include{structure} % Load structure cfg for document
\include{acronyms} % Load acronym list \include{acronyms} % Load acronym list
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@ -12,9 +10,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document} \begin{document}
\include{frontpage} \include{frontpage}
\tableofcontents \tableofcontents
% Only applied after generation of TOC % Only applied after generation of TOC
@ -28,81 +24,16 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{chapter/baseconf} \include{chapter/baseconf}
\include{chapter/layer2} \include{chapter/layer2}
\include{chapter/l2tol3} \include{chapter/l2tol3}
\include{chapter/layer3} \include{chapter/layer3}
\include{chapter/dhcp} \include{chapter/dhcp}
\include{chapter/fhrp} \include{chapter/fhrp}
\include{chapter/networkmgmt} \include{chapter/networkmgmt}
\include{chapter/ntp} \include{chapter/ntp}
\include{chapter/mgmt} \include{chapter/mgmt}
\include{chapter/internet} \include{chapter/internet}
\input{chapter/section/spanningtree}
\chapter{L2 to L3}
\input{chapter/section/intervlanrouting}
\chapter{DHCP}
\input{chapter/section/dhcp}
\chapter{Triple A\tsq{s}}
\myquote{}{Remember to log the details, too.}
\xkcd{latitude}{Remember logging when necessary}
\input{chapter/aaa/radius}
\input{chapter/aaa/tacacsplus}
\chapter{Network Time Protocol}
\section{The old NTP from \tsq{85}}
\section{Secure NTP}
\chapter{Managemnt}
\section{Network management}
\subsection{Routers}
\subsection{Switches}
\subsection{Firewall}
\section{Out-of-band management}
\subsection{Console server}
\chapter{Protocols Layer 3}
\input{chapter/section/routednetwork}
\chapter{The Internet {\footnotesize "Post cold-war modern times"}}
\section{Service Providers}
\section{IXP}
\section{MPLS}
\section{BGP}
\section{eVPN}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% % % %
% BEGIN list of acronyms % % BEGIN list of acronyms %
@ -110,7 +41,6 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\clearpage \clearpage
\printglossary[type=\acronymtype,title=Special Terms,toctitle=List of terms] \printglossary[type=\acronymtype,title=Special Terms,toctitle=List of terms]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

View file

@ -6,14 +6,6 @@
note = "[Online; accessed 22-May-2017]" note = "[Online; accessed 22-May-2017]"
} }
@misc{ wiki:Spanning_Tree_Protocol,
author = "Wikipedia",
title = "{Spanning Tree Protocol} --- {W}ikipedia{,} The Free Encyclopedia",
year = "2017",
howpublished = {\url{http://en.wikipedia.org/w/index.php?title=Spanning\%20Tree\%20Protocol&oldid=778662646}},
note = "[Online; accessed 24-May-2017]"
}
@book{froom2015implementing, @book{froom2015implementing,
author = "Froom, Richard", author = "Froom, Richard",
title = "Implementing Cisco IP switched networks (SWITCH) : foundation learning guide", title = "Implementing Cisco IP switched networks (SWITCH) : foundation learning guide",