//興趣記錄一下~希望退休以後可以回味,各位別嫌棄,感謝各位!!
////
//VLAN重要性,實作(在不同的VLAN情況下,可以Connect)
以上圖中可以看到
-DHCP server
-Switch server
-computer
DHCP-server-01設為192.168.10.1/24
DHCP-server-02設為192.168.20.1/24
上面switch設定
1.)VLAN10 is sales department and VLAN20 is develope department
2.)把配置好的線路,分配到Vlan10、Vlan20底下
command => configure terminal => vlan 10 => name sales => exit
configure terminal => int range f0/1-f0/3 , g0/1 => switchport access vlan 10
command => configure terminal => vlan 20 => name develope => exit
configure terminal => int range f0/4-f0/6 , g0/2 => switchport access vlan 20
這樣就設定好了!下面的switch也是一樣的方式喔。請參考下面圖案
以上圖片,可以看到左右兩邊的電腦都能夠自動取的IP喔
Question:但是VLAN不同的話,還是不能互通,接下來,我們要讓SWITCH可以互通必須用到Trunk
1.)業界版本:IEEE 802.1Q Tag Vlan(dot1q)
2.)Cisco版本:ISL(Inter-Switch Link(isl)
object:多個vlan的訊框可以互通
我們把連接交換器的線變成一條,連在G0/1port上面
G0/1、G0/2回復成原本的設定,然後再設把G0/1設定成Trunk,兩個switch都要改喔
command => default int range g0/1 , g0/2 恢復預設值
command => int g0/1 => switchport mode trunk
這樣就成功了喔