First outline of the presentation
[linuxnijmegen-ssh.git] / pres.tex
diff --git a/pres.tex b/pres.tex
new file mode 100644 (file)
index 0000000..ca66135
--- /dev/null
+++ b/pres.tex
@@ -0,0 +1,81 @@
+\documentclass{beamer}
+
+\usepackage[dutch]{babel}
+\usepackage{listings}
+
+\title[SSH]{Secure Shell(SSH)}
+\subtitle{Meer dan alleen remote shell}
+\author{Mart Lubbers}
+\date{\today}
+\subject{SSH}
+
+\AtBeginSection[]
+{
+       \begin{frame}
+               \frametitle{Inhoudsopgave}
+               \tableofcontents[currentsection]
+       \end{frame}
+}
+
+\lstset{
+       basicstyle=\footnotesize,
+       breakatwhitespace=false,
+       breaklines=true,
+       frame=L,
+       keepspaces=true,
+       numbers=left,
+       numberstyle=\tiny,
+       tabsize=2
+}
+
+
+\begin{document}
+       \begin{frame}
+               \titlepage
+       \end{frame}
+
+       \section{Introductie}
+       \begin{frame}
+               \frametitle{Introductie}
+       \end{frame}
+
+       \section{SSH server}
+
+       \section{SSH config}
+       \begin{frame}[fragile]
+               \begin{lstlisting}
+mart@valhalla:~$ ls -l ~/.ssh/config 
+-rw------- 1 user user 300 Jun  2 22:08 /home/user/.ssh/config
+user@valhalla:~$ cat ~/.ssh/config 
+Host ygdrassil
+    HostName 192.168.0.102
+    Identityfile ~/.ssh/nas
+
+Host github.com
+    HostName github.com
+    Identityfile ~/.ssh/github
+
+Host werk
+    User johndoe
+    HostName ssh.tunnel.werk.com
+    ForwardX11 yes
+    Port 2222
+    Identityfile ~/.ssh/werk
+
+Host muziekserver
+    User gebruiker
+    HostName muziek.dyndns.com
+    IdentityFile ~/.ssh/mpi
+    LocalForward 8123 localhost:8123
+    AddressFamily inet
+               \end{lstlisting}
+       \end{frame}
+
+       \section{Handige truukjes}
+
+       \section{Programma's die SSH gebruiken}
+
+       \section{Samenvatting}
+
+\end{document}
+