Switch (Powerconnect 5324) – VLAN & Trunk

Loading

要設定 Dell 1G Switch (型號 Powerconnect 5324) VLAN ,並透過 Trunk Port 與其他既存的 Switch 相連線.

  • VLAN
    透過 VLan 的功能能將一個實體的 switch 將他切割成多個 logical broadcast domain (所有的廣播封包 broadcast package 只會在此 doamin 中傳送).
  • Trunk
    如果要讓不同交換機上的 VLAN 相通,必須要設定一個網路埠為 trunk (讓 Switch 與 Switch 之間讓彼此的 Vlan 相互溝通用的),但如果是不同 VLAN 的主機之間要互通,這須要透過路由 Routing 的功能.

不過拿到的這一台 Dell Switch (型號 Powerconnect 5324) ,完全不清楚之前的設定.只能先從 console 連線看一下狀態.

  • Baud : 9600
  • Data bits : 8
  • Parity : None
  • Stop bits : 1
  • Flow control : XON/XOFF

透過 Console 可以連線後,設定上還是很不方便,最快的方式就是透過 Web 的方式來設定,這需要得知 switch 的 IP , User Name , Password

  • Show IP
    console> enable
    console# show ip interface
    
      Gateway IP Address      Type        Activity status
    --------------------- ---------- -------------------------
       192.168.1.1          static          Active
    
        IP ddress                I/F               Type
    --------------------- ----------------- ------------------
      192.168.0.101/24       VLAN 1              Static
    
  • Setup IP (Default Gateway)
    其中的 111111 為密碼.

    console> enable
    console# configure
    console (config) # username admin password 111111 level 15
    console (config) # interface VLAN 1
    console (config-if) # ip address 192.168.3.1 /24
    console (config-if) # exit
    console (config) # ip default-gateway 192.168.1.1
    console (config) # exit
    console# show IP interface
    
    
      Gateway IP Address      Type        Activity status
    --------------------- ---------- -------------------------
       192.168.1.1          static          Active
    
        IP ddress                I/F               Type
    --------------------- ----------------- ------------------
      192.168.0.101/24       VLAN 1              Static
       192.168.3.1/24        VLAN 1              Static
    
  • Create new Vlan ID
    第一步就是建立一組新的 Vlan ID (100)

    console> enable
    console# configure
    console (config) # vlan database
    console (config-vlan)# vlan 100
    console (config-vlan)# exit
    console (config) # interface vlan 100
    console (config-if)# name 172.16.2.x
    console (config-if)# end
    console# show vlan
    Vlan         Name          Ports               Type         Authorization
    ------ --------------- --------------------- ------------ --------------------
    1             1           g(1-24),ch(1-8)      other       Required
    100      172.16.2.x                           permanent    Required
    

    如果要移除新建好的 Vlan.

    console (config) # vlan database
    console (config-vlan) # no vlan 100
    

    或是透過 Web 瀏覽器可以在 Switch / VLAN / VLAN membership / Add 來做新增.

  • Add Ports to Vlan
    要把 Port 指定 Vlan ,可以透過 web 瀏覽器 Switch / VLAN / VLAN membership 設定,狀態有三種,選擇 T 就是 Trunk , U 就是指定 Vlan.

    • T – The interface is a member of a VLAN. All packets forwarded by the interface are tagged. The packets contain VLAN information.
    • U – The interface is a VLAN member. Packets forwarded by the interface are untagged.
    • F – The interface is denied membership to a VLAN.

    另外一種方式是在 Switch / VLAN / Port Setting 來設定,狀態有三種.要把 Port 指定一個 Vlan (PVID) 需設定成為 Access 模式,Port 要設定成為 Trunk 就是選擇 Trunk 模式.

    • Access – One VLAN
    • Trunk – All VLANs that exist in the system
    • General – As many as desired (tagged or Untagged)

    透過指令一樣可以指定埠 port 到相對應 vlan ,下面將 port g8 設定為 VLAN 100 .

    console> enable
    console# configure
    Console (config)# interface ethernet g8
    Console (config-if)# switchport access vlan 100
    console (config-if)# end
    console# show vlan
    Vlan         Name          Ports               Type         Authorization
    ------ --------------- --------------------- ------------ --------------------
    1             1         g(1-7,9-24),ch(1-8)    other        Required
    100      172.16.2.x          g8                permanent    Required
    

測試後沒問題可以把新的設定儲存起來.

console> enable
console# copy running-config startup-config

或是透過 web 瀏覽器 System / File Management / Copy Files .

沒有解決問題,試試搜尋本站其他內容

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料