Switch Configuration File

! --- Initialization ---
en
config t
hostname S1
no ip domain lookup
enable secret cisco

line con 0
password cisco
login
exit

line vty 0 15
password cisco
login
exit

service password-encryption

! --- VLAN Creation ---
vlan 5
name Management

vlan 10
name FMJSystems

vlan 20
name FMJSystemsPriv

vlan 90
name DMZ

vlan 100
name Adatum

vlan 101
name AdatumPriv

vlan 200
name Contoso

vlan 201
name ContosoPriv

vlan 300
name Fabrikam

vlan 301
name FabrikamPriv

vlan 99
name SimulatedInternet

vlan 999
name Native

interface vlan 5
ip address 10.0.0.2 255.255.255.0
no shut
exit

ip default-gateway 10.0.0.1

! --- Interface Configuration ---
interface GigabitEthernet3/0/1
description TRUNK-TO-ROUTER
switchport mode trunk
switchport trunk allowed vlan 5,10,20,90,100,101,200,201,300,301,99
switchport trunk native vlan 999
no shut
exit

interface GigabitEthernet3/0/13
description TRUNK-TO-FMJ-NODE
switchport mode trunk
switchport trunk allowed vlan 5,10,20,90
switchport trunk native vlan 999
no shut
exit

interface range GigabitEthernet3/0/25, GigabitEthernet3/0/27, GigabitEthernet3/0/29
description TRUNK-TO-TENANT-CLUSTER
switchport mode trunk
switchport trunk allowed vlan 5,90,100,101,200,201,300,301,99
switchport trunk native vlan 999
no shut
exit

interface range GigabitEthernet3/0/37-42
description MANAGEMENT
switchport mode access
switchport access vlan 5
no shut
exit

interface range GigabitEthernet3/0/43-48
description SIMULATED INTERNET
switchport mode access
switchport access vlan 99
no shut
exit