天天看點

Cisco路由器交換機配置指令詳解 1

1. 交換機支援的指令:

                    交換機基本狀态:

                    switch: ;ROM狀态, 路由器是rommon>

                    hostname> ;使用者模式

                    hostname# ;特權模式

                    hostname(config)# ;全局配置模式

                    hostname(config-if)# ;接口狀态

                    交換機密碼設定:

                    switch>enable ;進入特權模式

                    switch#config terminal ;進入全局配置模式

                    switch(config)#hostname ;設定交換機的主機名

                    switch(config)#enable secret xxx ;設定特權加密密碼

                    switch(config)#enable password xxa ;設定特權非密密碼

                    switch(config)#line console 0 ;進入控制台口

                    switch(config-line)#line vty 0 4 ;進入虛拟終端

                    switch(config-line)#login ;允許登入

                    switch(config-line)#password xx ;設定登入密碼xx

                    switch#exit ;傳回指令

                    交換機VLAN設定:

                    switch#vlan database ;進入VLAN設定

                    switch(vlan)#vlan 2 ;建VLAN 2

                    switch(vlan)#no vlan 2 ;删vlan 2

                    switch(config)#int f0/1 ;進入端口1

                    switch(config-if)#switchport access vlan 2 ;目前端口加入vlan 2

                    switch(config-if)#switchport mode trunk ;設定為幹線

                    switch(config-if)#switchport trunk allowed vlan 1,2

                  ;設定允許的vlan

                    switch(config-if)#switchport trunk encap dot1q ;設定vlan 中繼

                    switch(config)#vtp domain ;設定發vtp域名

                    switch(config)#vtp password ;設定發vtp密碼

                    switch(config)#vtp mode server ;設定發vtp模式

                    switch(config)#vtp mode client ;設定發vtp模式

                    交換機設定IP位址:

                    switch(config)#interface vlan 1 ;進入vlan 1

                    switch(config-if)#ip address ;設定IP位址

                    switch(config)#ip default-gateway ;設定預設網關

                    switch#dir flash: ;檢視閃存

                    交換機顯示指令:

                    switch#write ;儲存配置資訊

                    switch#show vtp ;檢視vtp配置資訊

                    switch#show run ;檢視目前配置資訊

                    switch#show vlan ;檢視vlan配置資訊

                    switch#show interface ;檢視端口資訊

                    switch#show int f0/0 ;檢視指定端口資訊

                    2. 路由器支援的指令:

                    路由器顯示指令:

                    router#show run ;顯示配置資訊

                    router#show interface ;顯示接口資訊

                    router#show ip route ;顯示路由資訊

                    router#show cdp nei ;顯示鄰居資訊

                    router#reload ;重新起動

                    路由器密碼設定:

                    router>enable ;進入特權模式

                    router#config terminal ;進入全局配置模式

                    router(config)#hostname ;設定交換機的主機名

                    router(config)#enable secret xxx ;設定特權加密密碼

                    router(config)#enable password xxb ;設定特權非密密碼

                    router(config)#line console 0 ;進入控制台口

                    router(config-line)#line vty 0 4 ;進入虛拟終端

                    router(config-line)#login ;要求密碼驗證

                    router(config-line)#password xx ;設定登入密碼xx

                    router(config)#(Ctrl+z) ; 傳回特權模式

                    router#exit ;傳回指令

                    路由器配置:

                    router(config)#int s0/0 ;進入Serail接口

                    router(config-if)#no shutdown ;激活目前接口

                    router(config-if)#clock rate 64000 ;設定同步時鐘

                    router(config-if)#ip address ;設定IP位址

                    router(config-if)#ip address second ;設定第二個IP

                    router(config-if)#int f0/0.1 ;進入子接口

                    router(config-subif.1)#ip address ;設定子接口IP

                    router(config-subif.1)#encapsulation dot1q ;綁定vlan中繼協定

                    router(config)#config-register 0x2142 ;跳過配置檔案

                    router(config)#config-register 0x2102 ;正常使用配置檔案

                    router#reload ;重新開機

                    路由器檔案操作:

                    router#copy running-config startup-config ;儲存配置

                    router#copy running-config tftp ;儲存配置到tftp

                    router#copy startup-config tftp ;開機配置存到tftp

                    router#copy tftp flash: ;下傳檔案到flash

                    router#copy tftp startup-config ;下載下傳配置檔案

                    ROM狀态:

                    Ctrl+Break ;進入ROM監控狀态

                    rommon>confreg 0x2142 ;跳過配置檔案

                    rommon>confreg 0x2102 ;恢複配置檔案

                    rommon>reset ;重新開機

                    rommon>copy xmodem: flash: ;從console傳輸檔案

                    rommon>IP_ADDRESS=10.65.1.2 ;設定路由器IP

                    rommon>IP_SUBNET_MASK=255.255.0.0 ;設定路由器掩碼

                    rommon>TFTP_SERVER=10.65.1.1 ;指定TFTP伺服器IP

                    rommon>TFTP_FILE=c2600.bin ;指定下載下傳的檔案

                    rommon>tftpdnld ;從tftp下載下傳

                    rommon>dir flash: ;檢視閃存内容

                    rommon>boot ;引導IOS

繼續閱讀