pubkey auth added
[linuxnijmegen-ssh.git] / pres.tex
1 \documentclass{beamer}
2
3 \usepackage[dutch]{babel}
4 \usepackage{listings}
5
6 \title[SSH]{Secure Shell(SSH)}
7 \subtitle{Meer dan alleen remote shell}
8 \author{Mart Lubbers}
9 \date{\today}
10 \subject{SSH}
11
12 \AtBeginSection[]
13 {
14 \begin{frame}
15 \frametitle{Inhoudsopgave}
16 \tableofcontents[currentsection]
17 \end{frame}
18 }
19
20 \lstset{
21 basicstyle=\footnotesize,
22 breakatwhitespace=false,
23 breaklines=true,
24 frame=L,
25 keepspaces=true,
26 numbers=left,
27 numberstyle=\tiny,
28 tabsize=2
29 }
30
31
32 \begin{document}
33 \begin{frame}
34 \titlepage
35 \end{frame}
36
37 \section{Introductie}
38 \input{intro.tex}
39
40 \section{SSH server}
41 \input{server.tex}
42
43 \section{Handige truukjes}
44 \input{truuk.tex}
45
46 \section{SSH config}
47 \input{conf.tex}
48
49 \section{Programma's die SSH gebruiken}
50 \input{ext.tex}
51
52 \section{Samenvatting}
53 \input{samen.tex}
54
55 \end{document}
56