SysAdmin2022/index.html

106 lines
3.8 KiB
HTML
Raw Normal View History

2021-09-29 21:52:51 +10:00
<!doctype html>
<html>
2021-09-29 23:04:50 +10:00
<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>
2021-09-30 22:04:57 +10:00
<section><h2 style="color:red">! WARNING !</h2>
<p>I am not a network engineer</p>
<p>Please don't blame me if your network stops networking</p>
<p class="fragment">Maybe don't go and try building an ISP based off this talk :)</p>
</section>
<section><h2>How it started</h2>
<p>Keep having fun</p>
<p>Don't interfere with other network users</p>
<p class="fragment">One flat network</p>
<p class="fragment">Standard tech shop router with defaults</p>
</section>
2021-09-29 23:04:50 +10:00
<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">ipv4?</p>
<p class="fragment fade-in-then-out">ipv6?</p>
2021-09-30 22:04:57 +10:00
<p class="fragment fade-in-then-out">tcp?</p>
2021-09-29 23:04:50 +10:00
<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">
2021-09-30 22:04:57 +10:00
Diagram is nice, but hides complexities at each layer.
2021-09-29 23:04:50 +10:00
</aside>
</section>
2021-09-30 22:04:57 +10:00
<section><h2>Layers!</h2>
<p>Like an onion!</p>
<p>That 7 layer thing</p>
</section>
2021-09-29 23:04:50 +10:00
<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>
2021-09-29 21:52:51 +10:00
2021-09-29 23:04:50 +10:00
<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>
2021-09-30 22:04:57 +10:00
<p>The OpenWRT IRC channel, currently on the OFTC network</p>
2021-09-29 23:04:50 +10:00
</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>
2021-09-29 21:52:51 +10:00
</html>