Epsilon-12G2 User Manual Revision A.02
www.diamondsystems.com
Page 19
#
7.2.3 Change Switch Password
Following example shows setting of new password,
# configure terminal
(config)# password unencrypted <password>
(config)# exit
#
7.2.4 Set up VLANs
Virtual LANs (VLANs) are used to divide the network into separate logical areas. VLANs can also be considered
as broadcast domains.
Following example shows setting up VLAN2 and VLAN3 with switch port mode set to access.
#configure terminal
(config)# vlan 2
(config)# vlan 3
Set access port, in this case
it’s assumed that port 1~3 are connected to PC. The PVID of each port is different.
#configure terminal
(config)# interface GigabitEthernet 1/2
(Config-if)# switchport mode access
(Config-if)# switchport access vlan 2
(config)# exit
(config)# interface GigabitEthernet 1/3
(Config-if)# switchport mode access
(Config-if)# switchport access vlan 3
(config)# exit
To verify created VLAN
# show vlan
VLAN Name Interfaces
---- -------------------------------- ----------
1 default Gi 1/1,4-6
2 VLAN0002 Gi 1/2
3 VLAN0003 Gi 1/3
As shown above, VLAN2 is created with the name VLAN0002 and a port 2 assigned to VLAN2. Similarly port 3
assigned to VLAN0003. Remaining ports 1 & 4 to 6 are by default assigned to VLAN 1
7.2.5 SNMP configuration
Following example depicts the configuration of SNMP,
To enable the SNMP mode operation
# configure terminal
(config)# snmp-server
(config)# exit
#