




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、不同vlan間的通信簡單配置1單臂路由(圖)環(huán)境:一臺路由器,一臺二層交換機,兩臺pc機二層交換機的配置一般模式:Switch輸入enable進(jìn)入特權(quán)模式:Switchenable輸入configure terminal進(jìn)入全局配置模式:Switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z.創(chuàng)建vlan 10 和 vlan 20:Switch(config)#vlan 10Switch(config-vlan)#vlan 20Switch(config-vlan)# exit進(jìn)
2、入接口配置模式:Switch(config)#interface fastEthernet 0/1把0/1變成trunk口(默認(rèn)是access口)Switch(config-if)#switchport mode trunk%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to upSwitch(config-if)#
3、exit進(jìn)入接口配置模式分別把對應(yīng)的接口,加入對應(yīng)的vlan:Switch(config)#interface fastEthernet 1/1Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 10Switch(config-if)#interface fastEthernet 2/1Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 20到此二層交換機配置完畢!路由器的
4、配置:RouterRouterenableRouter#configure terminal Enter configuration commands, one per line. End with CNTL/Z.Router(config)#inter fas 0/0Router(config-if)#no ip address Router(config-if)#no shutdown 注意:單臂路由的配置父接口一定要no shutdown%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up%LINEPROTO-5-
5、UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to upRouter(config-if)#exitRouter(config)#int fas 0/0.10%LINK-5-CHANGED: Interface FastEthernet0/0.10, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to upRouter(config-subif)#enca
6、psulation dot1Q 10注意:在配置ip時一定要先封裝802.1q協(xié)議Router(config-subif)#ip address 192.168.10.1 255.255.255.0Router(config-subif)#no shutdown Router(config-subif)#int fas 0/0.20%LINK-5-CHANGED: Interface FastEthernet0/0.20, changed state to up%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.20,
7、 changed state to upRouter(config-subif)#ip address 192.168.20.1 255.255.255.0% Configuring IP routing on a LAN subinterface is only allowed if thatsubinterface is already configured as part of an IEEE 802.10, IEEE 802.1Q,or ISL vLAN.Router(config-subif)#encapsulation dot1Q 20Router(config-subif)#ip
8、 address 192.168.20.1 255.255.255.0Router(config-subif)#no shutdown Router(config-subif)#查看路由表:Router#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA e
9、xternal type 2 E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static routeGateway of last resort is not setC 192.168.10.0/24 is di
10、rectly connected, FastEthernet0/0.10C 192.168.20.0/24 is directly connected, FastEthernet0/0.20Router#PC0的配置:ip 192.168.10.10netmask 255.255.255.0gateway 192.168.10.1PC1的配置:ip 192.168.20.20netmask 255.255.255.0gateway 192.168.20.12.使用SVI實現(xiàn)VLAN間的通信(圖)環(huán)境:一臺三層交換機,兩臺pc機三層交換機的配置:Switchenable Switch#confi
11、gure terminal Enter configuration commands, one per line. End with CNTL/Z.創(chuàng)建vlan 10 20Switch(config)#vlan 10Switch(config-vlan)#vlan 20Switch(config-vlan)#exit配置SVI接口ipSwitch(config)#interface vlan 10%LINK-5-CHANGED: Interface Vlan10, changed state to upSwitch(config-if)#ip address 192.168.10.1 255.
12、255.255.0Switch(config-if)#no shutdown Switch(config-if)#interface vlan 20%LINK-5-CHANGED: Interface Vlan20, changed state to upSwitch(config-if)#ip address 192.168.20.1 255.255.255.0Switch(config-if)#no shutdown Switch(config-if)#exit改變接口模式并加入vlanSwitch(config)#interface fastEthernet 0/1Switch(conf
13、ig-if)#switchport mode access Switch(config-if)#switchport access vlan 10%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan10, changed state to upSwitch(config-if)#interface fastEthernet 0/2Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 20%LINEPROTO-5-UPDOWN: Lin
14、e protocol on Interface Vlan20, changed state to upSwitch(config-if)#看三層交換機的路由表:Switch#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
15、E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area * - candidate default, U - per-user static route, o - ODR P - periodic downloaded static routeGateway of last resort is not setC 192.168.10.0/24 is directly connecte
16、d, Vlan10C 192.168.20.0/24 is directly connected, Vlan20Switch#兩主機的配置與單臂路由中兩主機的配置一樣3.跨交換機實現(xiàn)VLAN間的通信(圖)環(huán)境:一臺三層交換機,兩臺二層交換機,兩臺pc機三層交換機的配置(SW3)SwitchenableSwitch#configure terminal Enter configuration commands, one per line. End with CNTL/Z.創(chuàng)建vlan 10 、20 并設(shè)置ipSwitch(config)#vlan 10Switch(config-vlan)#vl
17、an 20Switch(config-vlan)#exitSwitch(config)#interface vlan 10%LINK-5-CHANGED: Interface Vlan10, changed state to upSwitch(config-if)#ip address 192.168.10.1 255.255.255.0Switch(config-if)#no shutdown Switch(config-if)#interface vlan 20%LINK-5-CHANGED: Interface Vlan20, changed state to upSwitch(conf
18、ig-if)#ip address 192.168.20.1 255.255.255.0Switch(config-if)#no shutdown Switch(config-if)#exit設(shè)置接口模式并加入相應(yīng)的vlan(注意trunk口的設(shè)置)Switch(config)#interface fastEthernet 0/1Switch(config-if)#switchport mode trunkSwitch(config-if)#interface fastEthernet 0/1Switch(config-if)#switchport access vlan 10%LINEPRO
19、TO-5-UPDOWN: Line protocol on Interface Vlan10, changed state to upSwitch(config)#interface fastEthernet 0/2Switch(config-if)#switchport mode trunk Switch(config-if)#interface fastEthernet 0/2Switch(config-if)#switchport access vlan 20%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan20, changed s
20、tate to upSwitch#SW21的配置SwitchenableSwitch#configure terminal Enter configuration commands, one per line. End with CNTL/Z.Switch(config)#vlan 10Switch(config-vlan)#exitSwitch(config)#interface fastEthernet 0/1Switch(config-if)#switchport mode trunk%LINEPROTO-5-UPDOWN: Line protocol on Interface Fast
21、Ethernet0/1, changed state to down%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to upSwitch(config-if)#interface fastEthernet 1/1Switch(config-if)#switchport mode access Switch(config-if)#switchport access vlan 10Switch(config-if)#exitSwitch(config)#SW22的配置SwitchSwit
22、chenSwitch#Switch#configure terEnter configuration commands, one per line. End with CNTL/Z.Switch(config-if)#inter fas 2/1Switch(config-if)#switchport mode trunk%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet2/1, changed state to down%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet2/1
溫馨提示
- 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)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 華圖教師面試說課課件
- 貴港高考數(shù)學(xué)試卷
- 槐蔭區(qū)教師小學(xué)數(shù)學(xué)試卷
- 杭州文暉中學(xué)數(shù)學(xué)試卷
- 2025年廣東省深圳建文外國語學(xué)校物理高一第二學(xué)期期末考試模擬試題含解析
- 2025年地板行業(yè)市場專項調(diào)研及投資前景可行性預(yù)測報告
- 2025年中國海參養(yǎng)殖行業(yè)市場調(diào)研分析及投資戰(zhàn)略咨詢報告
- 中國激光振鏡控制系統(tǒng)行業(yè)市場發(fā)展監(jiān)測及投資潛力預(yù)測報告
- 健康研究視頻課件下載網(wǎng)
- 水利審計報告
- 提高情商的培訓(xùn)課件
- JJG 597-2025交流電能表檢定裝置檢定規(guī)程
- 2025年廣州市中考物理試題(含答案)
- 2024年漳州市常山開發(fā)區(qū)招聘筆試真題
- 2024年09月年中國農(nóng)業(yè)發(fā)展銀行江蘇省分行秋季校園招聘(86人)筆試歷年參考題庫附帶答案詳解
- 2025年江蘇省揚州市中考作文4篇范文:“尊重”“誠實”“創(chuàng)造性”“美好生活”
- 2025年輔警招聘考試試題庫含完整答案
- 2025年吉林省中考語文試卷及答案
- 2024-2025學(xué)年度天津鐵道職業(yè)技術(shù)學(xué)院單招《語文》真題附答案詳解(突破訓(xùn)練)
- 快遞行業(yè)市場發(fā)展分析及投資前景研究報告2025-2028版
- 禮儀培訓(xùn)ptt課件
評論
0/150
提交評論