




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、Written by Aiko feat. Asuqa Http:/CISCOCERTIFIEDNETWORKASSOCIATELAB GUIDE思科認證網(wǎng)絡(luò)工程師完全實驗手冊作者 紅頭發(fā) CCIE#15101-1-Written by Aiko feat. Asuqa Http:/-2-Written by Aiko feat. Asuqa Http:/-3-Written by Aiko feat. Asuqa Http:/-4-Written by Aiko feat. Asuqa Http:/-5-Written by Aiko feat. Asuqa Http:/第一章 基礎(chǔ)篇實驗一
2、 - 路由器基本設(shè)置Lab Exercise 1.1目標:熟練掌握如何進入路由器各種模式并設(shè)置主機名.設(shè)備需求:Cisco 2501路由器一臺.語法:1.從路由器用戶模式進入特權(quán)模式:Aiko>enable2.從特權(quán)模式進入全局配置模式:Aiko#configure terminal3.為路由器設(shè)置主機名:Aiko(config)#hostname hostname4.退出到特權(quán)模式:Aiko(config)#end5.退出到用戶模式:Aiko#disable6.退出控制臺線路:Aiko>quit解釋:路由器的模式大致可分為:1.用戶模式:權(quán)限最低,通常只能使用少量查看性質(zhì)的命令.
3、2.特權(quán)模式:可以使用更多查看性質(zhì)的命令和一些少量修改路由器參數(shù)的命令.3.全局配置模式:不能使用查看性質(zhì)的命令,但是確實做全局性修改和設(shè)置的模式,它還可以向下分為一些子模式,比如接口配置模式,線路配置模式,路由進程配置模式等等.配置實例一:Router>enableRouter#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname AikoAiko(config)#exitAiko#*Mar 1 00:04:30.815: %SYS-5-
4、CONFIG_I: Configured from console by consoleAiko#disableAiko>-6-Written by Aiko feat. Asuqa Http:/Lab Exercise 1.2目標:熟練掌握如何為路由器設(shè)置時間.設(shè)備需求:Cisco 2501路由器一臺.語法:在特權(quán)模式下設(shè)置路由器時間:Aiko#clock set hh:mm:ss day month year解釋:路由器本地的時間標識.配置實例一:Aiko#clock set 16:16:16 25 September 2005Aiko#show clock16:16:24.503
5、UTC Sun Sep 25 2005Aiko#Lab Exercise 1.3目標:熟練掌握如何設(shè)置空閑超時時間.設(shè)備需求:Cisco 2501路由器一臺語法:1.從全局配置模式進入線路配置模式,進入控制臺口線路:Aiko(config)#line console number2.啟用光標跟隨:Aiko(config-line)#logging synchronous3.設(shè)置當鍵盤多少時間內(nèi)無動作,自動被路由器彈出到用戶模式以外,即退出.如果設(shè)置為0分0秒代表永不超時:Aiko(config-line)#exec-timeout minute second解釋:所謂光標跟隨,是指當我們在輸入
6、命令的時候,不會被一些日志信息或debug命令產(chǎn)生的調(diào)試命令所沖斷.模式該特性是沒有啟用的.配置實例一:Aiko(config)#exitAiko#-7-Written by Aiko feat. Asuqa Http:/ *Mar 1 00:20:11.231: %SYS-5-CONFIG_I: Configured from console by consoleconfigure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#line console 0Aiko(config
7、-line)#logging synchronousAiko(config-line)#endAiko#*Mar 1 00:20:38.123: %SYS-5-CONFIG_I: Configured from console by consoleAiko#configure terminalAiko(config)#配置實例二:Aiko#show clock*15:32:12.747 UTC Mon Jul 28 2005Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aik
8、o(config)#line console 0Aiko(config-line)#exec-timeout 20 0Aiko(config)#endAiko#exit*Mar 1 00:24:33.643: %SYS-5-CONFIG_I: Configured from console by consoleAiko#Aiko#show clock*15:52:12.747 UTC Mon Jul 28 2005Aiko#Aiko con0 is now availablePress RETURN to get started.Aiko>Lab Exercise 1.4目標:熟練掌握如
9、何為路由器設(shè)置標語信息和描述信息.設(shè)備需求:Cisco 2501路由器一臺.語法:1.進入全局配置模式,設(shè)置標語信息:Aiko(config)#banner motd # text #2.進入接口配置模式:Aiko(config-if)#interface type number-8-Written by Aiko feat. Asuqa Http:/3.為路由器接口設(shè)置描述信息:Aiko(config-if)#description text解釋:在設(shè)置標語信息的時候,以#號做為分隔符,并按下回車鍵.描述語句的本地的一個標識,它只在本地可見,并且Cisco IOS執(zhí)行命令的時候會跳過它.配置
10、實例一:Aiko(config)#banner motd #Enter TEXT message. End with the character '#'.hello!#Aiko(config)#endAiko#exitAiko con0 is now availablePress RETURN to get started.hello!Aiko>配置實例二:Aiko(config-if)#description LAN SalesAiko(config-if)#endAiko#*Mar 1 02:05:48.919: %SYS-5-CONFIG_I: Configured
11、 from console by consoleAiko#show running-config interface ethernet 0Building configuration.Current configuration : 75 bytes!interface Ethernet0description LAN Salesno ip addressshutdownendAiko#Lab Exercise 1.5目標:熟練掌握如何為路由器特權(quán)模式設(shè)置密碼.-9-Written by Aiko feat. Asuqa Http:/設(shè)備需求:Cisco 2501路由器一臺.語法:進入全局配置模
12、式,設(shè)置密碼:Aiko(config)#enable password|secret password解釋:兩種密碼的區(qū)別在于,前者是一些低版本Cisco IOS軟件的認證方式,并且密碼是基于明文的;后者是目前Cisco IOS軟件最常用的認證方式,它是基于MD5加密的.如果同時設(shè)置了這兩種認證方式,他們的口令必須不一樣.但是,我們推薦使用后者進行認證,并且如果同時設(shè)置了兩種認證方式,只有后者生效.密碼區(qū)分大小寫.配置實例一:Aiko(config)#enable password AikoAiko(config)#enable secret AikoThe enable secret you
13、 have chosen is the same as your enable password.This is not recommended. Re-enter the enable secret.Aiko(config)#enable secret AsuqaAiko(config)#exitAiko#*Mar 1 02:16:48.067: %SYS-5-CONFIG_I: Configured from console by consoleAiko#exitAiko con0 is now availablePress RETURN to get started.Aiko>en
14、ablePassword:AsuqaAiko#show running-configBuilding configuration.Current configuration : 609 bytes!version 12.2service timestamps debug datetime msecservice timestamps log datetime msecno service password-encryption!hostname Aiko!-10-Written by Aiko feat. Asuqa Http:/ logging queue-limit 100enable s
15、ecret 5 $1$NTU5$EEYi0qfB1pGENzuPxDCyz.enable password Aiko!-More-Lab Exercise 1.6目標:熟練掌握如何為路由器各個配置模式設(shè)置密碼.設(shè)備需求:Cisco 2501路由器一臺.語法:1.從全局配置模式進入線路配置模式,進入控制臺口線路:Aiko(config)#line console|aux|vty start-number end-number2.設(shè)置密碼:Aiko(config-line)#password password3.啟用登陸:Aiko(config-line)#login解釋:當設(shè)置密碼之后,如果不啟
16、用登陸命令,退出之后,路由器是不會提示輸入密碼的.控制臺線路密碼為控制臺線路所用;輔助接口(AUX)線路密碼為輔助接口線路所用;虛擬終端線路(VTY)是為telnet會話所用,路由器根據(jù)Cisco IOS軟件版本不同,支持多條VTY會話數(shù)目也不同.所有密碼是以明文方式保存在DRAM(running-config)文件里的.配置實例一:Aiko(config)#line console 0Aiko(config-line)#password AikoAiko(config-line)#loginAiko(config-line)#line aux 0Aiko(config-line)#passw
17、ord AikoAiko(config-line)#loginAiko(config-line)#exitAiko(config)#line vty 0 4Aiko(config-line)#password AikoAiko(config-line)#loginAiko(config-line)#end*Mar 1 03:04:43.491: %SYS-5-CONFIG_I: Configured from console by consoleAiko#exitAiko con0 is now available-11-Written by Aiko feat. Asuqa Http:/ P
18、ress RETURN to get started.User Access VerificationPassword:AikoAiko>Lab Exercise 1.7目標:熟練掌握如何為路由器關(guān)閉DNS查詢功能.設(shè)備需求:Cisco 2501路由器一臺.語法:全局配置模式下,關(guān)閉DNS查詢功能:Aiko(config)#no ip domain lookup解釋:默認情況下,路由器的DNS查詢是啟用的,即當你錯誤的輸入一條Cisco IOS軟件無法識別的命令的時候,路由器會把這個命令當成主機名,然后向DNS服務(wù)器進行查詢.一般實驗性的環(huán)境中,如果我們沒有DNS服務(wù)器,因為輸入錯誤的命
19、令而造成無用的查詢,是非常耗時的.因此我們可以關(guān)閉這一功能.配置實例一:Aiko#AikoTranslating "Aiko".domain server (55)Translating "Aiko".domain server (55)Translating "Aiko".domain server (55)% Unknown command or computer name, or unable to find computer addressAiko#
20、configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#no ip domain lookupAiko(config)#endAiko#*Mar 1 03:13:12.371: %SYS-5-CONFIG_I: Configured from console by consoleAiko#AikoTranslating "Aiko"% Unknown command or computer name, or unable to find comput
21、er addressAiko#實驗二 - 路由器連通性設(shè)置-12-Written by Aiko feat. Asuqa Http:/Lab Exercise 2.1目標:熟練掌握如何連通路由器并進行相互間ping和telnet的測試.設(shè)備需求:Cisco 2501路由器兩臺.語法:1.進入接口配置模式:Aiko(config)#interface type number2.為接口設(shè)置IP地址信息:Aiko(config-if)#ip address ip-address mask3.根據(jù)需要,如果接口為串行接口,要為DCE端設(shè)置時鐘頻率:Aiko(config-if)#clock rate
22、speed4.開啟接口:Aiko(config-if)#no shutdown解釋:默認所有接口都是處于關(guān)閉狀態(tài)的,對于一般的以太網(wǎng)接口,設(shè)置了IP地址信息之后,只需要開啟該接口即可;對于串行接口,還要注意在DCE端設(shè)置時鐘頻率,以便為DTE端提供時鐘頻率進行同步.當然這一般用于實驗室背對背環(huán)境中,真正現(xiàn)實環(huán)境中,DCE是由CSU/DSU來提供,無須用戶設(shè)置.另外要注意的是,端到端(end-to-end)的連接,直連的接口必須處于同一子網(wǎng).配置實例一:路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per
23、 line. End with CNTL/Z.Aiko(config)#interface serial 0Aiko(config-if)#ip address 52Aiko(config-if)#no shutdown*Mar 1 00:13:45.839: %LINK-3-UPDOWN: Interface Serial0, changed state to down Aiko(config-if)#endAiko#*Mar 1 00:14:24.511: %LINK-3-UPDOWN: Interface Serial0, changed st
24、ate to upAiko#*Mar 1 00:14:25.515: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to upAiko#路由器Asuqa配置如下:-13-Written by Aiko feat. Asuqa Http:/ Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#interface serial 0Asuqa(config-if)
25、#ip address 52Asuqa(config-if)#clock rate 56000Asuqa(config-if)#no shutdownAsuqa(config-if)#endAsuqa#Sep 25 16:24:25.347: %SYS-5-CONFIG_I: Configured from console by consoleAsuqa#Sep 25 16:24:25.787: %LINK-3-UPDOWN: Interface Serial0, changed state to upAsuqa#Sep 25 16:24:26.79
26、1: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to upAsuqa#測試一:Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/40 msAiko#Asuqa#ping Ty
27、pe escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/40 msAsuqa#測試二:Aiko#telnet Trying . OpenPassword required, but none setConnection to closed by foreign hostAiko#解釋
28、:在telnet到遠端路由器的時候,如果對方的VTY線路沒有設(shè)置密碼和啟用登陸,將拒絕本地路由器telnet.-14-Written by Aiko feat. Asuqa Http:/解決方案:是在遠端路由器設(shè)置VTY線路的密碼和啟用登陸.路由器Asuqa配置如下:Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#line vty 0 4Asuqa(config-line)#password AikoAsuqa(config-line)#login
29、Asuqa(config-line)#endAsuqa#測試三:Aiko#telnet Trying . OpenUser Access VerificationPassword:AikoAsuqa>exitConnection to closed by foreign hostAiko#Lab Exercise 2.2目標:熟練掌握如何創(chuàng)建主機列表,并使用ping和telnet測試.設(shè)備需求:Cisco 2501路由器兩臺.準備工作:確保兩臺路由器已經(jīng)預(yù)先的端到端的連通.語法:全局配置模式下創(chuàng)建靜態(tài)的IP地址到主機名的映射:Aiko(
30、config)#ip host hostname ip-address配置實例一:路由器Aiko配置如下:Aiko(config)#ip host Asuqa Aiko(config)#end-15-Written by Aiko feat. Asuqa Http:/ Aiko#測試一:Aiko#AsuqaTrying Asuqa (). OpenUser Access VerificationPassword:AikoAsuqa>exitConnection to Asuqa closed by foreign hostAiko#測試二:Aiko#pin
31、g AsuqaType escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/40/48 msAiko#實驗三 - 路由器恢復(fù)性設(shè)置Lab Exercise 3.1目標:熟練掌握如何快速和恢復(fù)路由器到出廠設(shè)置.設(shè)備需求:Cisco 2501路由器一臺.準備工作:確保路由器之間有所配置.語法:1.進入全局配置模式,快速恢復(fù)路由器的接口配置到出廠配
32、置:Aiko(config)#default interface type number2.特權(quán)模式下刪除啟動配置文件,路由器下次啟動將全局恢復(fù)到出廠設(shè)置:Aiko#erase startup-config配置實例一:Aiko#show running-config interface serial 0-16-Written by Aiko feat. Asuqa Http:/ Building configuration.Current configuration : 62 bytes!interface Serial0ip address 52e
33、ndAiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#default interface serial 0Building configuration.Interface Serial0 set to default configurationAiko(config)#endAiko#show running-config interface serial 0Building configuration.Current configuration : 4
34、0 bytes!interface Serial0no ip addressendAiko#Lab Exercise 3.2目標:熟練掌握如何重啟路由器和計劃性的重啟路由器.設(shè)備需求:Cisco 2501路由器一臺.語法:在特權(quán)模式下,重啟或計劃性的重啟路由器:Aiko#reload at hh:mm day year|in minutes text解釋:可以定義路由器,立即重啟或在多少分鐘之后,或在具體的時間里重啟,還可以指定重啟原因.如果在重啟之前,路由器配置文件被修改過,系統(tǒng)會提醒你是否保存修改.配置實例一:Aiko#reload in 1 the Administrator's
35、 mad-17-Written by Aiko feat. Asuqa Http:/ System configuration has been modified. Save? yes/no: nReload scheduled in 56 secondsReload reason: the Administrator's madProceed with reload? confirmAiko#*Mar 1 00:50:49.787: %SYS-5-SCHEDULED_RELOAD: Reload requested for 00:51:42 UTC Mon Mar 1 1993 at
36、 00:50:42 UTC Mon Mar 1 1993 by console. Reload Reason: the Administrator's mad.Aiko#測試:Aiko#show reloadReload scheduled in 47 seconds by consoleReload reason: the Administrator's madAiko#* - SHUTDOWN NOW -*-18-Written by Aiko feat. Asuqa Http:/第二章 路由篇實驗一 - 靜態(tài)路由基本配置Lab Exercise 1.1目標:熟練掌握如何配
37、置靜態(tài)路由.設(shè)備需求:Cisco 2501路由器兩臺.準備工作:確保路由器之間接口IP地址信息已經(jīng)設(shè)置好,能夠端到端的ping通.語法:進入全局配置模式,定義目標網(wǎng)絡(luò)號,目標網(wǎng)絡(luò)的子網(wǎng)掩碼和下一跳地址或接口:Aiko(config)#ip route network mask next-hop-address|exit-interface distance解釋:選用下一跳地址和選擇下一跳路由器的接口做為到達目標網(wǎng)絡(luò)的出口的區(qū)別在于管理距離.選擇前者,管理距離為1;選擇后者,管理距離為0還可以在定義靜態(tài)路由的時候指定管理距離.配置實例一:路由器Asuqa配置如下:Asuqa#configure
38、terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#ip route Asuqa(config)#endAsuqa#-19-Written by Aiko feat. Asuqa Http:/路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#ip rou
39、te serial 0Aiko(config)#end測試:Asuqa#show ip route staticS /24 1/0 via Asuqa#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 32/3
40、5/36 msAsuqa#Aiko#show ip route staticS /24 is directly connected, Serial0Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 36/36/36 msAiko#Lab Exercise 1.2目標:
41、熟練掌握如何配置默認路由.設(shè)備需求:Cisco 2501路由器兩臺.準備工作:確保路由器之間接口IP地址信息已經(jīng)設(shè)置好,能夠端到端的ping通.語法:進入全局配置模式,定義目標網(wǎng)絡(luò)號,目標網(wǎng)絡(luò)的子網(wǎng)掩碼分別為,并定義下一跳地址或接口: Aiko(config)#ip route next-hop-address|exit-interface distance解釋: 代表所有網(wǎng)絡(luò).選用下一跳地址和選擇下一跳路由器的接口做為到達目標網(wǎng)絡(luò)的出口的區(qū)-20-Written by Aiko feat. Asuqa Http:/ 別
42、在于管理距離.選擇前者,管理距離為1;選擇后者,管理距離為0還可以在定義靜態(tài)路由的時候指定管理距離.配置實例一:路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#ip route Aiko(config)#endAiko#測試:Aiko#show ip route staticS* /0 1/0 via Aiko#實驗二 - 距離矢量路由協(xié)議基本配置La
43、b Exercise 2.1目標:熟練掌握如何配置RIP.設(shè)備需求:Cisco 2501路由器兩臺.準備工作:確保路由器之間接口IP地址信息已經(jīng)設(shè)置好,能夠端到端的ping通.語法:1.進入全局配置模式,啟用RIP:Aiko(config)#router rip-21-Written by Aiko feat. Asuqa Http:/2.定義要宣告的直連主類網(wǎng)絡(luò)號:Aiko(config-router)#network network-number解釋:啟用了RIP路由協(xié)議之后,只需要宣告主類直連網(wǎng)絡(luò)號,即可完成RIP的配置.配置實例一:路由器Asuqa配置如下:Asuqa#configur
44、e terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#router ripAsuqa(config-router)#network Asuqa(config-router)#network Asuqa(config-router)#endAsuqa#路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko
45、(config)#router ripAiko(config-router)#network Aiko(config-router)#network Aiko(config-router)#endAiko#測試:Asuqa#show ip route ripR /24 120/1 via , 00:00:21, Serial0Asuqa#ping Type escape sequence to abort.-22-Written by Aiko feat. Asuqa Http:/ Sending
46、 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 msAsuqa#Aiko#show ip route ripR /24 120/1 via , 00:00:02, Serial0Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to
47、, timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/avg/max = 32/35/36 msAiko#Lab Exercise 2.2目標:熟練掌握如何配置RIPv2.設(shè)備需求:Cisco 2501路由器兩臺.準備工作:確保路由器之間接口IP地址信息已經(jīng)設(shè)置好,能夠端到端的ping通.語法:1.進入全局配置模式,啟用RIP:Aiko(config)#router rip2.啟用RIP版本2(RIPv2):Aiko(config-router)#version 23.定義要宣告
48、的直連主類網(wǎng)絡(luò)號:Aiko(config-router)#network network-number解釋:啟用了RIPv2路由協(xié)議之后,只需要宣告主類直連網(wǎng)絡(luò)號,即可完成RIPv2的配置.配置實例一:-23-Written by Aiko feat. Asuqa Http:/路由器Asuqa配置如下:Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(config)#router ripAsuqa(config-router)#version 2Asuqa(conf
49、ig-router)#network Asuqa(config-router)#network Asuqa(config-router)#endAsuqa#路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#router ripAiko(config-router)#version 2Aiko(config-router)#network Aiko(config-route
50、r)#network Aiko(config-router)#endAiko#測試:Asuqa#show ip route ripR /24 120/1 via , 00:00:21, Serial0Asuqa#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round-trip min/av
51、g/max = 32/35/36 msAsuqa#-24-Written by Aiko feat. Asuqa Http:/ Aiko#show ip route ripR /24 120/1 via , 00:00:02, Serial0Aiko#ping Type escape sequence to abort.Sending 5, 100-byte ICMP Echos to , timeout is 2 seconds:!Success rate is 100 percent (5/5), round
52、-trip min/avg/max = 32/35/36 msAiko#實驗三 - 鏈路狀態(tài)路由協(xié)議基本配置Lab Exercise 3.1目標:熟練掌握如何配置單區(qū)域的OSPF.設(shè)備需求:Cisco 2501路由器兩臺.準備工作:確保路由器之間接口IP地址信息已經(jīng)設(shè)置好,能夠端到端的ping通.語法:1.啟用OSPF進程:Aiko(config)#router ospf process-id2.定義參與OSPF進程的接口和網(wǎng)絡(luò):Aiko(config-router)#network ip-address wildcard-mask area area-id解釋:OSPF進程ID可以使用1到6
53、5535中任何一個整數(shù),該ID只是本地的一個標識,即一個OSPF網(wǎng)絡(luò),每臺OSPF路由器的進程ID是否一樣,和OSPF網(wǎng)絡(luò)能否正常運行無關(guān).在定義OSPF路由器要宣告的區(qū)域的時候,反掩碼用來控制要宣告的范圍,0表示精確匹配,255表示任意匹配.OSPF網(wǎng)絡(luò)中骨干區(qū)域為區(qū)域0,因此必須要有區(qū)域0.配置實例一:-25-Written by Aiko feat. Asuqa Http:/路由器Asuqa配置如下:Asuqa#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Asuqa(confi
54、g)#router ospf 1Asuqa(config-router)#network area 0Asuqa(config-router)#network 55 area 0Asuqa(config-router)#endAsuqa#路由器Aiko配置如下:Aiko#configure terminalEnter configuration commands, one per line. End with CNTL/Z.Aiko(config)#router ospf 65535Aiko(config-router)#network area
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 英語主題閱讀-五年級英語
- 海外務(wù)工人員權(quán)益保護擔保合同模板
- 車間安全生產(chǎn)事故調(diào)查與處理合同
- 野餐食物承包方案
- 應(yīng)急廣播拆除方案
- 特殊機構(gòu)規(guī)劃方案模板
- 成都市長租公寓租賃合同書含租客入住前檢查
- 業(yè)務(wù)合作方案書
- 施工企業(yè)信貸支持方案
- 吳中數(shù)學面試題及答案
- 專利基礎(chǔ)知識教學課件
- 2025美國急性冠脈綜合征(ACS)患者管理指南解讀課件
- 水泥廠現(xiàn)場巡檢知識培訓
- 2015海灣消防JB-QB-GST200 火災(zāi)報警控制器(聯(lián)動型)安裝使用說明書
- 中國各省區(qū)地圖、基本資料
- 2025年上半年中國長江三峽集團限公司“脫貧家庭畢業(yè)生”招聘(173人)易考易錯模擬試題(共500題)試卷后附參考答案
- 學校物業(yè)管理的重點及難點分析
- 大腦病理解剖
- 關(guān)于辦公室安全的培訓
- 辦公用品價格清單
- 2025年高考物理復(fù)習之小題狂練600題(實驗題):測量電壓表或電流的內(nèi)阻(10題)
評論
0/150
提交評論