常用思科设备配置命令
常用思科设备配置命令
SmartSage引入
本文主要总结一些在配置思科的网络设备中常用到的一些命令。
一、PC
PC其实没有什么通过命令来配置的,配置IP直接通过Desktop-IP Configuration配置即可。
如果是通过PC连接了交换机或者路由器对交换机或路由器进行配置,则需要使用Desktop-Terminal,其余命令与直接在交换机或路由器的CLI界面的完全一致
PC的Command Prompt 最常用的就是ping命令
二、交换机
1.交换机的各种模式表格
模式 | 访问方式 | 提示符 | 退出方法 | 描述 |
---|---|---|---|---|
用户EXEC (User EXEC) | 在交换机上启动一个会话 | Switch> | 输入 logout 或 quit |
使用该模式完成基本的测试和系统显示功能 |
特权EXEC (Privileged EXEC) | 在用户EXEC模式下,输入 enable 命令 |
Switch# | 输入 disable 或 exit |
使用该模式来检验所输入的命令。一些配置命令也可以使用。可以用口令来保护对此模式的访问 |
VLAN配置 (VLAN configuration) | 在特权EXEC模式下,输入 vlan 命令 |
Switch(vlan)# | 输入 exit |
使用该模式完成 VLAN 各项参数的配置 |
全局配置 (Global configuration) | 在特权EXEC模式下,输入 configure 命令 |
Switch(config)# | 输入 exit 、end 或按下 Ctrl+Z |
使用该模式配置整个交换机的参数 |
接口配置 (Interface configuration) | 在全局配置模式下,输入 interface 命令以及特定端口号 |
Switch(config-if)# | 输入 exit ,按下 Ctrl+Z 或输入 end |
使用该模式配置用于整个交换机的参数 |
连接配置 (Line configuration) | 在全局配置模式下,使用 line vty 或 line console 命令,并指定连接编号 |
Switch(config-line)# | 输入 exit ,按下 Ctrl+Z 或输入 end |
使用该模式配置针对终端连接或 console 连接的参数 |
2.常用命令及其完成的任务
命令 | 任务 |
---|---|
Switch > enable | 由用户模式进入特权模式 |
Switch # show version | 查看版本及引导信息 |
Switch # show running-config | 查看运行设置 |
Switch # show startup-config | 查看开机设置 |
Switch # show history | 查看曾经键入过的命令的历史记录 |
Switch # show interface type slot/number | 显示端口信息 |
Switch # copy running-config startup-config | 将RAM中的当前配置保存到NVRAM中 |
Switch # copy startup-config running-config | 加载来自NVRAM的配置信息 |
Switch # show vlan | 显示虚拟局域网信息 |
Switch(config)# hostname | 修改交换机的名称 |
Switch(config)# interface interface-number | 对端口进行配置 |
Switch(config-if)# duplex full | 将端口设置为全双工模式 |
Switch(config-if)# speed | 设置端口的速度 |
3.VLAN相关命令
命令 | 说明 |
---|---|
Switch# configure terminal | 进入全局配置模式 |
Switch(config)# hostname SwitchA | 修改交换机名称为 SwitchA |
Switch(config)# vlan 10 | 创建 VLAN 10 |
Switch(config-vlan)# name v10 | 将 VLAN 10 命名为 v10 |
Switch(config)# interface FastEthernet0/5 | 进入端口配置模式 |
Switch(config-if)# switchport access vlan 10 | 将端口 Fa0/5 划分到 VLAN 10(注意是access模式) |
Switch(config-if)# switchport mode trunk | 将 Fa0/24 设为 Trunk 模式 |
三、路由器
1.路由器的各种模式表格
模式 | 访问方式 | 提示符 | 退出方法 | 描述 |
---|---|---|---|---|
用户EXEC (User EXEC) | 在路由器上启动一个会话 | Router> | 输入 logout 或 quit | 完成基本的测试和系统显示功能 |
特权EXEC (Privileged EXEC) | 在用户EXEC模式下,输入 enable | Router# | 输入 disable 或 exit | 检验命令并可使用一些配置命令,可用口令保护 |
全局配置 (Global configuration) | 在特权EXEC模式下,输入 configure 命令 | Router(config)# | 输入 exit、end 或按下 Ctrl+Z | 配置整个路由器的参数 |
接口配置 (Interface configuration) | 在全局配置模式下,输入 interface 命令和特定端口号 | Router(config-if)# | 输入 exit 退回全局配置模式;Ctrl+Z 或 end 退回特权EXEC模式 | 为以太网接口配置参数 |
连接配置 (Line configuration) | 在全局配置模式下,使用 line vty 或 line console 命令,指定连接编号 | Router(config-line)# | 输入 exit 退回全局配置模式;Ctrl+Z 或 end 退回特权EXEC模式 | 配置针对终端连接或 console 连接的参数 |
2.静态路由配置
命令 | 说明 |
---|---|
Router# configure terminal | 进入全局配置模式 |
Router(config)# hostname Ra | 修改路由器名称为 Ra |
Ra(config)# interface FastEthernet0/0 | 进入以太网端口配置模式 |
Ra(config-if)# ip address 192.168.1.1 255.255.255.0 | 配置以太网端口 IP 地址和子网掩码 |
Ra(config-if)# no shutdown | 启用以太网端口 |
Ra(config)# interface Serial0/0 | 进入串行端口配置模式 |
Ra(config-if)# bandwidth 56 | 设置串行端口带宽 |
Ra(config-if)# clock rate 56000 | 设置串行端口时钟速率 |
Ra(config-if)# no shutdown | 启用串行端口 |
Ra(config)# ip route 192.168.3.0 255.255.255.0 192.168.2.2 | 配置静态路由信息 |
Ra# copy running-config startup-config | 保存运行配置文件 |
3.动态路由配置
命令 | 说明 |
---|---|
Router> enable | 进入特权模式 |
Router# erase startup-config | 清除启动配置文件 |
Router# reload | 重启路由器 |
Router# config terminal | 进入全局配置模式 |
Router(config)# hostname Router1 | 修改路由器名称为 Router1 |
Router1(config)# interface fast0/0 | 进入以太网端口配置模式 |
Router1(config-if)# ip address 192.168.1.1 255.255.255.0 | 配置以太网端口的 IP 地址和子网掩码 |
Router1(config-if)# no shutdown | 启用以太网端口 |
Router1(config)# interface serial 0/0 | 进入串行端口配置模式 |
Router1(config-if)# ip address 192.168.2.1 255.255.255.0 | 配置串行端口的 IP 地址和子网掩码 |
Router1(config-if)# clock rate 5600 | 设置串行端口时钟速率 |
Router1(config-if)# no shutdown | 启用串行端口 |
Router1(config)# router rip | 进入 RIP 路由配置模式 |
Router1(config-router)# network 192.168.1.0 | 配置 RIP 的网络地址 |
Router1(config-router)# network 192.168.2.0 | 配置 RIP 的网络地址 |
Router1(config-router)# exit | 退出 RIP 路由配置模式 |
Router1(config)# end | 退出全局配置模式 |
Router1# copy running-config startup-config | 保存运行配置到启动配置 |
Router1# show ip protocol | 查看路由协议 |
Router1# show ip route | 列出路由器的路由信息 |
Router1# debug ip rip | 启用 RIP 路由调试 |
Router1# undebug all | 关闭所有调试命令 |
注意:
network 是要配置所有与配置的路由器相连接的网段,RIP v1版本只支持/24的无分类编址IP
4.实现不同VLAN间通信
命令 | 说明 |
---|---|
Router(config)# interface fastethernet 0/0.1 | 进入子接口配置模式 |
Router(config-subif)# encapsulation dot1q 10 | 配置封装模式为 IEEE802.1Q,对应 VLAN 10 |
Router(config-subif)# ip address 192.168.10.1 255.255.255.0 | 配置子接口 IP 地址和子网掩码 |
注意:
这里的 fas0/0.1指的是fas0/0的子接口,是一种逻辑上的接口,并不是真实存在的接口。
评论
匿名评论隐私政策
✅ 你无需删除空行,直接评论以获取最佳展示效果