The Cisco Catalyst 3650 series switch is part of Cisco's enterprise-class switches and supports advanced features such as Power over Ethernet (PoE), stacking, and Cisco’s Unified Access. Below is a general guide for configuring a Cisco 3650 switch, covering basic initial setup, VLAN configuration, and IP addressing:
1. Initial Setup
First, connect to the switch via a console cable and use a terminal emulator (e.g., PuTTY, Tera Term, or Cisco’s own CLI tool). Follow these steps:
a. Access the CLI:
- Once you connect, you should see the switch’s CLI prompt.
- Enter privileged EXEC mode by typing
enable
.
b. Enter Global Configuration Mode:
c. Assign a Hostname:
To give the switch a unique name:
line con 0
password your_password
login
exit
enable secret your_enable_password
d. Set a Password:
To secure your switch, set a console and enable password:
line con 0
password your_password
login
exit
enable secret your_enable_password
2. Configure VLANs
VLANs (Virtual Local Area Networks) allow network segmentation. Here’s how to create and assign VLANs:
a. Create VLANs:
b. Assign Ports to VLANs:
To assign a physical interface to a VLAN:
interface range fa0/1 - 10
switchport mode access
switchport access vlan 10
exit
Repeat this for other ports and VLANs as necessary.
3. Configure IP Addressing (Management VLAN)
To manage the switch remotely, assign an IP address to the VLAN interface that you will use for management (typically VLAN 1):
a. Assign IP to VLAN Interface:
b. Set the Default Gateway:
This is necessary for remote management:
4. Enable SSH for Remote Management
To manage the switch securely over the network, enable SSH access:
a. Configure the Domain Name:
b. Generate SSH Keys:
c. Enable SSH:
d. Create a User Account for SSH Access:
5. Save Configuration
Once you have finished your configuration, save the settings to the startup configuration file to ensure they persist after a reboot:
6. Verify Configuration
To check the VLANs, IP address, and SSH access:
- Verify VLAN configuration:
show vlan brief
- Verify interface IP configuration:
show ip interface brief
- Verify SSH access:
show ip ssh
Example Configuration Summary
Here’s an example configuration for a simple setup with two VLANs, management IP configuration, and SSH access:
This configuration assumes you are using VLANs 10 and 20 and that your network’s default gateway is 192.168.1.1.
0 Comments