标签:lan switch 登录密码 word pre int ftp set 特权
一、模式命令
Switch> 用户模式 Switch>enable 进入特权模式 Switch# 特权模式 Switch#configure terminal 进入全局配置模式 Switch(config)# 全局配置模式 ctrl +v shift ? 控制台输入?
二、基本命令
Switch(config)#hostname SW1 配置路由器名称 Switch(config)#no hostname 取消设置的用户名 SW1(config)#enable password 123456 配置登录密码 SW1(config)#enable secret 1234567 配置使用加密密码 SW1(config)#interface Ethernet 0/0 进入e0/0端口 SW1(config-if)#interface e0/0.10 进入e0/0.10子接口 SW1(config-if)#no shutdown 启用端口 SW1(config-if)#shutdown 关闭端口 SW1(config-if)#exit 退出接口 SW1(config)#end 退出全局配置模式 SW1#write 保存设置 SW1#disable 退出特权模式
三、查看命令
SW1#show version 查看系统中的所有版本信息 SW1#show running interface e0/0 查看接口配置的信息 SW1#show ip route 查看路由器的路由表 SW1#show log 查看路由器的log信息 SW1#show ip arp 查看设别学习到的arp信息 SW1#show arp detail 查看设别具体从哪个端口上学习到的 SW1#show ip interface brief 查看路由器IP地址信息 SW1#show int e0/0 查看端口详细 SW1#show cdp neighbors detail 用于搜集吡邻信息 SW1#show interfaces description 查看接口链接的描述信息 SW1#show cdp 查看设备的cdp全局配置信息 SW1#show cdp interface e0/0 查看设备的e0/0端口的cdp配置信息 SW1#show cdp traffic 查看有关cdp包统计信息
四、基本设置
RO1(config)#int e0/0 进入e0/0端口 RO1(config-if)#description miaoshu 对端口设置描述 RO1#sh run int e0/0 显示端口详细描述 RO1(config-if)#no shutdown 启用端口 RO1(config)#line console 0 进入控制台口 RO1(config-line)#logging synchronous 开启信息同步 RO1(config-line)#exec-time 5 5 设置超时操作时间(分钟,秒) RO1(config-line)#no exec-timeout <0-35791> 关闭会话超时 RO1(config-line)#line vty 0 4 设置允许0-4个用户可以远程登录 RO1(config-line)#login 要求口令验证 RO1(config-line)#password 123456 设置登录口令xx RO1#copy running-config startup-config 保存配置 RO1#copy running-config tftp 保存配置tftp RO1#copy startup-config tftp 开机配置存到tftp RO1#copy tftp startup-config 下载配置文件到tftp RO1(config)#clock timezone GMT +8 设置时间时区 RO1#show clock 查看时区 RO1#sh cdp neighbors 查看各个接口链接,思科私有的 RO1#clock set 21:46:30 13 jun 2019 设置时间 RO1(config)#banner motd # ************************************************* weclome to alan ************************************************* # 为登录设置标语最后以#结束
五、VLAN基本命令
SW1(config)#vlan 2 创建vlan2
SW1(config-vlan)#name vlan2 给vlan命名
SW1(config-vlan)#int e0/0
SW1(config-if)#int range e0/1-2 一次进入多个端口
SW1(config-if)#switchport mode access 把端口设置成access模式
SW1(config-if)#switchport access vlan 2 把端口划进vlan2中
SW1#show vlan brief 显示vlan信息
SW1#show ip interface brief 显示所有端口信息
Switch
标签:lan switch 登录密码 word pre int ftp set 特权
原文地址:https://www.cnblogs.com/aqicheng/p/12327683.html