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> <!doctype html>
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <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"> <section><h2>Resources</h2>
<link rel="stylesheet" href="dist/reveal.css"> <p>These slides: <a href="https://gitea.pwarren.id.au/pwarren/SysAdmin2022">https://gitea.pwarren.id.au/pwarren/SysAdmin2022</a></p>
<link rel="stylesheet" href="dist/theme/black.css"> <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>
<!-- Theme used for syntax highlighted code --> <p>Openwrt: <a href="https://openwrt.org">https://openwrt.org/</a></p>
<link rel="stylesheet" href="plugin/highlight/monokai.css"> </section>
</head> </div>
<body> </div>
<div class="reveal">
<div class="slides"> <script src="dist/reveal.js"></script>
<section>Slide 1</section> <script src="plugin/notes/notes.js"></script>
<section>Slide 2</section> <script src="plugin/markdown/markdown.js"></script>
</div> <script src="plugin/highlight/highlight.js"></script>
</div> <script>
// More info about initialization & config:
<script src="dist/reveal.js"></script> // - https://revealjs.com/initialization/
<script src="plugin/notes/notes.js"></script> // - https://revealjs.com/config/
<script src="plugin/markdown/markdown.js"></script> Reveal.initialize({
<script src="plugin/highlight/highlight.js"></script> hash: true,
<script>
// More info about initialization & config: // Learn about plugins: https://revealjs.com/plugins/
// - https://revealjs.com/initialization/ plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
// - https://revealjs.com/config/ });
Reveal.initialize({ </script>
hash: true, </body>
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html> </html>