版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、基本配置Routerenable /進(jìn)入特權(quán)執(zhí)行模式Router#configure terminal / 進(jìn)入全局配置模式Router(config)#hostname R1 /將路由器名稱配置為 R1R1(config)#no ip domain-lookup / 命令禁用 DNS 查找R1(config)#enable secret class / 配置執(zhí)行模式口令/R1(config)#line console 0R1(config-line)#password ciscoR1(config-line)#loginR1(config-line)#exitR1(config)#line
2、vty 0 4R1(config-line)#password ciscoR1(config-line)#loginR1(config-line)#exit/使用 IP 地址 192.168.1.1/24 配置 FastEthernet 0/0 接口R1(config)#interface fastethernet 0/0R1(config-if)#ip address 192.168.1.1 255.255.255.0R1(config-if)#no shutdown使用 IP 地址 192.168.2.1/24 配置 Serial0/0/0 接口將時(shí)鐘頻率設(shè)置為64000R1(config
3、-if)#interface serial 0/0/0R1(config-if)#ip address 192.168.2.1 255.255.255.0R1(config-if)#clock rate 64000R1(config-if)#no shutdown/路由配置要使用指定的下一跳地址配置靜態(tài)路由在R3路由器上,配置通往172.16.1.0網(wǎng)絡(luò)的靜態(tài)路由(使用R2的Serial 0/0/1接口作為下一跳地址 R3(config)#ip route 172.16.1.0 255.255.255.0 192.168.1.2/使用送出接口配置靜態(tài)路由在R3路由器上,配置通往172.16.2
4、.0網(wǎng)絡(luò)的靜態(tài)路由(使用R3路由器的Serial 0/0/0接口作為送出接口)R3(config)# ip route 172.16.2.0 255.255.255.0 Serial0/0/1在R2路由器上配置靜態(tài)路由。在R2路由器上,配置通往172.16.3.0網(wǎng)絡(luò)的靜態(tài)路由(使用R2路由器的Serial 0/0/0接口作為送出接口)R2(config)# ip route 172.16.3.0 255.255.255.0 Serial0/0/0為R1路由器配置默認(rèn)路由為R1配置默認(rèn)路由,使用R1的Serial 0/0/0接口作為下一跳接口。R1(config)#ip route 0.0.0
5、.0 0.0.0.0 172.16.2.2在R3路由器上配置總結(jié)靜態(tài)路由總結(jié)路由中將使用網(wǎng)絡(luò)172.16.0.0/22。R3(config)#ip route 172.16.0.0 255.255.252.0 192.168.1.2/刪除R3上的靜態(tài)路由。使用no形式的以下命令,將R3上當(dāng)前配置的兩條靜態(tài)路由刪除。R3(config)#no ip route 172.16.1.0 255.255.255.0 192.168.1.2R3(config)#no ip route 172.16.2.0 255.255.255.0 Serial0/0/0基本RIP配置/啟用動(dòng)態(tài)路由R1(config)
6、#router rip輸入有類網(wǎng)絡(luò)地址Rl(config-router)#network 192.168.1.0使用router rip和network命令在R2路由器上配置RIPR2(config)#router ripR2(config-router)#network 192.168.2.0R2(config-router)#network 192.168.3.0R2(config-router)#network 192.168.4.0R2(config-router)#end/可以使用passive-interface fastethernet 0/0命令禁止從該接口發(fā)送 RIPvl更新
7、。完成RIP配置后,返回特權(quán)執(zhí)行模式并將當(dāng)前配置保存到NVRAM中。Rl(config-router)#passive-interface fastethernet 0/0Rl(config-router)#end/如下所示在R2上配置RIP路由R2(config)#router ripR2(config-router)#network 172.30.0.0R2(config-router)#network 192.168.4.0R2(config-router)#passive-interface fastethernet 0/0R2(config-router)#end/將R2配置為向R1
8、發(fā)送默認(rèn)靜態(tài)路由信息R2(config)#router ripR2(config-router)#default-information originateR2(config-router)#基本O SPF配置在路由器R1上配置OSPFR1(config)#router ospf 1Rl(config-router)#/一旦您處于OSPF配置子模式后,請(qǐng)將LAN 172.16.1.16/28配置為包括在從R1發(fā)出的OSPF 更新中Rl(config-router)#network 172.16.1.16 0.0.0.15 area 0Rl(config-router)#/配置路由器,使其通告S
9、erial0/0/0接口所連接的網(wǎng)絡(luò)192.168.10.0/30Rl(config-router)# network 192.168.10.0 0.0.0.3 area 0Rl(config-router)#/在R3上使用router ospf和network命令配置OSPFR3(config)#router ospf 1R3(config-router)#network 172.16.1.32 0.0.0.7 area 0R3(config-router)#network 192.168.10.4 0.0.0.3 area 0R3(config-router)#使用環(huán)回地址來(lái)更改拓?fù)渲新酚?/p>
10、器的路由器IDR1(config)#interface loopback 0R1(config-if)#ip address 10.1.1.1 255.255.255.255R2(config)#interface loopback 0R2(config-if)#ip address 10.2.2.2 255.255.255.255R3(config)#interface loopback 0R3(config-if)#ip address 10.3.3.3 255.255.255.255/在路由器R1上使用router-id命令更改路由器ID某些IOS版本不支持router-id命令。如果無(wú)
11、法使用此命令R1(config)#router ospf 1Rl(config-router)#router-id 10.4.4.4在路由器R1和R2上使用bandwidth命令將串行接口的帶寬更改為實(shí)際帶寬64 kbpsR1(config)#interface serial0/0/0R1(config-if)#bandwidth 64R1(config-if)#interface serial0/0/1R1(config-if)#bandwidth 64/在路由器R3上使用ip ospf cost命令配置OSPF開銷R3(config)#interface serial0/0/0R3(con
12、fig-if)#ip ospf cost 1562R3(config-if)#interface serial0/0/1R3(config-if)#ip ospf cost 1562/在路由器R1上配置一個(gè)環(huán)回接口,以模擬通向ISP的鏈路R1(config)#interface loopback1R1(config-if)#ip address 172.30.1.1 255.255.255.252在路由器R1上配置一條靜態(tài)默認(rèn)路,使用已配置的用于模擬通向ISP的鏈路的環(huán)回地址作 為出口接口R1(config)#ip route 0.0.0.0 0.0.0.0 loopback1R1(confi
13、g)#/使用default-information originate命令將該靜態(tài)路由包括在從路由器R1發(fā)出的OSPF更新中R1(config)#router ospf 1R1(config-router)#default-information originateR1(config-router)#/使用OSPF優(yōu)先級(jí)確定DR和BDR使用ip ospf priority接口命令將路由器R1的OSPF優(yōu)先級(jí)更改為255R1(config)#interface fastEthernet0/0R1(config-if)#ip ospf priority 255R1(config-if)#end基本
14、VLAN配置啟用S2和S3上的用戶端口S2(config)#interface range fa0/6, fa0/11, fa0/18 S2(config-if-range)#switchport mode access S2(config-if-range)#no shutdown在交換機(jī)S1上創(chuàng)建VLAN S1(config)#vlan 10 Sl(config-vlan)#name faculty/staff Sl(config-vlan)#vlan 20 Sl(config-vlan)#name students Sl(config-vlan)#vlan 30 Sl(config-vl
15、an)#name guest Sl(config-vlan)#vlan 99 Sl(config-vlan)#name management Sl(config-vlan)#end Sl#在S2和S3上將交換機(jī)端口分配給VLAN S3(config)#interface range fa0/6-10 S3(config-if-range)#switchport access vlan 30 S3(config-if-range)#interface range fa0/11-17 S3(config-if-range)#switchport access vlan 10 S3(config-i
16、f-range)#interface range fa0/18-24S3(config-if-range)#switchport access vlan 20 S3(config-if-range)#end/分配管理VLAN在接口配置模式下,使用ip address命令為交換機(jī)分配管理IP地址。Sl(config)#interface vlan 99Sl(config-if)#ip address 172.17.99.11 255.255.255.0Sl(config-if)#no shutdownS2(config)#interface vlan 99S2(config-if)#ip add
17、ress 172.17.99.12 255.255.255.0S2(config-if)#no shutdownS3(config)#interface vlan 99S3(config-if)#ip address 172.17.99.13 255.255.255.0S3(config-if)#no shutdown/為所有交換機(jī)上的中繼端口配置中繼和本征VLAN Sl(config)#interface range fa0/1-5 Sl(config-if-range)#switchport mode trunk Sl(config-if-range)#switchport trunk n
18、ative vlan 99 Sl(config-if-range)#no shutdown Sl(config-if-range)#endS2(config)# interface range fa0/1-5S2(config-if-range)#switchport mode trunk S2(config-if-range)#switchport trunk native vlan 99S2(config-if-range)#no shutdown S2(config-if-range)#endS3(config)# interface range fa0/1-5S3(config-if-
19、range)#switchport mode trunk S3(config-if-range)#switchport trunk native vlan 99 S3(config-if-range)#no shutdown S3(config-if-range)#end基本7七?配置重新啟用S2和S3上的用戶端口 S2(config)#interface fa0/6 S2(config-if)#switchport mode access S2(config-if)#no shutdownS2(config-if)#interface fa0/11 S2(config-if)#switchp
20、ort mode access S2(config-if)#no shutdownS2(config-if)#interface fa0/18 S2(config-if)#switchport mode access S2(config-if)#no shutdownS3(config)#interface fa0/6 S3(config-if)#switchport mode access S3(config-if)#no shutdownS3(config-if)#interface fa0/11 S3(config-if)#switchport mode access S3(config
21、-if)#no shutdownS3(config-if)#interface fa0/18 S3(config-if)#switchport mode access S3(config-if)#no shutdown/根據(jù)以下原則配置交換機(jī)S1、S2和S3并保存配置: 按照拓?fù)渌九渲媒粨Q機(jī)主機(jī)名。禁用DNS查找。將執(zhí)行模式口令配置為class o為控制臺(tái)連接配置口令ciscOo為vty連接配置口令ciscOoSwitch(config)#hostname S1S1(config)#enable secret class S1(config)#no ip domain-lookup S1(c
22、onfig)#line console 0Sl(config-line)#password cisco Sl(config-line)#loginSl(config-line)#line vty 0 15Sl(config-line)#password ciscoSl(config-line)#loginSl(config-line)#end在所有三臺(tái)交換機(jī)上配置工作模式、域名和VTP 口令S1(config)#vtp mode serverDevice mode already VTP SERVER.S1(config)#vtp domain Lab4Changing VTP domain
23、name from NULL to Lab4S1(config)#vtp password ciscoSetting device VLAN database password to ciscoS1(config)#endS2(config)#vtp mode clientSetting device to VTP CLIENT modeS2(config)#vtp domain Lab4Changing VTP domain name from NULL to Lab4S2(config)#vtp password ciscoSetting device VLAN database pass
24、word to ciscoS2(config)#endS3(config)#vtp mode transparentSetting device to VTP TRANSPARENT mode.S3(config)#vtp domain Lab4Changing VTP domain name from NULL to Lab4S3(config)#vtp password ciscoSetting device VLAN database password to cisco S3(config)#end/為所有三臺(tái)交換機(jī)上的中繼端口配置中繼和本征VLANS1(config)#interfac
25、e range fa0/1-5S1(config-if-range)#switchport mode trunkS1(config-if-range)#switchport trunk native vlan 99S1(config-if-range)#no shutdownS1(config-if-range)#endS2(config)# interface range fa0/1-5S2(config-if-range)#switchport mode trunkS2(config-if-range)#switchport trunk native vlan 99S2(config-if
26、-range)#no shutdownS2(config-if-range)#endS3(config)# interface range fa0/1-5S3(config-if-range)#switchport mode trunkS3(config-if-range)#switchport trunk native vlan 99S3(config-if-range)#no shutdownS3(config-if-range)#end/在VTP服務(wù)器上配置VLAN本實(shí)驗(yàn)還需要四個(gè)VLAN:VLAN 99 (management)VLAN 10 (faculty/staff)VLAN 2
27、0 (students)VLAN 30 (guest)在VTP服務(wù)器上配置這些VLANoS1(config)#vlanSl(configvlan)#Sl(configvlan)#S1(config)#vlanSl(configvlan)#Sl(configvlan)#S1(config)#vlanSl(configvlan)#Sl(configvlan)#Sl(config)#vlanSl(configvlan)#Sl(configvlan)#99name managementexit10name faculty/staffexit20name studentsexit30name guest
28、exit /在所有三臺(tái)交換機(jī)上配置管理接口地址Sl(config)#interface vlan 99Sl(configif)# ip address 172.17.99.11 255.255.255.0Sl(configif)# no shutdown/將交換機(jī)端口分配給VLANS3(config)#interface range fa0/6-10switchport access vlan 30 interface range fa0/11-17 switchport access vlan 10 interface range fa0/18-24 switchport access vl
29、an 20 endS3(configifrange)#S3(configifrange)#S3(configifrange)#S3(configifrange)#S3(configifrange)#S3(configifrange)#基本生成樹協(xié)議/以接入模式重新啟用S1和S2上的用戶端口Sl(config)#interface fa0/3Sl(configif)# switchport mode accessSl(configif)# no shutdownS2(config)#interface range fa0/6, fa0/11, fa0/18S2(configifrange)# s
30、witchport mode accessS2(configifrange)# no shutdown在S1、S2和S3上啟用中繼端口Sl(configifrange)# interface range fa0/1, fa0/2Sl(configifrange)# switchport mode trunkSl(configifrange)# no shutdownS2(config-if-range)#interface range fa0/1, fa0/2 S2(config-if-range)#switchport mode trunk S2(config-if-range)#no shutdown S3(config-if-range)#interface range fa0/1, fa0/2 S3(config-if-range)#switchport mode trunk S3(config-if-range)#no shutdown 配置生成樹 S1#show spanning-tree 基本間
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年違約借款合同違約責(zé)任追究辦法3篇
- 2025年度個(gè)人房屋買賣價(jià)格調(diào)整及支付合同4篇
- 2025年度企業(yè)應(yīng)收賬款債權(quán)轉(zhuǎn)讓與風(fēng)險(xiǎn)控制協(xié)議書3篇
- 2025年度房地產(chǎn)樣板間設(shè)計(jì)與施工合同范本4篇
- 2025年度電子商務(wù)個(gè)人勞務(wù)派遣合作協(xié)議書4篇
- 工廠租地合同(2篇)
- 二零二五年度民政局離婚協(xié)議書模板法律咨詢附加服務(wù)合同4篇
- 2025年度銷售顧問(wèn)市場(chǎng)調(diào)研聘用合同2篇
- 2024西部縣域經(jīng)濟(jì)百?gòu)?qiáng)研究
- STEM教育實(shí)踐講解模板
- 培訓(xùn)機(jī)構(gòu)年終會(huì)議
- 2025河南滎陽(yáng)市招聘第二批政務(wù)輔助人員211人高頻重點(diǎn)提升(共500題)附帶答案詳解
- 2025年山東浪潮集團(tuán)限公司招聘25人高頻重點(diǎn)提升(共500題)附帶答案詳解
- JJF 2180-2024嬰兒輻射保暖臺(tái)校準(zhǔn)規(guī)范
- 中建X局設(shè)計(jì)參數(shù)指標(biāo)庫(kù)
- 2025年八省聯(lián)考新高考語(yǔ)文試題解讀及備考啟示
- 2025年江西省港口集團(tuán)招聘筆試參考題庫(kù)含答案解析
- 和達(dá)投資集團(tuán)(杭州)有限公司招聘筆試沖刺題2025
- 網(wǎng)絡(luò)安全事件關(guān)聯(lián)分析-洞察分析
- 羊肉購(gòu)銷合同書樣本
- (2024年)中國(guó)傳統(tǒng)文化介紹課件
評(píng)論
0/150
提交評(píng)論