Cisco Packe Tracer8.0.1에서 STP 기능을 구현하여 경로를 이중화합니다.

12241 단어 STPPacketTracerCisco
개시하다
STP 설정은 Switch의 이중화를 위해 조만간 실시될 예정이므로 제작시 복습
필자의 환경
・Packet Tracer 8.0.1 64bit
・Windows 10
네트워크 구성도
12b3376ed551f60eb153efd6892491db.png
개요
STP를 통해 경로를 선택합니다.
이번에는 STP 기능을 이해하기 위한 설치입니다.VLAN10の通信をSwitch1<=>Switch3<=>Switch2経由4VLAN20の通信をSwitch1<=>Switch2<=>Switch3経由 일부러 먼 길을 돌아라.


마지막으로 우리는 케이블이 고장났을 때 경로의 변화를 실제로 관찰했다.
IP 주소 관리 테이블
PC를 선택한 후 Desktop 태그에서 IP Configuration으로 마이그레이션
아래와 같이 네트워크 주소에 IP 주소와 서브넷 마스크를 설정합니다.
네트워크 장치
IP 주소
서브넷 마스크
PC1
192.168.10.1
255.255.255.0
PC2
192.168.20.1
255.255.255.0
PC3
192.168.10.2
255.255.255.0
PC3
192.168.20.2
255.255.255.0
STP 우선 순위
다음과 같은 우선권을 설정합니다.
VLAN10
VLAN20
Switch1
묵인
묵인
Switch2
4096
0
Switch3
0
4096
명령 목록
Switch1
#  グローバルコンフィグレーションモードに遷移

enable
configure terminal

#  VLANの作成
#  今回はVLAN10,20を使用

vlan 10
name VLAN10
exit
vlan 20
name VLAN20
exit

#  2つのvlanトラフィックを伝送するためトランクポートで設定
#  不要だが一応allowed vlanでvlan10,20のトラフィックがトランクポート上で流れるのを許可する。

interface range FastEthernet0/1-2
switchport mode trunk
switchport trunk allowed vlan 10,20
exit

#  PCが繋がっているインターフェイスをアクセスポートにする
#  インターフェイスに対応するVLANを設定、上記のネットワーク構成図を参考

interface FastEthernet0/23
switchport mode access
switchport access vlan 10
exit
interface FastEthernet0/24
switchport mode access
switchport access vlan 20
exit

#  VLANをスパニングツリーと対応付ける

spanning-tree vlan 10
spanning-tree vlan 20
Switch2
enable
configure terminal
vlan 10
name VLAN10
exit
vlan 20
name VLAN20
exit
interface range FastEthernet0/1-2
switchport mode trunk
switchport trunk allowed vlan 10,20
exit
interface FastEthernet0/24
switchport mode access
switchport access vlan 10
exit

#  VLANをスパニングツリーと対応付ける
#  プライオリティ値は上記STPプライオリティを参考

spanning-tree vlan 10 priority 4096
spanning-tree vlan 20 priority 0
Switch3
enable
configure terminal
vlan 10
name VLAN10
exit
vlan 20
name VLAN20
exit
interface range FastEthernet0/1-2
switchport mode trunk
switchport trunk allowed vlan 10,20
exit
interface FastEthernet0/24
switchport mode access
switchport access vlan 20
exit
spanning-tree vlan 10 priority 0
spanning-tree vlan 20 priority 4096
상태 확인
콘텐츠 확인
STP 정보
기본값, 루트 포트, 지정 포트, 비지정 포트가 올바르게 설정되어 있는지 확인합니다.
#show spanning-tree
Switch1

Switch2

Swith3

확인
이번에는 케이블 하나를 삭제하는 데 고장이 났다고 가정해 보자.

이때 VLAN 10에 대한 STP 정보를 확인하고 루트 포트의 변경 사항을 확인합니다.
swithc1

끝맺다
show 지령을 보는 방법을 잊어버려서 복습을 잘했어요.

좋은 웹페이지 즐겨찾기