sudo screen /dev/ttyUSB0 9600
to access Fido over serial. If the screen goes fully black, you might need to hit ENTER a couple times so that the prompt shows up.fido#
, you're good to go. If it says fido>
, you'll need to type enable
. The password for the switch is on passcard.config t
to enter config mode.vlan 2100
to initialize a VLAN with the ID 2100.name vlan2100
gives it the name vlan2100.end
.config t
to enter config mode.int fa0/4
to configure port 4.switchport mode access
designates the port as an access port, making it link to only one VLAN.switchport access vlan 2100
to link it to VLAN 2100.end
.config t
to enter config mode.int vlan 2100
to configure VLAN 2100.ip address 198.38.21.113
.ip default-gateway 198.38.21.126
.end
.config t
to enter config mode.int gigabitethernet0/1
to configure Gigabit Ethernet port 1.switchport mode access
designates the port as an access port, making it link to only one VLAN.switchport access vlan 2100
to link it to VLAN 2100.end
.