what you should already have
- your euid, e.g.
jpd0123
- your password, e.g.
password
- datacomm enable password (if configuring cisco), e.g.
password
- duo mobile app setup on your phone
what you need to have
- ip of the switch stack, e.g.
129.120.253.42
- interface of the requested port, e.g.
ge-#/#/#
orgi#/#/#
- requested vlan, e.g.
2997
the steps
- login to the switch stack with putty
Host Name (or IP address): <ip_of_switch_stack>
Connection type: SSH
Port: 22
login: <your_euid>
password: <your_password>
- check if the requested vlan is supported on the switch stack
show vlan id <requested_vlan>
show vlans <requested_vlan>
if the output is blank or the vlan is not found, stop here and contact a full-timer in order to get the vlan added to the stack
- enter configuration mode
enable
Password: <datacomm_enable_password>
config t
edit
edit interfaces ge-#/#/#
- check the port status
do show interfaces ge-#/#/#
show
take note of the ports description, previous vlan, and ip and hostname of the switch stack.
- configure the port
int gi#/#/#
description <BLDG-patchPanelLabel>
switchport access vlan <requested_vlan>
end
set description <BLDG-patchPanelLabel>
set unit 0 family ethernet-switching vlan members <requested_vlan>
delete unit 0 family ethernet-switching vlan members <previous_vlan>
exit
- check your work
show int gi#/#/#
show interfaces ge-#/#/#
check to see if the port is configured as requested (vlan, description, correct port)
- save your work
write mem
copy run start
commit check
commit
- logout
exit
exit
exit