我希望透過一對 Cisco 1242 接入點連接兩個設施,並尋求設定建議。我們有多個正在運行的 VLAN,需要透過連線傳遞,但除此之外的設定相當簡單。從安全性、可靠性和速度的角度來看,有什麼最佳實踐建議嗎?
答案1
我認為你需要更具體。如果您詢問 Vlan 部分,您只需在路由器上設定帶有 dot1q 標記的中繼。在資料庫中建立 VLAN 後,它就像這樣:
interface FastEthernet0/1
no ip address
!
interface FastEthernet0/1.1
encapsulation dot1Q 10
ip address 10.100.2.1 255.255.255.0
!
interface FastEthernet0/1.2
encapsulation dot1Q 20
ip address 10.100.0.1 255.255.255.0
!