目次

Top#スイッチに戻る

スイッチポートとルーテッドポートの違い



スイッチポートとは

interface GigabitEthernet1/0/1
  description To_XXXXX
  switchport access vlan 11
  switchport mode access

interface GigabitEthernet1/0/2
  description To_XXXXX
  switchport trunk encapsulation dot1q
  switchport trunk allowed vlan 10,11,12
  switchport mode trunk

interface Vlan10
  ip address 192.168.10.10


ルーテッドポートとは

interface GigabitEthernet1/0/5
 description To_XXXXX
  no switchport
  ip address xx.xx.xx.xx 255.255.255.0


スイッチポートとルーテッドポートの使い分け

ネットワークセグメントで接続したいのが1台なら、ルーテッドポートを使い。
同じネットワークセグメントで複数台接続したいなら、スイッチポートを使いましょう。


スイッチポートとルーテッドポートの見分け方

Ciscoの場合

Switch#show interfaces status

Vlanが、routedと表示されます。

実行例
SW1# show interfaces status
! Only ports related to the example are shown; the command lists physical only
Port      Name               Status       Vlan       Duplex  Speed Type
Fa0/1                        connected    10         a-full  a-100 10/100BaseTX
Fa0/2                        notconnect   10           auto   auto 10/100BaseTX
Fa0/3                        connected    20         a-full  a-100 10/100BaseTX
Fa0/4                        connected    20         a-full  a-100 10/100BaseTX
Gi0/1                        connected    routed     a-full a-1000 10/100/1000BaseTX

SW1#








Top#スイッチに戻る