码迷,mamicode.com
首页 > 其他好文 > 详细

cisio交换机配置

时间:2019-05-11 19:42:48      阅读:603      评论:0      收藏:0      [点我收藏+]

标签:cisco   int   用户   cisc   info   vlan   网卡   远程   csdn   

1.修改交换机名、端口

Switch>enable    //进入特权模式
Switch#conf  t   //进入配置模式
Switch(config)#hostname  S2960    //修改交换机名
S2960(config)#interface fa 0/1    //选择端口
S2960(config-if)#speed 100       //修改端口配置
S2960(config-if)#duplex full
S2960(config-if)#exit
同时将PC的网卡改成全双工模式,100M速率,否则链路不通

2.查看交换机各项配置参数

Switch#show version
Switch#show run
Switch#show interface
Switch#show mac-address-table
Switch#config t

3.修改交换机特权模式密码

Switch(config)#enable  password cisco  //激活特权模式密码为cisco
Switch(config)#no enable password      //取消特权模式密码

3.修改交换机连接和telnet登录密码

Switch(config)#line console 0        //选择控制台线路
Switch(config-line)#password cisco   //激活该控制台线路密码为cisco
Switch(config-line)#login          //打开登录认证功能
Switch(config-line)#no password    //取消密码

技术图片

4.cisio交换机配置Telnet登录

Swicth0设置(通过PC2的terminal设置 )
技术图片

Switch>en         //进入特权模式
Switch#conf  t   //进入全局配置模式
Switch(config)#interface vlan 1     //创建并进入VLAN 1的接口视图(默认交换机的所有端口都在VLAN1中)
Switch(config-if)#ip address 192.168.1.1 255.255.255.0    //在VLAN 1 接口上配置交换机远程管理的IP地址
Switch(config-if)#no shutdown   //开启接口
Switch(config-if)#exit

Switch(config)#line vty 0 4         //进入远程登录用户管理视图,0-4个用户
Switch(config-line)#login           //打开登录认证功能
Switch(config-line)#password cisco  //配置远程登录的密码为5ijsj,密码明码显示
Switch(config-line)#privilege level 1  //配置远程登录用户的权限为最低权限1(最高权限3)
Switch(config-line)#end 
          
Switch#show run   //显示当前交换机配置情况

PC2 桌面选项卡中的CMD,命令提示符

ping 192.168.1.1   //成功以后,再做下一步
telnet 192.168.1.1
   输入password:cisco    //登录成功,进入用户模式
Switch>Enable//进入特权模式

相关链接

Cisco? Packet Tracer 实验教程

cisio交换机配置

标签:cisco   int   用户   cisc   info   vlan   网卡   远程   csdn   

原文地址:https://www.cnblogs.com/tomtellyou/p/10849574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!