First outline of the presentation
[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 \begin{frame}
39 \frametitle{Introductie}
40 \end{frame}
41
42 \section{SSH server}
43
44 \section{SSH config}
45 \begin{frame}[fragile]
46 \begin{lstlisting}
47 mart@valhalla:~$ ls -l ~/.ssh/config
48 -rw------- 1 user user 300 Jun 2 22:08 /home/user/.ssh/config
49 user@valhalla:~$ cat ~/.ssh/config
50 Host ygdrassil
51 HostName 192.168.0.102
52 Identityfile ~/.ssh/nas
53
54 Host github.com
55 HostName github.com
56 Identityfile ~/.ssh/github
57
58 Host werk
59 User johndoe
60 HostName ssh.tunnel.werk.com
61 ForwardX11 yes
62 Port 2222
63 Identityfile ~/.ssh/werk
64
65 Host muziekserver
66 User gebruiker
67 HostName muziek.dyndns.com
68 IdentityFile ~/.ssh/mpi
69 LocalForward 8123 localhost:8123
70 AddressFamily inet
71 \end{lstlisting}
72 \end{frame}
73
74 \section{Handige truukjes}
75
76 \section{Programma's die SSH gebruiken}
77
78 \section{Samenvatting}
79
80 \end{document}
81