Ubiquiti 与 Cisco 本机 VLAN 配置相当

Ubiquiti 与 Cisco 本机 VLAN 配置相当

我正在尝试用 Ubiquiti 路由器替换思科路由器。在思科上,您无需寻址基本接口。您只需要寻址 VLAN。然后,选择本机 VLAN,这将与连接交换机的未标记 VLAN 端口匹配。在 Ubiquiti 上,据我所知,您使用与 VLAN 匹配的子网寻址基本接口,并寻址其余 VLAN,但从不为思科中的“本机”指定 VLAN。这是正确的配置吗?

    ethernet eth2 {
    address 10.1.2.2/24
    duplex auto
    speed auto
    vif 10 {
        address 10.1.10.2/24
    }
}

在这种情况下,在 unms 门户中,我看到大量丢包。我不知道它们为什么会丢包。

这是我的交换机端口配置,ubnt 路由器连接到 C23

vlan 2
   name "Management"
   untagged A1-A2,A19,B20,B22,B24,C23-C24,D20,Trk4
   tagged A4,A8,E1,E4-E8,F1-F6,F8,Trk1-Trk2
   ip address 10.1.2.10 255.255.255.0
   exit
vlan 10
   name "DATA"
   untagged A4,A8-A18,A20,B1-B19,B21,B23,C1-C22,D1-D19,E2-E3,F7,Trk1-Trk2
   tagged A19,C23-C24,E1,E4-E8,F1-F6,F8,Trk4
   no ip address
   exit

以下是我在思科路由器上尝试模仿的配置:

interface Port-channel1
 description Major Interface for VLAN Routing
 no ip address
 hold-queue 150 in
!
interface Port-channel1.2
 description MANAGEMENT VLAN INTERFACE
 encapsulation dot1Q 2 native
 ip address 10.1.2.1 255.255.255.0
!
interface Port-channel1.10
 description DATA VLAN INTERFACE
 encapsulation dot1Q 10
 ip address 10.1.10.1 255.255.255.0

相关内容