当前位置:文档之家› 常用配置命令及参数

常用配置命令及参数

CISCO常用配置命令及参数(1)2011-10-27 10:30 佚名 NET130 字号: |CISCO的产品类型非常多,也是企业常常会选择的一个品牌。

所以,作为运维人员,维护企业的网络,对于Cisco的产品的配置也要有所了解。

AD:启动接口,分配IP地址:1.router>2.router> enable3.router#4.router# configure terminal5.router(config)#6.router(config)# interface Type Port7.router(config-if)# no shutdown8.router(config-if)# ip address IP-Address Subnet-Mask9.router(config-if)# ^z配置RIP路由协议:30秒更新一次1.router(config)# router rip2.router(config-if)# network Network-Number <--通告标准A,B,C类网-->3.router(config-if)# ^z配置IGRP路由协议:90秒更新一次1.router(config)# router igrp AS-Number <-- AS-Number范围1~65535-->2.router(config-if)# network Network-Number <--通告标准A,B,C类网-->3.router(config-if)# ^z配置Novell IPX路由协议:1.Novell RIP 60秒更新一次2.router(config)# ipx routing [node address]3.router(config)# ipx maximum-paths Paths <--设置负载平衡,范围1~512-->4.router(config)# interface Type Port5.router(config-if)# ipx network Network-Number [encapsulation encapsulation-type] [secondary] <--通告标准A,B,C类网-->6.router(config-if)# ^z配置DDR:1.router(config)# dialer-list Group-Number protocol Protocol-Type permit [list ACL-Number]2.router(config)# interface bri 03.router(config-if)# dialer-group Group-Number4.router(config-if)# dialer map Protocol-Type Next-Hop-Address name Hostname Telphone-Number5.router(config-if)# ^z配置ISDN:1.router(config)# isdn swith-type Swith-Type <--配置ISDN交换机类型,中国使用basic-net3-->2.router(config-if)# ^z配置Frame Relay:1.router(config-if)# encapsulation frame-relay [cisco | ietf ]2.router(config-if)# frame-relay lmi-type [ansi | cisco | q933a ]3.router(config-if)# bandwidth kilobits4.router(config-if)# frame-relay invers-arp [ Protocol ] [dlci ]5.<--配置静态Invers ARP表:6.router(config)# frame-relay Protocol Protocol-Address DLCI [ Broadcast ] [ ietf | cisco ] [ payload-compress | packet-by-packet ]7.-->8.<--设置Keepalive间隔:9.router(config-if)# keepalive Number10.-->11.<--为本地接口指定DLCI:12.router(config-if)# frame-lelay local-dlci Number13.-->14.<--子接口配置:15.router(config-if)# interface Type Port.Subininterface-Number [ multipoint | point-to-point ]16.router(config-subif)# ip unnumbered Interface17.router(config-subif)# frame-lelay local-dlci Number18.-->19.router(config-if)# ^z配置标准ACL:1.router(config)# access-list Access-List-Number [ permit | deny ] source [ source-mask ] <-- Access-List-Number 范围:1~99标准ACL;100~199扩展ACL;800~899标准IPX ACL;900~999扩展IPX ACL;1000~1099 IPX SAP ACL;600~699Apple Talk ACL-->2.router(config)# interface Type Port3.router(config-if)# ip access-group Access-List-Number [ in | out ]4.router(config-if)# ^z5.配置扩展ACL:1.router(config)# access-list Access-List-Number [ permit | deny ] [ Protocol | Protocol-Number ] source source-wildcard [ Source-Port ] des tination destination-wildcard [ Destination-Port ] [ established ]2.router(config)# interface Type Port3.router(config-if)# ip access-group Access-List-Number [ in | out ]4.router(config-if)# ^z5.配置命名ACL:1.router(config)# ip access-list [ standard | extended ] ACL-Name2.router(config [ std- | ext- ] nacl)# [ permit | deny ] [ IP-Access-List-Test-Conditions ]3.router(config [ std- | ext- ] nacl)# no [ permit | deny ] [ IP-Access-List-Test-Conditions ]4.router(config [ std- | ext- ] nacl)# ^z5.router(config)# interface Type Port6.router(config-if)# ip access-group [ACL-Name | 1~199 ] [ in | out ]7.router(config-if)# ^z配置DCE时钟:1.router# show controllers Type Port <--确定DCE接口-->2.router(confin-if)# clock rate 64000 <--进入DCE接口设置时钟速率-->3.router(config-if)# ^z配置PPP协议:1.router(config)# username Name password Set-Password-Here <--验证方建立数据库-->2.router(config)# interface Type Port3.router(config-if)# encapsulation ppp <--启动PPP协议-->4.router(config-if)# ppp outhentication [ chap | chap pap | pap chap |pap ] <--选择PPP认证-->5.router(config-if)# ppp pap sent-username Name password Password <--发送验证信息-->6.router(config-if)# ^zPAP单向认证配置实例:验证方:1.router-server(config)# username Client password 12345 <--验证方建立数据库-->2.router-server(config)# interface serial 03.router-server(config-if)# encapsulation ppp4.router-server(config-if)# ppp authentication pap <--选择使用PAP实现PPP认证-->5.router-server(config-if)# ^z被验证方:1.router-client(config-if)# encapsulation ppp2.router-client(config-if)# ppp pap sent-username Client password 12345 <--发送验证信息-->3.router-client(config-if)# ^zPAP双向认证配置实例:路由器 A:1.routerA(config)# username B password 123452.routerA(config)# interface serial 03.routerA(config-if)# encapsulation ppp4.routerA(config-if)# ppp authentication pap5.routerA(config-if)# ppp pap sent-username A password 543216.routerA(config-if)# ^z路由器 B:1.routerB(config)# username A password 543212.routerB(config)# interface serial 13.routerB(config-if)# encapsulation ppp4.routerB(config-if)# ppp authentication pap5.routerB(config-if)# ppp pap sent-username B password 123456.routerB(config-if)# ^zCHAP单向认证配置实例:验证方:1.router-server(config)# username router-client password 123452.router-server(config)# interface serial 03.router-server(config-if)# encapsulation ppp4.router-server(config-if)# ppp authentication chap5.router-server(config-if)# ^z被验证方:1.router-client(config-if)# encapsulation ppp2.router-client(config-if)# ppp authentication chap3.router-client(config-if)# ppp chap hostname router-client4.router-client(config-if)# ppp chap password 123455.router-client(config-if)# ^zCHAP双向认证配置实例:路由器 A:1.routerA(config)# username routerB password 123452.routerA(config)# interface serial 03.routerA(config-if)# encapsulation ppp4.routerA(config-if)# ppp authentication chap5.routerA(config-if)# ppp chap hostname routerA6.routerA(config-if)# ppp chap password 543217.routerA(config-if)# ^z路由器 B:1.routerB(config)# username routerA password 543212.routerB(config)# interface serial 13.routerB(config-if)# encapsulation ppp4.routerB(config-if)# ppp authentication chap5.routerB(config-if)# ppp chap hostname routerB6.routerB(config-if)# ppp chap password 123457.routerB(config-if)# ^zTelnet使用:1.routerA# terminal monitor <--可以传回在远端主机执行Debug命令的结果-->2.routerA# telnet IP-Address [ Router-Name ] <--Telnet到指定的地址或名字的主机-->3.routerB# [ exit | logout ] <--退出Telnet-->4.routerB# ++<6>再按<--挂起Telnet-->5.routerA# show sessions <--显示当前所有Telnet的信息,包括Connect-Number -->6.routerA# Connect-Number <--返回指定的Telnet连接-->7.routerA# disconnect IP-Address [ Router-Name ] <--断开指定地址或名字的主机的连接-->8.routerA# show user <--显示Telnet到本机的连接信息-->9.routerA# clear line [ 0 | 1 | 2 | 3 | 4 ] <--断开指定Telnet到本机的连接-->禁止任何Telnet到本机:1.router(config)# line vty 0 42.router(config-line)# access-class ACL-Number3.router(config)# ^z设置主机名:1.router(config)# hostname Set-Hostname2.router(config)# ^z3.router(config)# ^z设置用户模式密码:1.router(config)# line console 02.router(config-line)# login3.router(config-line)# password Set-Password4.router(config-line)# ^z设置Telnet密码:1.router(config)# line vty 0 42.router(config-line)# login3.router(config-line)# password Set-Password4.router(config-line)# ^z设置特权模式密码:1.router(config)# enable password Set-Password <--不加密的密码,明码-->2.router(config)# enable secret Set-Password <--经过加密的密码-->3.router(config)# ^z给所有密码加密:1.router(config)# service password-ancryption Set-Password-Here2.router(config)# no service password-ancryption <--取消加密-->3.router(config)# ^z设置登录Banner:1.router(config)# banner motd 分隔符 Set-Banner-Information-Here 分隔符<--前后分隔符一定要一致-->设置接口的描述信息:1.router(config-if)# description Set-Port-Information-Here2.router(config)# ^zCDP的控制:1.router(config-if)# cdp enable <--在指定端口启用CDP,缺省-->2.router(config-if)# no cdp enable <--在指定端口关闭CDP-->3.router(config)# cdp run <--使所有端口启用CDP-->4.router(config)# no cdp run <--使所有端口关闭CDP-->Ping的使用:1.router# ping IP-Address2.router# ping <--扩展Ping命令-->3.Protocol [ip]:[ Protocol-Type ] <--选择协议类型-->4.Target IP address:IP-Address <--输入测试地址-->5.Repeat count [5]:<--选择发送的ICMP包数量-->6.Datagram size [100]:<--选择每个包的大小-->7.Timeout in seconds [2]:<--设置每个包的超时时间-->8.Extended commands [n]:y <--使用扩展Ping命令-->9.Sweep range of sizes [n]:Tracke的使用:1.router# trace IP-Address [ Host-Name为Cisco 4000路由器指定媒体类型:1.router(config-if)# media-type 10baset <--使AUI(默认)失效,改为使用RJ-45-->2.router(config-if)# ^z更改路由器启动顺序:1.router(config)# boot system flash IOS-FileName2.router(config)# boot system tftp IOS-FileName TFTP-IP-Address3.router(config)# boot system rom4.router(config)# ^z修改寄存器数值:1.router(config)# config-register Value <--Cisco出厂默认Value=0x2102,Value范围:0x2100(进入ROM监视器),0x2101(使系统从ROM启动),0x2102~0x210F (使系统从NVRAM启动)。

相关主题