First inputs

This commit is contained in:
Paul Warren 2021-09-29 23:04:50 +10:00
parent 7138f63dc5
commit 651de2f0d8
1 changed files with 83 additions and 35 deletions

View File

@ -1,40 +1,88 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>SysAdmin2022</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/solarized.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Learning about slightly more advanced networking with linux</h2>
<p><b>Paul Warren</b></p>
<p>Mastodon: @pwarren@mastodon.thewarrens.name </p>
<p>email: paul at thewarrens.name </p>
</section>
<section><h2>What even is a network</h2>
<p class="fragment fade-in-then-out">Ethernet?</p>
<p class="fragment fade-in-then-out">Token Ring?</p>
<p class="fragment fade-in-then-out">IPX?</p>
<p class="fragment fade-in-then-out">AX.25?</p>
</section>
<section><h2>What even is a network</h2>
<p class="fragment fade-in-then-out">tcp??</p>
<p class="fragment fade-in-then-out">ipv4?</p>
<p class="fragment fade-in-then-out">ipv6?</p>
<p class="fragment fade-in-then-out">AX.25?</p>
<p class="fragment">Allows connections between computers</p>
</section>
<section><h2>Managed network?</h2>
<p class="fragment"><b>Controls</b> connections between computers</p>
<p class= "fragment"><b>Scales</b> connections between computers</p>
<p class="fragment"><img src="3tier.png" /><p>
<aside class="notes">
Diagram is nice, but hides complexities at each layer
</aside>
</section>
<title>reveal.js</title>
<section><h2>The Problems</h2>
<p class="fragment">
<p class="fragment">VLAN</p>
<p class="fragment">OSPF</p>
</section>
<section>more detail on what VLANs, OSPF and BGP are for</section>
<section>how to do these things in linux</section>
<section>intro to bird</section>
<section>more detail on bird</section>
<section>building out a virtual network with LXC</section>
<section>ergh, NAT</section>
<section>Why use a 'real' router</section>
<section>OpenWRT</section>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>Slide 1</section>
<section>Slide 2</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
<section><h2>Resources</h2>
<p>These slides: <a href="https://gitea.pwarren.id.au/pwarren/SysAdmin2022">https://gitea.pwarren.id.au/pwarren/SysAdmin2022</a></p>
<p>bird: <a href="https://bird.network.cz/">https://bird.network.cz</a></p>
<p>KNorrie's network examples: <a href="https://github.com/knorrie/network-examples">https://github.com/knorrie/network-examples</a></p>
<p>Openwrt: <a href="https://openwrt.org">https://openwrt.org/</a></p>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>