NetworkLabNotes/main.tex

128 lines
2.7 KiB
TeX
Raw Normal View History

2017-05-22 10:12:53 +00:00
% Declare Document Class
2017-05-22 09:53:21 +00:00
\documentclass{article}
2017-05-22 10:12:53 +00:00
% Latex Packages
\usepackage[T1]{fontenc}
2017-05-22 09:53:21 +00:00
\usepackage[utf8]{inputenc}
2017-05-22 10:12:53 +00:00
\usepackage{lmodern}
\usepackage{geometry}
2017-05-22 10:52:13 +00:00
\usepackage{listings}
\usepackage{color}
2017-05-22 10:12:53 +00:00
\usepackage{graphicx}
\usepackage{float}
2017-05-22 10:52:13 +00:00
% Define color
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=4
}
\lstset{style=mystyle}
2017-05-22 10:12:53 +00:00
% Path where images are located relative
% to the file main.tex
\graphicspath{{img/}}
2017-05-22 10:22:33 +00:00
% Custom commands
2017-05-22 10:12:53 +00:00
\newcommand{\insertoutput}[1]{
\begin{center}
\includegraphics[width=12cm]{#1}
\end{center}
}
2017-05-22 10:22:33 +00:00
\newcommand{\pic}[2]{
\begin{center}
\transparent{0.4}
\includegraphics[height=#1]{#2}
\end{center}
}
2017-05-22 10:12:53 +00:00
% In which order to look after images in
% declared graphicspath{}'s
% 1. Low-quality JPG
% 2. Med-quality PNG
% 3. High-quality PDF
\DeclareGraphicsExtensions{.jpg,.png,.pdf}
% Package Params
\geometry{a4paper,margin=2cm}
2017-05-22 10:52:52 +00:00
2017-05-22 10:12:53 +00:00
%
% BEGIN DOCUMENT
%
2017-05-22 09:53:21 +00:00
\begin{document}
2017-05-22 10:12:53 +00:00
% Which info to insert on the title page
\title{r17dinh409 Cisco Lab}
\author{Christoffer Hansen <zbcchhan11 at zbc.dk>}
\date{May 22 - June 30, 2017}
% Make title page contents
\maketitle
% Page break before starting Table Of Contents
\newpage
% Table Of Contents
\tableofcontents
%
% BEGIN SWITCH CONFIG
%
\section{Lab cfg}
2017-05-22 10:19:53 +00:00
% <!-- ROUTER -->
2017-05-22 10:12:53 +00:00
\subsection{Router}
2017-05-22 10:19:53 +00:00
\subsubsection{File: base.cfg}
2017-05-22 10:52:13 +00:00
%\lstinputlisting[language=tcl]{code/router/base.cfg}
2017-05-22 10:19:53 +00:00
\subsubsection{File: reset.tcl}
2017-05-22 10:52:13 +00:00
%\lstinputlisting[language=tcl]{code/router/reset.tcl}
2017-05-22 10:44:49 +00:00
% <!-- LAYER 3 SWITCH -->
2017-05-22 10:12:53 +00:00
2017-05-22 10:44:49 +00:00
\subsection{Layer 3 Switch}
\subsubsection{File: base.cfg}
2017-05-22 10:52:13 +00:00
\lstinputlisting[language=tcl]{code/l3switch/base.cfg}
2017-05-22 10:44:49 +00:00
\subsubsection{File: reset.tcl}
2017-05-22 10:52:13 +00:00
\lstinputlisting[language=tcl]{code/l3switch/reset-tcl.txt}
2017-05-22 10:12:53 +00:00
2017-05-22 10:44:49 +00:00
% <!-- LAYER 2 SWITCH -->
2017-05-22 10:12:53 +00:00
2017-05-22 10:44:49 +00:00
\subsection{Layer 2 Switch}
2017-05-22 10:19:53 +00:00
\subsubsection{File: base.cfg}
2017-05-22 10:52:13 +00:00
\lstinputlisting[language=tcl]{code/l2switch/base.cfg}
2017-05-22 10:19:53 +00:00
\subsubsection{File: reset.tcl}
2017-05-22 10:52:13 +00:00
\lstinputlisting[language=tcl]{code/l2switch/reset-tcl.txt}
2017-05-22 10:12:53 +00:00
%
% END SWITCH CONFIG
%
%
% END DOCUMENT
%
2017-05-22 09:53:21 +00:00
\end{document}