--- /dev/null
+SHELL := /bin/bash
+all:
+ pdflatex pres.tex
+ pdflatex pres.tex
+
+clean:
+ rm -vf pres.{aux,dvi,log,nav,out,snm,toc}
+
+cleanall: clean
+ rm -vf pres.pdf
+SSH
+===
+****Info
Presentiation about SSH for the [Linux User Group
Nijmegen](https://http://www.linuxnijmegen.nl/)
To compile you need at least:
- [LaTeX](http://http://www.latex-project.org/)
- [Beamer](http://www.ctan.org/pkg/beamer)
+
+****Introduction
--- /dev/null
+\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}
+