《思科交换机常用配置命令》学习笔记(更新中)

1、基本配置

Switch>enable  //进入特权模式
Switch#
Switch#configure terminal  //从特权模式进入全局配置模式
Switch(config)#
Switch(config)#hostname cisco-sw1 //修改交换机名称
cisco-sw1(config)#enable password cisco //配置交换机明文密码,登录特权模式时需要输入该密码
cisco-sw1(config)#enable secret ciscoswitch  //配置交换机密文密码,登录特权模式时需要输入该密码

2、交换机配置VLAN,并将端口加入到该VLAN

cisco-sw1(config)#vlan 2
cisco-sw1(config-vlan)#name test
cisco-sw1(config-vlan)#exit
cisco-sw1(config)#interface  fastEthernet 0/1
cisco-sw1(config-if)#switchport mode access
cisco-sw1(config-if)#switchport access vlan 2

3、进入交换机某一端口

switch> enable
switch#configure terminal
switch(conf)# interface fastehernet 0/1
switch(conf-if)#

4、show命令,交换机的所有配置和其它相关信息都需要通过show命令查看

switch> enable
switch#show version //查看系统中的所有版本信息
switch#show  vlan id 1 //查看交换机有关vlan配置信息
switch#show running-configure //查看交换机当前起作用的配置信息
switch#show interface fastethernet 0/1 //查看交换机1 接口具体配置和统计信息
switch#show mac-address-table //查看mac地址转发表

5、交换机恢复出厂设置

switch>enable
switch#erase startup-configure
switch# reload

6、telnet远程登录设置

switch>en
switch#configure terminal
swich(conf)#enable password cisco //以cisco为特权模式密码
swich(conf)#interface vlan 1 //以vlan 1端口作为远程登录的接口,其他端口亦可
swich(conf-if)#ip address 192.168.1.1 255.255.255.0
swich(conf-if)#no shut
swich(conf-if)#exit
swich(conf)line vty 0 4 设置0-4 个用户可以telnet 远程登陆
swich(conf-line)#password 123456
swich(conf-line)#login

7、SSH远程登录设置:

Switch#conf t
Switch(config)#hostname cisco-sw1   //交换机重新命名
cisco-sw1(config)#ip domain-name cisco.com //配置域名
cisco-sw1(config)#line vty 0 4
cisco-sw1(config-line)#transport input ssh //登录方式为SSH
cisco-sw1(config-line)#exit
cisco-sw1(config)#crypto key generate rsa //配置秘钥

你可能感兴趣的:(知识分享,网络工程)