溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Cisco Packer Trace 之 VTP配置

發(fā)布時間:2020-07-29 01:42:02 來源:網(wǎng)絡(luò) 閱讀:765 作者:周銘康 欄目:網(wǎng)絡(luò)安全

VTP理解:

在一個擁有多臺交換機的交換網(wǎng)絡(luò)中,通常會在多臺交換機上配置相同的VLAN,并且也會對多個接口做相同的配置。 對于需要對多個接口做相同的配置,通過快速接口配置,能夠輕松實現(xiàn),提高工作效率。而對于在多臺交換機上做相同的VLAN配置,則通過VTP來實現(xiàn)。

VTP為了在多臺交換機上配置相同的VLAN,通過將一臺交換機的VLAN向其它交換機傳播的方法來完成,其它交換機在接收到VLAN信息后,然后更新自己的VLAN數(shù)據(jù)庫,以達到同步。

要將自己的VLAN信息發(fā)送到網(wǎng)絡(luò)中,交換機上必須配置Trunk,IEEE 802.1Q和ISL都支持,通過Trunk相連的交換機便能收到對方發(fā)來的VLAN信息。 VTP通過域來管理網(wǎng)絡(luò)中的交換機,任何交換機發(fā)出的VLAN信息只能在一個域內(nèi)傳播,只有相同域的交換機才能接收此VLAN信息,并且根據(jù)接收到的VLAN信息更新自己的VLAN數(shù)據(jù)庫。交換機是否在同一個域,是通過域名來分辨的,比如域名ccie與域名ccie屬于同一個域,而域名ccie與域名cisco就屬于不同的域。默認交換機的域名為空,但是最重點的,需要大家牢記的是,如果自己的域名為空,則表示與任何非空域名相同,也就是說如果對方有域名,而自己卻沒有域名,則自己和對方屬于相同的域。

實驗環(huán)境如下:

Cisco Packer Trace 之 VTP配置

 

實現(xiàn)目的:

1、在CoreSW核心三層交換機上配置VTP Server,并創(chuàng)建VLAN2 \ VLAN3,并各分配IP段:192.168.2.0 \ 192.168.3.0。

2、在SW1 和 SW2 交換機上配置為VTP CLIENT,并把各交換機的端口F0/3劃分到VLAN2 ,F(xiàn)0/4劃分到VLAN3。

3、把各PC的IP地址分別設(shè)置如下:

PC0: 192.168.2.2/24   網(wǎng)關(guān):192.168.2.1

PC1: 192.168.3.2/24   網(wǎng)關(guān):192.168.3.1

PC2: 192.168.2.3/24   網(wǎng)關(guān):192.168.2.1

PC3: 192.168.3.3/24   網(wǎng)關(guān):192.168.3.1

4、在CoreSW交換機上啟用路由功能,并配置路由交換協(xié)議,讓各VLAN的數(shù)據(jù)互通。

5、測試各個VLAN之間的數(shù)據(jù)是否互通。

實驗步驟:(按實現(xiàn)目的步驟操作)

1、在CoreSW核心三層交換機上配置VTP Server,并創(chuàng)建VLAN2 \ VLAN3,并各分配IP段:192.168.2.0 \ 192.168.3.0。

Switch>

Switch>enable

Switch#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

Switch(config)#hostname CoreSW

CoreSW(config)#exit

CoreSW#

%SYS-5-CONFIG_I: Configured from console by console

CoreSW#vlan database

% Warning: It is recommended to configure VLAN from config mode,

  as VLAN database mode is being deprecated. Please consult user

  documentation for configuring VTP/VLAN in config mode.

CoreSW(vlan)#vtp domain senya

Domain name already set to senya.

CoreSW(vlan)#vtp server

Device mode already VTP SERVER.

CoreSW(vlan)#exit

APPLY completed.

Exiting....

CoreSW#

CoreSW#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

CoreSW(config)#int fa0/1

CoreSW(config-if)#switchport trunk encapsulation dot1q 

CoreSW(config-if)#switchport mode trunk

CoreSW(config-if)#

%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 up

 CoreSW(config-if)#exit

CoreSW(config)#int fa0/2

 CoreSW(config-if)#switchport trunk encapsulation dot1q 

CoreSW(config-if)#switchport mode trunk

CoreSW(config-if)#

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up

CoreSW(config)#int vlan 2

CoreSW(config-if)#ip add 192.168.2.1 255.255.255.0

CoreSW(config-if)#no shutdown

CoreSW(config-if)#exit

CoreSW(config)#int vlan 3

CoreSW(config-if)#ip add 192.168.3.1 255.255.255.0

CoreSW(config-if)#no shutdown

2、在SW1 和 SW2 交換機上配置為VTP CLIENT,并把各交換機的端口F0/3劃分到VLAN2 ,F(xiàn)0/4劃分到VLAN3。

SW1:

Switch>enable

Switch#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

Switch(config)#hostname SW1

SW1(config)#exit

SW1#

%SYS-5-CONFIG_I: Configured from console by console

SW1#

SW1#vlan database

% Warning: It is recommended to configure VLAN from config mode,

  as VLAN database mode is being deprecated. Please consult user

  documentation for configuring VTP/VLAN in config mode.

SW1(vlan)#vtp domain senya

Domain name already set to senya.

SW1(vlan)#vtp client

Device mode already VTP CLIENT.

SW1(vlan)#exit

APPLY completed.

Exiting....

SW1#show vlan

VLAN Name                             Status    Ports

---- -------------------------------- --------- -------------------------------

1    default                          active    Fa0/2, Fa0/3, Fa0/4, Fa0/5

                                                Fa0/6, Fa0/7, Fa0/8, Fa0/9

                                                Fa0/10, Fa0/11, Fa0/12, Fa0/13

                                                Fa0/14, Fa0/15, Fa0/16, Fa0/17

                                                Fa0/18, Fa0/19, Fa0/20, Fa0/21

                                                Fa0/22, Fa0/23, Fa0/24, Gig1/1

                                                Gig1/2

2    VLAN0002                         active    

3    VLAN0003                         active    

4    VLAN0004                         active    

SW1(config)#int fa0/3

SW1(config-if)#switchport mode access

SW1(config-if)#switchport access vlan 2

SW1(config-if)#exit

SW1(config)#int fa0/4

SW1(config-if)#switchport mode access

SW1(config-if)#switchport access vlan 3

SW2:(跟SW1同樣的操作步驟省略)

3、把各PC的IP地址分別設(shè)置如下:(省略)

PC0: 192.168.2.2/24   網(wǎng)關(guān):192.168.2.1

PC1: 192.168.3.2/24   網(wǎng)關(guān):192.168.3.1

PC2: 192.168.2.3/24   網(wǎng)關(guān):192.168.2.1

PC3: 192.168.3.3/24   網(wǎng)關(guān):192.168.3.1

4、在CoreSW交換機上啟用路由功能,并配置路由交換協(xié)議,讓各VLAN的數(shù)據(jù)互通。

CoreSW#conf t

Enter configuration commands, one per line.  End with CNTL/Z.

CoreSW(config)#ip routing

CoreSW(config)#router rip

CoreSW(config-router)#ver 2

CoreSW(config-router)#no au

CoreSW(config-router)#no auto-summary 

CoreSW(config-router)#net 192.168.2.0

CoreSW(config-router)#net 192.168.3.0

CoreSW(config-router)#exit

5、測試各個VLAN之間的數(shù)據(jù)是否互通。

Cisco Packer Trace 之 VTP配置

 

疑問:如果我在SW1或SW2里增加一臺主機,設(shè)置IP地址為192.168.2.5,請問這個主機會PING通VLAN3的主機嗎,結(jié)果是不行的,并且在同一個交換機上的VLAN2主機192.168.2.2也是PING不通的。


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI