91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Cisco Packer Trace 之 VTP配置

發布時間:2020-07-29 01:42:02 來源:網絡 閱讀:766 作者:周銘康 欄目:網絡安全

VTP理解:

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

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

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

實驗環境如下:

Cisco Packer Trace 之 VTP配置

 

實現目的:

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

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

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

PC0: 192.168.2.2/24   網關:192.168.2.1

PC1: 192.168.3.2/24   網關:192.168.3.1

PC2: 192.168.2.3/24   網關:192.168.2.1

PC3: 192.168.3.3/24   網關:192.168.3.1

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

5、測試各個VLAN之間的數據是否互通。

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

1、在CoreSW核心三層交換機上配置VTP Server,并創建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 ,F0/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地址分別設置如下:(省略)

PC0: 192.168.2.2/24   網關:192.168.2.1

PC1: 192.168.3.2/24   網關:192.168.3.1

PC2: 192.168.2.3/24   網關:192.168.2.1

PC3: 192.168.3.3/24   網關:192.168.3.1

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

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之間的數據是否互通。

Cisco Packer Trace 之 VTP配置

 

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


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广宁县| 禹城市| 东乌珠穆沁旗| 彭水| 安义县| 肃宁县| 临桂县| 梨树县| 黎平县| 湘西| 中牟县| 保靖县| 拉萨市| 星座| 永年县| 永济市| 同江市| 乌审旗| 吉林省| 乳山市| 永嘉县| 玉环县| 含山县| 图片| 洛南县| 仲巴县| 阳原县| 库车县| 会理县| 同江市| 正宁县| 遂昌县| 紫金县| 万荣县| 桂东县| 石楼县| 内乡县| 定西市| 马公市| 辉南县| 建湖县|