路由器常用配置命令
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Cisco常用配置命令Cisco常用配置命令
一.交换机的基本配置
C2950#
config terminal 进入全局配置模式
show interface fastethernet0/1 查看端口0/1的配置结果
show interface fastethernet0/1 status 查看端口0/1的状态
show mac-address-table 查看整个MAC地址表
clear mac-address-table restricted static 清除限定性地址
C2950(config)#
hostname 2950A / 设置主机名为2950A
interface f0/23 / 进入端口23的配置模式
enable password cisco / 设置enable password为cisco
enable secret cisco1 / 设置enable secret为cisco1
ip address 192.168.1.1 255.255.255.0 / 设置交换机IP 地址
ip default-gateway 192.168.1.254 / 设置默认网关
ip domain-name / 设置域名
ip name-server 200.0.0.1 / 设置域名服务器
配置查看MAC地址表
mac-address-table ?
mac-address-table aging-time 100 / 设置超时是时间为100s
mac-address-table permanent /f0/3 加入永久地址mac-address-table restricted static 0000.0c02.bbcc / f0/6 f0/7 加入静态地址
end
show mac-address-table /查看整个Mac地址表
clear mac-address-table restricted static
C2950(config-if)#
interface fastethernet0/1 /进入接口F0/1子配置模式
interface Ethernet0 /进入以太网口0子配置模式
no shutdown /激活接口
speed ? /查看speed命令的子命令
speed 100 /设置该端口速率为100Mb/s
dulplex full/half/auto /设置该端口为全双工
description TO_PC1 /设置该端口描述为TO_PC1
show interface fastethernet 0/1 /查看端口0/1的配置结果
show interface fastethernet 0/1 status /查看端口0/1的状态
配置VTP和STP
一. 配置VTP
2950A #vlan database /进入VLAN配置子模式
show vtp status /查看VTP设置信息
show vlan /查看VLAN配置信息
copy running-config startup-config /保存配置文件
2950A(vlan)#vtp server/client /设置本交换机为server/client模式
vtp pruning /启动修剪功能
vtp domain vtpserver /设置域名为vtpserver
vlan 2 /创建VLAN2,系统将自动命名
vlan 3 name vlan3 /创建VLAN3,并命名为vlan3 Switch(config-if)#
switchport mode trunk /设置当前端口为Trunk模式
switchport trunk allowed vlan all /设置允许从该端口交换数据的VLAN
switchport trunk vlan remote vlan6 /设置允许交换数据的Vlan(除vlan6外)
switchport mode access /设置端口为静态VLAN访问模式
switchport access vlan2 /将端口9分配给相信的VLAN2
show vlan
生成树协议配置(负载均衡)
Switch#
spanning-tree vlan 1 port-priority 10 /设置VLAN 1的端口的权值为10 (默认值为128)
spanning-tree vlan 1 cost 19 /设置VLAN 1生成树路径值为19
专题三配置路由协议
Router# enable
Router#config terminal
Router(conf)#hostname R1
show session /查看终端服务器的会话
show line 1 /查看线路1的状态clear line 2 /清除线路2
A. 静态路由
格式:ip route ip-addr subnet-mask gateway 加入静态路由
R1(conf)#ip route 192.168.1.0 255.255.255.0 10.1.1.1
ip routing /启动IP路由
B. 动态路由
(1)配置RIP协议
no logging console 防止大量的端口状态变化信息和报警信息对配置过程的影响
[no] ip routing 允许/不允许路由选择协议
router ri p 进入RIP协议配置模式
network 192.168.1.0 声明192.168.1.0与路由器R1直接邻接
version 2 设置RIP协议的版本为2
neighbor ip-addr 说明邻接路由器,以使它们能够自动更新路由
passive interface 接口阻止在指定的接口发送路由更新协议
show ip route 查看路由表信息
show ip route rip/igrp/ospf 查看RIP/IGRP/OSPF协议路由信息
(2)配置IGRP协议
no keepalive /不监测keepalive信号,即不连接设备时可激活该接口
bandwidth x /设置带宽为x(Kb/s)
clockrate x /设置时钟频率为x(HZ)