Member-only story
Managing VLANs on an EdgeSwitch through SSH is actually much easier than you may expect, Here I will give a quick rundown on how to do so.
// Enter privileged mode
enable// Enter VLAN config mode and create VLAN 245 (Use comma to enter multiple, use dash to enter series)
vlan database
vlan 245
vlan name 245 vlan-name
exit// Enter configure mode
configure// Configure interface 0, port 24
interface 0/24
description port-name
vlan tagging 245
vlan participation include 245
vlan pvid 245
exit
To undo changes made, append “no” to the beginning of the command. example: no vlan tagging 245
or
example: no vlan pvid 245
for vlan participation, simply exclude
Example: vlan participation exclude 245