1.按照下图搭建网络
2.打开交换机命令行(CLI)
3.交换机配置
Switch>en #进入特权模式
Switch#conf t #进入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#ho s1 #配置交换机名称为s1
s1(config)#ena pass 123 #配置特权模式密码为123
s1(config)#ip domain-name 19it.com #配置域名为19it.com
s1(config)#ip ssh v 2 #启用SSHv2版本
Please create RSA keys (of at least 768 bits size) to enable SSH v2.
s1(config)#cr key gen rsa #使用RSA加密
The name for the keys will be: s1.19it.com
Choose the size of the key modulus in the range of 360 to 2048 for your
General Purpose Keys. Choosing a key modulus greater than 512 may take
a few minutes.
How many bits in the modulus [512]: 1024 #输入加密长度
% Generating 1024 bit RSA keys, keys will be non-exportable...[OK]
s1(config)#username root secret toor #配置登录用户名为root ,密码为toor
*三月 1 0:6:24.491: %SSH-5-ENABLED: SSH 2 has been enabled
s1(config)#vlan 99 #创建VLAN99
s1(config-vlan)#int vlan 99 #进入VLAN99接口
s1(config-if)#
%LINK-5-CHANGED: Interface Vlan99, changed state to up
s1(config-if)#ip add 192.168.1.1 255.255.255.0 #配置IP(交换机的)
s1(config-if)#no sh #启用端口
s1(config-if)#int f0/1 #进入Fa0/1接口
s1(config-if)#sw mo ac #配置该接口工作类型为access,允许VLAN通过
s1(config-if)#sw ac vlan 99 #把VLAN99分配到该接口
s1(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan99, changed state to up
s1(config-if)#line vty 0 4 #进入管理线路0-4
s1(config-line)#tr in ssh #只允许SSH登录
s1(config-line)#login local #使用本地数据库
4.配置电脑ip
5.在电脑命令行通过SSH登录交换机
#注意此处的第一条命令的-l是小写的L,不是数字一
近期评论