extra >s gone, reshuffle order

This commit is contained in:
Paul Warren 2021-10-25 15:59:55 +11:00
parent 1f9cab0f0e
commit 2525901f7a
1 changed files with 31 additions and 29 deletions

View File

@ -87,38 +87,16 @@
<p class="fragment">For the purposes of this talk, we can ignore a lot of complexity</p>
</section>
<section><h2>What I'm assuming we're familiar with</h2>
<p>Diagram showing standard leaf node of a network with a bit cloud containg "The rest of the org"</p>
</section>
<section><h2>>What we're familiar with</h2>
<p>Diagram showing added storage and server network<p>
</section>
<section><h2>>How things evolve</h2>
<p>Uh Oh, we've got a new Datacentre</p>
</section>
<section><h2>>How things evolve</h2>
<p>which has its own lot of storage and servers</p>
</section>
<section><h2>How things evolve</h2>
<p>And now people want to work in Tasmania!</p>
</section>
<section><h2>Anyway, let's get started!</h2>
<p>What even is a router?</p>
<section><h2>What even is a router?</h2>
<p class="fragment">Two or more interfaces</p>
<p class="fragment">Some logic to determine where a packet goes</p>
<pre><code data-trim data-noescape>
</code>
</pre>
<aside class="notes">
<p>Not necessarily physical</p>
<p>Sounds simple right?</p>
</section>
<section><h2>Linux Routing</h2>
<pre><code data-trim data-noescape>
<pre class="fragment"><code data-trim data-noescape>
net.ipv4.ip_forward = 1
net.ipv6.conf.all.forwarding = 1
net.ipv6.conf.default.forwarding = 1
@ -128,10 +106,34 @@ net.ipv6.conf.default.forwarding = 1
<p class="fragment">Yeah, not really :)</p>
</section>
<section><h2>Routes!</h2>
<p>something something</p>
<section><h2>Static Routes!</h2>
<p>Manually added, or scripted routes that don't change</p>
<pre><code data-trim data-noescape>
ip route add 172.17.0.0/24 via 172.16.0.254 dev wg0
</code>
</pre>
</section>
<section><h2>What I'm assuming we're familiar with</h2>
<p>Diagram showing standard leaf node of a network with a bit cloud containg "The rest of the org"</p>
</section>
<section><h2>What we're familiar with</h2>
<p>Diagram showing added storage and server network<p>
</section>
<section><h2>How things evolve</h2>
<p>Uh Oh, we've got a new Datacentre</p>
</section>
<section><h2>How things evolve</h2>
<p>which has its own lot of storage and servers</p>
</section>
<section><h2>How things evolve</h2>
<p>And now people want to work in Tasmania!</p>
</section>
<section><h2>Bits and Pieces</h2>
<p class="fragment">
<p class="fragment">VLAN</p>