資源描述:
《網(wǎng)絡設備調(diào)試員培訓》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在教育資源-天天文庫。
1、幾個常用命令ping本機測試地址第一節(jié)路由器基本配置練習一:同一交換機VLAN的建立與端口分配將交換機swith0的1-15個端口劃分到VLAN100中,16-24端口劃分到VLAN200中。PC0的IP:192.168.1.1PC1的IP:192.168.1.16配置好IP地址后,檢查聯(lián)通情況C:>ping192.168.1.16Switch>enable//進入特權(quán)模式Switch#configureterminal//全局配置模式Switch(config)#vlan100//創(chuàng)建VLAN100Switch(conf
2、ig-vlan)#nametest100//為VLAN起名Switch(config-vlan)#exit//返回上一級配置模式Switch(config)#vlan200Switch(config-vlan)#nametest200Switch(config-vlan)#exit對單個端口分配到某個VLANSwitch(config)#interfacefastethernet0/1也可以一次分配多個端口分配到某個VLANSwitch(config)#interfarangef0/1-15//交換機端口類型為Access類型
3、。Switch(config-if-range)#switchmodeaccessSwitch(config-if-range)#switchaccessvlan100Switch(config-if-range)#endSwitch#//將16-24端口分配到VLAN200中Switch#configtermSwitch(config)#interrangef0/16-24Switch(config-if-range)#switchmodeaccessSwitch(config-if-range)#switchaccessv
4、lan200Switch(config-if-range)#endSwitch#配置好VLAN后,檢查聯(lián)通情況C:>ping192.168.1.16練習二:跨交換機劃分VLAN把不同的交換機端口劃分成不同的VLAN。交換機swith0的1-15個端口劃分到VLAN100中,16-24端口劃分到VLAN200中。如下圖:兩個交換機,配置兩個Vlan技術(shù)細節(jié):跨兩個交換機進行配置Vlan10,兩個交換機相連端口要設置成Trunk類型,所有Vlan10中的數(shù)據(jù)都從Trunk端口從一臺交換機到達另外一臺交換機的同一Vlan中。配置過
5、程1、為各個PC配置IP地址和子網(wǎng)掩碼2、ping測試3、對switch1和switch2進行配置4、ping測試對交換機switch1進行配置Switch>enableSwitch#configureterminalSwitch(config)#vlan10Switch(config-vlan)#nametest10Switch(config-vlan)#exitSwitch(config)#vlan20Switch(config-vlan)#nametest20Switch(config-vlan)#exitSwitch(
6、config)#interfacerangefastethernet0/1-2Switch(config-if-range)#switchaccessvlan10Switch(config-if-range)#exitSwitch(config)#interfacefastethernet0/21Switch(config-if)#switchaccessvlan20Switch(config-if-range)#exitSwitch(config)#interfacefastethernet0/24//將交換機端口24設置成
7、trunk端口Switch(config-if)#switchportmodetrunkSwitch(config-if)#endSwitch#//顯示本交換機Vlan的配置情況Switch#showvlan//顯示vlan接口的分配情況Switch#showintf0/24switchport對交換機switch2進行配置Switch>enableSwitch#conftSwitch(config)#vlan10Switch(config-vlan)#nametest10Switch(config-vlan)#exitSwi
8、tch(config)#intef0/3Switch(config-if)#switchaccessvlan10Switch(config-if)#exitSwitch(config)#intef0/24Switch(config-if)#switchportmodetrun