シミュレーション
セメント製造会社の本社は、接続するためにIDFに一時的なCatalyst 3550を設置しています
24人の追加ユーザー。
ネットワークの破損を防ぐには、実稼働ネットワークに接続する前に正しい構成にすることが重要です。
スイッチがVTPに参加せず、トランクポートで受信したVTPアドバタイズメントを転送することを確認する必要があります。
オフィスコンピューターで発生したエラーのため、すべての非トランキングインターフェイスは、スパニングツリーの転送状態にすぐに移行する必要があります。また、ポートが永続的に非トランキングになるように、ユーザーポート(すべてのFastEthernetポート)を構成します。

要件:
VLAN 20に属するユーザーに対してFastEthernetポート0/12から0/24を構成します。また、VLANデータベースモードはシスコによって廃止されているため、すべてのVLANおよびVTP設定はグローバルコンフィギュレーションモードで完了します。次のタスクを実行する必要があります。
1.スイッチがVTPに参加しないが、トランクポートで受信したVTPアドバタイズメントを転送することを確認します。
2.すべての非トランキングインターフェイス(Fa0 / 1〜Fa0 / 24)がスパニングツリーのフォワーディングステートにすぐに移行するようにします。
3.すべてのFastEthernetインターフェイスが永続的な非トランキングモードになっていることを確認します。
4. FastEthernetインターフェイス0/12〜0/24をVLAN 20に配置します。
正解:
Please Refer to Explanation below for details:
Explanation/Reference:
Console into the Switch
Switch>enable
Switch#configure terminal
Switch(config)#interface range fa0/1 - 24
Switch(config-if-range)#switchport mode access <<Make all FastEthernet interfaces into access mode.
Switch(config-if-range)#spanning-tree portfast <<Enables the PortFast on interface.
Next, we need to assign FastEthernet ports 0/12 through 0/24 to VLAN 20. By default, all ports on the switch are in VLAN 1. To change the VLAN associated with a port, you need to go to each interface (or a range of interfaces) and tell it which VLAN to be a part of.
Switch(config-if-range)#interface range fa0/12 - 24
Switch(config-if-range)#switchport access vlan 20 <<Make these ports members of vlan 20 Switch(config-if-range)#exit Next we need to make this switch in transparent mode. In this mode, switch doesn't participate in the VTP domain, but it still forwards VTP advertisements through any configured trunk links.
Switch(config)#vtp mode transparent
Switch(config)#exit
Switch#copy running-config startup-config