Dec 4, 2016

エクストリーム・ネットワークス: ポートVLAN

ポートVLAN


ポートVLANを使ってSwitchにつながるパソコン同士をVlan100に所属する
SwitchのポートにVLAN10が設定されていることを確認する


ネットワーク構成


(192.168.100.1)PC ------ [Port25] Switch [Port26] ------ PC(192.168.100.2) 


Switchのコンフィグ


configure vlan default delete ports 25-26
create vlan "portvlan"
configure vlan portvlan description "Port vlan config" 
configure vlan portvlan tag 100
configure ports 25 description-string "Connect to PC1"
configure ports 26 description-string "Connect to PC2"
configure vlan Default add ports 1-24 untagged  
configure vlan portvlan add ports 25-26 untagged 

enable ports 25-26


Show commandsで確認する


* X480-24x.43 # show vlan description 
-------------------------------------------------------------------------------
Name            VID  Description                                                
-------------------------------------------------------------------------------
Default         1                                                              
Mgmt            4095 Management VLAN                                           
portvlan        100  Port vlan config                                          
-------------------------------------------------------------------------------


* X480-24x.44 # show vlan "portvlan" 
VLAN Interface with name portvlan created by user
    Admin State: Enabled     Tagging: 802.1Q Tag 100 
    Description: Port vlan config 
    Virtual router: VR-Default
    IPv4 Forwarding: Disabled
    IPv4 MC Forwarding:  Disabled
    IPv6 Forwarding: Disabled
    IPv6 MC Forwarding:  Disabled
    IPv6:                None
    STPD:       None
    Protocol:            Match all unfiltered protocols
    Loopback:            Disabled
    NetLogin:            Disabled
    OpenFlow:            Disabled
    TRILL:               Disabled
    QosProfile:      None configured
    Egress Rate Limit Designated Port: None configured
    Flood Rate Limit QosProfile:       None configured
    Ports:   2.   (Number of active ports=0)
       Untag:      25,     26


ポートVLANは、LANスイッチのポートにVLAN番号を設定する方法です。
エクストリームスイッチは、すべてのポイントポイントがVlan 1に所属しています。上記の設定では、スイッチのPort25とPort26をVlan100に所属させて、Port25とPort26につながっているマシン同士しか通信できないようにします。


参考
1.
https://gtacknowledge.extremenetworks.com/articles/How_To/Understanding-EXOS-VLANS-and-tagged-and-untagged-ports/?q=assign+untagg+vlan&l=en_US&fs=Search&pn=1

2.
https://gtacknowledge.extremenetworks.com/articles/Q_A/What-are-tagged-and-untagged-ports

No comments:

Post a Comment