//興趣記錄一下~希望退休以後可以回味,各位別嫌棄,感謝各位!!
///
//VLAN的重要性,實作(驗證在不同的VLAN底下,主機不能互通)
以上圖中可以看到
-DHCP server
-Switch server
-computer
我把DHCP IP address 設為 192.168.1.1/24 會分配IP給電腦
以上圖中是switch目前配置的VLAN,在還沒分配的情況下,都還在VLAN1,輸入 show vlan brief 就能看到了喔
根據第一章圖,以交換器為中心,分為左半部和右半部。
左半部為=>銷售部門(VLAN10)(Fa0/1-4)
新增銷售部門 SwitchVlan(config)#vlan10 => name sales
把interface分配到vlan10
SwitchVlan(config)# int range f0/1 - f0/4
SwitchVlan(config-if-range)#switchport access vlan 10
右半部為=>開發部門(VLAN20)(Fa0/5-7)
新增開發部門 SwitchVlan(config)#vlan20 => name develop
把interface分配到vlan20
SwitchVlan(config)# int range f0/5 - f0/7
SwitchVlan(config-if-range)#switchport access vlan 20
SwitchVlan#show vlan brief 即可看到第三張圖片
DHCP分配IP時,可以看到銷售部門和開發部門的IP並不相同
原因:VLAN的不同,造成兩邊的主機不能互通。