<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>RouteSwitchU Field Notes</title>
    <link>https://routeswitchu.com/field-notes/</link>
    <atom:link href="https://routeswitchu.com/feed.xml" rel="self" type="application/rss+xml" />
    <description>Lab-first network automation training for working network engineers.</description>
    <language>en</language>
    <lastBuildDate>Mon, 31 Aug 2026 00:00:00 GMT</lastBuildDate>
    <item>
      <title>Meraki is deprecating SNMPv1: what to do before your next firmware upgrade</title>
      <link>https://routeswitchu.com/field-notes/meraki-snmpv1-deprecation/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/meraki-snmpv1-deprecation/</guid>
      <pubDate>Mon, 31 Aug 2026 00:00:00 GMT</pubDate>
      <description>Cisco Meraki is dropping SNMPv1 from upcoming MR, MX, and MS firmware, and the two copies of the announcement we received disagree about which MR release does it. Here is what breaks if you ignore the email, why SNMPv2c only postpones the work, and the order to do the migration in.</description>
    </item>
    <item>
      <title>Short or long spanning tree path costs: which one to run and what mixing them does</title>
      <link>https://routeswitchu.com/field-notes/spanning-tree-short-or-long-path-cost/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/spanning-tree-short-or-long-path-cost/</guid>
      <pubDate>Sat, 29 Aug 2026 00:00:00 GMT</pubDate>
      <description>Short path costs come from a 1998 table that runs out of room at 10 Gbps and gives every faster link the same cost of 1, so a single gigabit link can beat three 10 Gbps hops. Long costs fix the arithmetic. Nothing in the protocol notices a network running both methods, because the number on the wire is only a number.</description>
    </item>
    <item>
      <title>A transcript of AI writing broken network automation, and the check that caught it</title>
      <link>https://routeswitchu.com/field-notes/ai-broken-automation-transcript/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/ai-broken-automation-transcript/</guid>
      <pubDate>Sun, 23 Aug 2026 00:00:00 GMT</pubDate>
      <description>We asked a coding assistant to turn LLDP neighbor output into a topology diagram. The script exited 0 and produced valid Mermaid, but it drew every cable twice. This transcript includes the returned code, its output, the twelve-line check that reported the duplicate links, and the one-line fix.</description>
    </item>
    <item>
      <title>What eight forward deployed engineer postings require from network engineers</title>
      <link>https://routeswitchu.com/field-notes/fde-postings-mapped-to-network-engineering/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/fde-postings-mapped-to-network-engineering/</guid>
      <pubDate>Sat, 22 Aug 2026 00:00:00 GMT</pubDate>
      <description>We compared eight live forward deployed engineer postings with a senior network engineering resume. Network engineers can usually show the customer delivery, travel, troubleshooting, and operational experience these roles require. The missing proof is production software and, for AI roles, LLM systems that were built and evaluated.</description>
    </item>
    <item>
      <title>Turn LLDP or CDP output into a network diagram, in the browser, free</title>
      <link>https://routeswitchu.com/field-notes/turn-lldp-output-into-a-network-diagram/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/turn-lldp-output-into-a-network-diagram/</guid>
      <pubDate>Sat, 22 Aug 2026 00:00:00 GMT</pubDate>
      <description>We built a free browser tool that turns show lldp neighbors or show cdp neighbors output into a rendered Mermaid topology diagram. It handles the brief tables and the detail forms, merges duplicate links, and nothing you paste leaves the page. Here is how it handles inconsistent neighbor output, what the diagram cannot show, and what to keep after the first run.</description>
    </item>
    <item>
      <title>Forward deployed engineering for network engineers: role, requirements, and a practical path</title>
      <link>https://routeswitchu.com/field-notes/forward-deployed-engineer-network-engineer/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/forward-deployed-engineer-network-engineer/</guid>
      <pubDate>Thu, 20 Aug 2026 00:00:00 GMT</pubDate>
      <description>Forward deployed engineers build inside customer environments and stay responsible through production. Network engineers already bring useful production judgment, but they still need to prove they can write, test, and operate software. Here is what current postings ask for and how to build the missing evidence.</description>
    </item>
    <item>
      <title>Can AI draw my network diagram?</title>
      <link>https://routeswitchu.com/field-notes/can-ai-draw-my-network-diagram/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/can-ai-draw-my-network-diagram/</guid>
      <pubDate>Tue, 18 Aug 2026 00:00:00 GMT</pubDate>
      <description>It drafts well and it invents links. The fix is structural. Never ask a model for the picture; ask it for the code that builds the picture from your data, then check the rendered result against the data with a script rather than with your eyes.</description>
    </item>
    <item>
      <title>Diagrams as code or a drawing tool: when each one wins</title>
      <link>https://routeswitchu.com/field-notes/diagrams-as-code-vs-drawing-tools/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/diagrams-as-code-vs-drawing-tools/</guid>
      <pubDate>Tue, 18 Aug 2026 00:00:00 GMT</pubDate>
      <description>Generated text diagrams stay accurate when the network underneath keeps changing. Drawing tools matter when position on the page carries meaning, or when the diagram only needs to be drawn once for an audience. Most teams need both, and the split is predictable.</description>
    </item>
    <item>
      <title>How do I generate a network diagram from LLDP output?</title>
      <link>https://routeswitchu.com/field-notes/generate-network-diagram-from-lldp/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/generate-network-diagram-from-lldp/</guid>
      <pubDate>Tue, 18 Aug 2026 00:00:00 GMT</pubDate>
      <description>Collect neighbors with the detail command, normalize each link into a four-field record, deduplicate the two reports of every cable, then print Mermaid. Parsing is where this goes wrong, and it gets most of the space below.</description>
    </item>
    <item>
      <title>How do I keep network diagrams from going stale?</title>
      <link>https://routeswitchu.com/field-notes/keep-network-diagrams-from-going-stale/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/keep-network-diagrams-from-going-stale/</guid>
      <pubDate>Tue, 18 Aug 2026 00:00:00 GMT</pubDate>
      <description>Diagrams go stale because updating them is a separate task from making the change. Generate the diagram from collected state, commit it, and have CI regenerate and compare it, so a drifted diagram fails a check instead of waiting for someone to notice.</description>
    </item>
    <item>
      <title>Mermaid syntax for network topology: the full reference</title>
      <link>https://routeswitchu.com/field-notes/mermaid-syntax-for-network-topology/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/mermaid-syntax-for-network-topology/</guid>
      <pubDate>Tue, 18 Aug 2026 00:00:00 GMT</pubDate>
      <description>Every piece of Mermaid flowchart syntax a network engineer needs, with the escaping rules, the styling that separates tiers, the renderer differences between GitHub and Obsidian, and the version bug that draws an arrowhead on a link you wrote as undirected.</description>
    </item>
    <item>
      <title>Network diagrams as code: Mermaid for network engineers</title>
      <link>https://routeswitchu.com/field-notes/network-diagrams-as-code/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/network-diagrams-as-code/</guid>
      <pubDate>Mon, 17 Aug 2026 00:00:00 GMT</pubDate>
      <description>A working reference for documenting a network in text instead of a drawing tool. The flowchart grammar, the patterns for campus topology, the sequence and state diagrams worth knowing, and the Python that generates the whole thing from LLDP neighbor data.</description>
    </item>
    <item>
      <title>From CLI to NetDevOps: a 90-day plan for a CCNP-level engineer</title>
      <link>https://routeswitchu.com/field-notes/ccnp-to-netdevops-90-day-plan/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/ccnp-to-netdevops-90-day-plan/</guid>
      <pubDate>Thu, 13 Aug 2026 00:00:00 GMT</pubDate>
      <description>For a CCNP-level engineer, this is the bridge from CLI fluency to code: Python through network data, Netmiko, device APIs, Git and CI, and AI you verify. Here is the plan, with a checkpoint you can grade at day 30, 60, and 90.</description>
    </item>
    <item>
      <title>Graded labs vs. video courses: how network engineers actually learn automation</title>
      <link>https://routeswitchu.com/field-notes/graded-labs-vs-video-courses/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/graded-labs-vs-video-courses/</guid>
      <pubDate>Thu, 13 Aug 2026 00:00:00 GMT</pubDate>
      <description>A video shows someone else configure a device. A graded lab checks your own work and tells you when it fails. Here is a real grading run from one of our labs, the failure included, plus an honest look at where video courses still fit.</description>
    </item>
    <item>
      <title>You don't need a home lab to learn network automation</title>
      <link>https://routeswitchu.com/field-notes/network-automation-labs-without-a-home-lab/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/network-automation-labs-without-a-home-lab/</guid>
      <pubDate>Thu, 13 Aug 2026 00:00:00 GMT</pubDate>
      <description>We priced five ways to practice network automation, timed our own browser labs with a stopwatch, and wrote down where a home lab still wins. The setup-tax table and the grading transcript are in this note.</description>
    </item>
    <item>
      <title>What $250 buys in network automation training (subscription math included)</title>
      <link>https://routeswitchu.com/field-notes/what-250-buys-in-network-automation-training/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/what-250-buys-in-network-automation-training/</guid>
      <pubDate>Thu, 13 Aug 2026 00:00:00 GMT</pubDate>
      <description>Every price in this note was checked against the vendor's public pricing page on 2026-08-13. The table includes what each option costs at a realistic six-month pace, not the pace the marketing assumes.</description>
    </item>
    <item>
      <title>An AI agent fixed a broken OSPF adjacency in a four-router lab</title>
      <link>https://routeswitchu.com/field-notes/ospf-break-fix/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/ospf-break-fix/</guid>
      <pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate>
      <description>Three classic OSPF breaks in a four-router lab. An AI agent with CLI access had to find and fix each one. Here is the transcript and the score.</description>
    </item>
    <item>
      <title>Hello, world!</title>
      <link>https://routeswitchu.com/field-notes/hello-world/</link>
      <guid isPermaLink="true">https://routeswitchu.com/field-notes/hello-world/</guid>
      <pubDate>Sun, 09 Aug 2026 00:00:00 GMT</pubDate>
      <description>This first note explains what Field Notes is, how every note gets tested before it publishes, and includes one small program that holds us to that standard.</description>
    </item>
  </channel>
</rss>
