flokinet-005 - Routing between VLANs

title: flokinet-005 - Routing between VLANs
author: Nicholas Morrison
draft: false
tags: [network, workshop, arista]
categories: [workshop]
noindex: true

Connecting to the lab server

Diagram

Topology 03
Topology 03

Goal

Multi-Layer Switching (MLS)

Configuration overview

What you are responsible for configuring

Convert the core-01 into a Multi-Layer Switch

!
ip routing
!

Configure a Layer 3 VLAN interface

!
interface vlan 10
   description --- web ---
   ip address 192.168.10.1/24
!

Inspect core-01

show mac address-table
show ip arp
show ip route
ping 192.168.x.x

tcpdump

At a bash prompt:

# capture and decode all packets on ethX
$ tcpdump -i ethX

# capture and decode all ICMP packets on ethX
$ tcpdump -i ethX icmp

# capture and decode all packets to or from 192.168.100.100
$ tcpdump -i ethX host 192.168.100.100

# capture and decode FRAMES
$ tcpdump -i ethX -e ether

# capture and decode FRAMES with a filter
$ tcpdump -i ethX -e ether host 01:23:45:67:89:01