mlag上联口能做双活网关吗?有具体案例吗?麻烦发一下 例如上行口两台都是三层聚合1.100 地址能一样吗?另外还要做bgp如果不能一样ip的话请给出具体案例我看一下
(0)
在 H3C 的 MLAG(Multi-Chassis Link Aggregation Group)技术中,上行口可以实现双活网关功能,并且支持与 BGP 协议结合部署。以下是具体实现方案、典型案例及配置要点:
一、MLAG 双活网关的核心机制
三层聚合接口的虚拟 IP 技术MLAG 通过 **VRRP(Virtual Router Redundancy Protocol)或IRF(Intelligent Resilient Framework)** 技术,将两台物理设备的三层聚合接口虚拟为一个逻辑网关。例如,两台设备的上行口 IP 分别为192.168.1.1/24和192.168.1.2/24,但对外呈现一个虚拟 IP192.168.1.254作为网关。这种方式允许两台设备同时处理流量,实现负载分担和冗余备份。
BGP 与 MLAG 的协同配置
iBGP 多跳(eBGP 可选):通过配置 BGP 的多跳属性,使 MLAG 设备与上游路由器建立 BGP 邻居关系。例如,MLAG 设备的 Loopback0 接口作为 BGP 源地址,与上游路由器建立 iBGP 对等体。
路由策略优化:通过设置 BGP 的本地优先级(Local Preference)、MED(Multi-Exit Discriminator)或AS 路径属性,引导流量在 MLAG 设备间均衡分布。例如,将 MLAG 主设备的 BGP 本地优先级设置为更高值,优先转发流量。
二、典型案例:MLAG 双活网关 + BGP 配置
1. 网络拓扑
MLAG 设备:两台 S12500 交换机组成 MLAG 系统,上行口为三层聚合接口 Eth-Trunk1,IP 分别为192.168.1.1/24(Device A)和192.168.1.2/24(Device B)。
虚拟网关:VRRP 组 1 的虚拟 IP 为192.168.1.254,作为终端设备的默认网关。
上游设备:两台 Spine 交换机运行 BGP,与 MLAG 设备建立 iBGP 邻居关系。
2. 配置步骤
(1)MLAG 基础配置
# Device A配置
system-view
m-lag system-mac 0000-0000-0001 # 两台设备需配置相同的系统MAC
m-lag system-number 1 # Device A的系统编号为1
m-lag system-priority 100 # 优先级高于Device B,成为主设备
m-lag keepalive ip destination 192.168.2.2 source 192.168.2.1 # Keepalive链路
interface gigabitethernet 1/0/1 # Keepalive接口配置
port link-mode route
ip address 192.168.2.1 24
quit
# Device B配置
system-view
m-lag system-mac 0000-0000-0001
m-lag system-number 2
m-lag system-priority 90
m-lag keepalive ip destination 192.168.2.1 source 192.168.2.2
interface gigabitethernet 1/0/1
port link-mode route
ip address 192.168.2.2 24
quit
(2)三层聚合接口及 VRRP 配置
# Device A配置
interface eth-trunk 1
port link-mode route
ip address 192.168.1.1 24
vrrp vrid 1 virtual-ip 192.168.1.254 # 虚拟网关IP
vrrp vrid 1 priority 200 # 优先级更高,成为Master
quit
# Device B配置
interface eth-trunk 1
port link-mode route
ip address 192.168.1.2 24
vrrp vrid 1 virtual-ip 192.168.1.254
vrrp vrid 1 priority 190 # 优先级较低,作为Backup
quit
(3)BGP 配置(以 Device A 为例)
bgp 65000
router-id 192.168.1.1
peer spine1 as-number 65001 # 与上游Spine1建立iBGP邻居
peer spine1 connect-interface loopback0
peer spine1 ebgp-multihop 3 # 配置多跳以支持非直连邻居
#
address-family ipv4 unicast
network 192.168.1.0 24 # 通告本地网段
peer spine1 enable
quit
(4)BGP 策略优化(流量负载分担)
# 在Device A和Device B上配置不同的MED值,引导入站流量
route-policy SET_MED permit node 10
if-match interface eth-trunk1
apply cost 100 # Device A的MED为100
quit
# Device B的route-policy设置MED为200
route-policy SET_MED permit node 10
if-match interface eth-trunk1
apply cost 200
quit
# 在BGP配置中引用策略
bgp 65000
address-family ipv4 unicast
peer spine1 route-policy SET_MED export
quit
3. 验证方法
VRRP 状态检查
display vrrp interface eth-trunk1 # 确认Device A为Master,Device B为Backup
BGP 邻居状态检查
display bgp peer # 验证与Spine设备的BGP邻居是否建立
流量负载分担验证使用tracert或流量统计工具,确认终端设备的流量在 MLAG 设备间均衡分布。
三、关键技术细节
三层聚合接口的 IP 地址
必须不同:两台设备的上行口 IP 需配置为同网段的不同地址(如192.168.1.1/24和192.168.1.2/24),避免 IP 冲突。
虚拟 IP 统一:通过 VRRP 提供统一的虚拟网关 IP(如192.168.1.254),终端设备无需感知物理设备的存在。
BGP 与 MLAG 的结合
iBGP 多跳配置:当 MLAG 设备与上游 BGP 邻居非直连时,需配置ebgp-multihop以允许 BGP 报文通过中间设备转发。
路由反射器(RR):在大规模网络中,可部署 Spine 设备作为 BGP RR,反射 MLAG 设备的路由,避免全互联的 BGP 邻居关系。
双活网关的高可用性
MAD(Multi-Active Detection)机制:通过 Keepalive 链路检测设备状态,当 Peer-Link 故障时,自动关闭从设备的业务接口,防止双主冲突。
快速收敛:MLAG 结合 BGP 的增量更新机制,可在设备或链路故障时实现秒级流量切换。
四、适用场景与注意事项
适用场景
数据中心核心层:实现服务器群的高并发访问和冗余保护。
园区网出口:通过 BGP 动态选路,实现多运营商链路的负载分担。
注意事项
Peer-Link 带宽规划:需确保 Peer-Link 的带宽足够承载同步流量(如 MAC 表、ARP 表同步)和绕行流量。
BGP 路由过滤:在与外部网络互联时,需严格配置 BGP 路由过滤策略,避免路由环路。
设备兼容性:MLAG 功能需设备硬件支持,例如 S12500、S9800 等高端交换机。
五、H3C 官方参考案例
MLAG+EVPN 分布式网关配置在该案例中,MLAG 设备作为 EVPN 分布式网关,通过 BGP EVPN 通告主机路由,实现跨数据中心的二层和三层互通。上行口配置为三层聚合接口,通过 VRRP 提供虚拟网关,并与 Spine 设备建立 iBGP 邻居关系。
MLAG+BGP 多跳配置H3C 官方文档提供了 MLAG 设备与非直连 BGP 邻居的配置示例,包括ebgp-multihop参数设置和路由策略优化。
通过上述配置,MLAG 技术可有效实现上行口的双活网关功能,并与 BGP 协议无缝集成,满足企业网络的高可靠性和高性能需求。建议在实施前参考 H3C 官方文档(如《H3C iMC 智能管理中心配置指南》)进行详细规划和测试。
(0)
暂无评论
如图1-1所示:
· Device A和Device B组成M-LAG系统,服务器Server A通过M-LAG接口接入M-LAG系统。
· Device A和Device B为服务器Server A提供M-LAG双活网关接入。
· Device A、Device B通过等价路由接入到上行设备Device C。
· 服务器Server B与Server A同网段单上行接入网络,服务器Server C与Server A配置不同网段单上行接入网络。
由于用户对服务器的入网需求,现需要:
· 服务器Server A、Server B、Server C之间IPv4、IPv6双栈互通。
· 服务器Server A、Server B、Server C与Network之间IPv4、IPv6双栈网络互通。
· 当M-LAG的两个成员设备有链路故障时,各业务仍然互通。
图1-1 M-LAG双活网关组网图
设备 | 接口 | IP地址 | 接口说明及对接设备和接口 |
Device A | LoopBack 0 | 3.3.3.3/32 2000::3:3:3:3/128 | 环回口地址 Router id |
XGE 3/0/8 | - | Server B | |
XGE 3/0/5 | - | Server A M-LAG接口 | |
XGE 3/0/4 | 32.1.1.1/24 32::1/64 | Device C: XGE 3/0/4 | |
XGE 3/0/1 | 21.1.1.1/24 | Device B: XGE 3/0/1 Keepalive链路 | |
XGE 3/0/2 | - | Device B: XGE 3/0/2 peer-link接口 | |
XGE 3/0/3 | - | Device B: XGE 3/0/3 peer-link接口 | |
Vlan 100 | 100.1.1.1/24 100::1/64 | 双活网关 | |
Vlan 101 | 101.1.1.1/24 101::1/64 | 两台M-LAG设备互连的三层链路,用于东西向流量转发,或南北向流量逃生 | |
Device B | LoopBack 0 | 4.4.4.4/32 2000::4:4:4:4/128 | 环回口地址 Router id |
XGE 3/0/8 | 200.1.1.1/24 200::1/64 | Server C | |
XGE 3/0/5 | - | Server A M-LAG接口 | |
XGE 3/0/4 | 33.1.1.1/24 33::1/64 | Device C: XGE 3/0/5 | |
XGE 3/0/1 | 21.1.1.2/24 | Device A: XGE 3/0/1 Keepalive链路 | |
XGE 3/0/2 | - | Device A: XGE 3/0/2 peer-link接口 | |
XGE 3/0/3 | - | Device A: XGE 3/0/3 peer-link接口 | |
Vlan 100 | 100.1.1.1/24 100::1/64 | 双活网关 | |
Vlan 101 | 101.1.1.2/24 101::2/64 | 两台M-LAG设备互连的三层链路,用于东西向流量转发,或南北向流量逃生 | |
Device C | XGE 3/0/1 | 22.1.1.1/24 22::1/64 | Network 1 |
XGE 3/0/4 | 32.1.1.2/24 32::2/64 | Device A: XGE 3/0/4 | |
XGE 3/0/5 | 33.1.1.2/24 33::2/64 | Device B: XGE 3/0/4 | |
Server A | - | 100.1.1.11/24 100::11/64 | Device A: XGE 3/0/5 Device B: XGE 3/0/5 |
Server B | - | 100.1.1.12/24 100::12/64 | Device A XGE 3/0/8 |
Server C | - | 200.1.1.11/24 200::11/64 | Device B: XGE 3/0/8 |
Network 1 | - | 22.1.1.11/24 22::11/64 | Device C: XGE 3/0/1 |
请在适用软件版本的基础上安装当前最新补丁。
设备 | 软件版本 |
S10500、S10500X、S7600、S7600-X、S7600E-X、S7500X、S7500E | R7625及以上的版本 |
S12500G-AF(T系列单板) | R7625及以上的版本 |
S12500G-AF(S系列单板) | R8054P04及以上的版本 |
S10500X-G、S7500X-G | R7754P04及以上的版本 |
S5590XP-HI-G、S6520X-EI-G、S6520XP-EI-G | R7754P04及以上的版本 |
S6550XE-HI、S6525XE-HI | R8106P22及以上的版本 |
S6520X-EI、S6520X-HI | F6628P11及以上的版本 |
S5590-HI、S5590-EI、S6805-G、S6850-G、S6530X、S9850-G | R8307P08及以上的版本 |
S5560X-HI | F6628P11及以上的版本 |
S5560X-EI | F6628P11及以上的版本 |
· Device A、Device B配置M-LAG,为Server A提供双活网关接入;
· Server A双上行接入网络,并在Server上配置Vlan100的IP作为网关地址;
· Server B单上行接入网络,并在Server上配置Vlan100的IP作为网关地址;
· Server C单上行接入网段,并在Server上配置Vlan200的IP作为网关地址;
· Device A、Device B通过等价路由接入到上行设备Device C;
· DeviceA、DeviceB之间配置OSPF/OSPFv3邻居,连通单挂业务,同时作为网络侧与单挂业务的备份路径;
· IPv4和IPv6网络配置同时存在。
配置前设备的所有参数均采用出厂时的缺省配置。如果您已经对设备进行了配置,为了保证配置效果,请确认现有配置和以下配置不冲突。
· 配置M-LAG
Device A | Device B | 命令说明 | 注意事项 |
m-lag system-mac 2-2-2 | m-lag system-mac 2-2-2 | 配置M-LAG系统MAC地址 | 同一分布式聚合组中,所有M-LAG设备的系统MAC地址必须相同 |
m-lag system-number 1 | m-lag system-number 2 | 配置M-LAG系统编号 | 同一分布式聚合组中的M-LAG设备应配置不同的系统编号 |
m-lag system-priority 123 | m-lag system-priority 123 | 配置M-LAG系统优先级 | 同一分布式聚合组中,所有M-LAG设备的系统优先级必须相同 |
m-lag standalone enable | m-lag standalone enable | (可选)开启M-LAG设备独立工作模式 | 当M-LAG系统分裂时,为了避免M-LAG系统中的两台设备都作为主设备转发流量的情况,可以在M-LAG系统分裂前配置本功能。 |
m-lag keepalive ip destination 21.1.1.2 source 21.1.1.1 | m-lag keepalive ip destination 21.1.1.1 source 21.1.1.2 | 配置Keepalive报文的目的IPv4地址和源IPv4地址 | - |
interface Ten-gigabitethernetE3/0/1 | interface Ten-gigabitethernetE3/0/1 | Keepalive链路接口 | - |
port link-mode route | port link-mode route | 配置Keepalive链路接口工作在三层模式 | - |
ip address 21.1.1.1 24 | ip address 21.1.1.2 24 | 配置Keepalive报文的源IPv4地址 | - |
quit | quit | 退回到系统模式 | - |
m-lag mad exclude interface Ten-gigabitethernetE3/0/1 | m-lag mad exclude interface Ten-gigabitethernetE3/0/1 | 配置Keepalive链路接口为M-LAG保留接口 | - |
interface bridge-aggregation 1 | interface bridge-aggregation 1 | 创建以太网聚合接口 | 用作peer-link接口 |
link-aggregation mode dynamic | link-aggregation mode dynamic | 配置用作PeerLink的聚合口工作在动态聚合模式 | - |
quit | quit | 退回到系统模式 | - |
interface range Ten-gigabitethernetE 3/0/2 Ten-gigabitethernetE 3/0/3 | interface range Ten-gigabitethernetE 3/0/2 Ten-gigabitethernetE 3/0/3 | 进入物理端口组视图 | - |
port link-aggregation group 1 | port link-aggregation group 1 | peer-link链路物理端口加入peer-link聚合组 | - |
quit | quit | 退回到系统模式 | - |
interface bridge-aggregation 1 | interface bridge-aggregation 1 | 进入以太网聚合接口视图 | - |
port m-lag peer-link 1 | port m-lag peer-link 1 | 配置聚合口1为peer-link接口 | - |
undo mac-address static source-check enable | undo mac-address static source-check enable | 关闭报文入接口与静态MAC地址表项匹配检查功能,避免跨peer-link链路三层转发的流量不通 |
|
quit | quit | 退回到系统模式 | - |
Device A | Device B | 命令说明 | 注意事项 |
interface bridge-aggregation 2 | interface bridge-aggregation 2 | 创建连接Server A的以太网聚合接口 | - |
link-aggregation mode dynamic | link-aggregation mode dynamic | 配置连接Server A的聚合组工作在动态聚合模式 | - |
port m-lag group 1 | port m-lag group 1 | 配置聚合口2加入M-LAG组1 | - |
port lacp system-priority 100 | port lacp system-priority 101 | 配置lacp优先级,使得脑裂时只选中高优先级成员口 | - |
quit | quit | 退回到系统模式 | - |
interface Ten-gigabitethernetE 3/0/5 | interface Ten-gigabitethernetE 3/0/5 | 进入M-LAG设备连接Server A的物理端口视图 | - |
port link-aggregation group 2 | port link-aggregation group 2 | 加入聚合组 | - |
quit | quit | 退回到系统模式 | - |
Device A | Device B | 命令说明 | 注意事项 |
router id 3.3.3.3 | router id 4.4.4.4 | 配置Router ID | - |
ospf 1 | ospf 1 | 使能OSPF | - |
import-route direct | import-route direct | 引入直连路由 | - |
area 0 | area 0 | 配置区域0 | - |
quit | quit | 退回到OSPF视图 | - |
quit | quit | 退回到系统模式 | - |
ospfv3 1 | ospfv3 1 | 使能OSPFv3 | - |
router-id 3.3.3.3 | router-id 4.4.4.4 | 配置router id | - |
import-route direct | import-route direct | 引入直连路由 | - |
area 0 | area 0 | 配置区域0 | - |
quit | quit | 退回到OSPFv3视图 | - |
quit | quit | 退回到系统模式 | - |
interface Loopback 0 | interface Loopback 0 | 配置环回口 | - |
ip address 3.3.3.3 255.255.255.255 | ip address 4.4.4.4 255.255.255.255 | 配置环回口IPv4地址 | - |
ospf 1 area 0.0.0.0 | ospf 1 area 0.0.0.0 | 环回口使能OSPF | - |
ipv6 address 2000::3:3:3:3/128 | ipv6 address 2000::4:4:4:4/128 | 配置环回口IPv6地址 | - |
ospfv3 1 area 0.0.0.0 | ospfv3 1 area 0.0.0.0 | 环回口使能OSPFv3 | - |
quit | quit | 退回到系统模式 | - |
vlan 101 | vlan 101 | 创建VLAN 101 | - |
quit | quit | 退回到系统模式 | - |
interface vlan-interface 101 | interface vlan-interface 101 | 创建接口Vlan-interface101 | 两台M-LAG设备互连的三层接口,用于东西向流量转发,或南北向流量逃生 |
ip address 101.1.1.1 255.255.255.0 | ip address 101.1.1.2 255.255.255.0 | 配置接口Vlan-interface101的IPv4地址 | - |
ospf 1 area 0.0.0.0 | ospf 1 area 0.0.0.0 | 接口使能OSPF | - |
ipv6 address 101::1 64 | ipv6 address 101::2 64 | 配置接口Vlan-interface101的IPv6地址 | - |
ospfv3 1 area 0.0.0.0 | ospfv3 1 area 0.0.0.0 | 接口使能OSPFv3 | - |
quit | quit | 退回到系统模式 | - |
m-lag mad exclude interface Vlan-interface 101 | m-lag mad exclude interface Vlan-interface 101 | 配置VLAN接口为M-LAG保留接口 | - |
Device A | Device B | 命令说明 | 注意事项 |
vlan 100 | vlan 100 | 创建VLAN 100 | - |
quit | quit | 退回到系统模式 | - |
interface bridge-aggregation 2 | interface bridge-aggregation 2 | 进入以太网聚合接口 | - |
port link-type trunk | port link-type trunk | 配置二层聚合接口2为Trunk端口 | - |
port trunk permit vlan 100 | port trunk permit vlan 100 | 允许VLAN 100的报文通过 | - |
undo port trunk permit vlan 1 | undo port trunk permit vlan 1 | 不允许VLAN 1的报文通过 | - |
quit | quit | 退回到系统模式 | - |
interface vlan-interface 100 | interface vlan-interface 100 | 创建接口Vlan-interface100 | - |
ip address 100.1.1.1 24 | ip address 100.1.1.1 24 | 配置接口Vlan-interface100的IPv4地址 | 使其作为IPv4双活网关 |
ipv6 address 100::1 64 | ipv6 address 100::1 64 | 配置接口Vlan-interface100的IPv6地址 | 使其作为IPv6双活网关 |
mac-address 0002-2222-2222 | mac-address 0002-2222-2222 | 配置接口Vlan-interface100的MAC地址 | - |
quit | quit | 退回到系统模式 | - |
m-lag mad exclude interface Vlan-interface100 | m-lag mad exclude interface Vlan-interface100 | 配置接口Vlan-interface100为M-LAG保留接口 | M-LAG接口上的VLAN接口需要配置为保留接口,以避免M-LAG设备间同步表项时,因VLAN接口处于M-LAG MAD DOWN状态,ARP/ND表项无法同步,影响流量转发 |
Device A | Device B | 命令说明 | 注意事项 |
vlan 32 | vlan 33 | 创建VLAN | - |
quit | quit | 退回到系统模式 | - |
interface Ten-gigabitethernetE 3/0/4 | interface Ten-gigabitethernetE 3/0/4 | 进入以太网接口视图 | - |
port access vlan 32 | port access vlan 33 | 允许指定VLAN的报文通过 | - |
quit | quit | 退回到系统模式 | - |
interface vlan-interface 32 | interface vlan-interface 33 | 创建VLAN接口 | - |
ip address 32.1.1.1 24 | ip address 33.1.1.1 24 | 配置VLAN接口的IPv4地址 | - |
ospf 1 area 0 | ospf 1 area 0 | 使能该接口的OSPF功能 | - |
ipv6 address 32::1 64 | ipv6 address 33::1 64 | 配置VLAN接口的IPv6地址 | - |
ospfv3 1 area 0 | ospfv3 1 area 0 | 使能该接口的OSPFv3功能 | - |
quit | quit | 退回到系统模式 | - |
Device A | Device B | 命令说明 | 注意事项 |
- | vlan 200 | 创建VLAN | - |
- | quit | 退回到系统模式 | - |
interface ten-gigabitethernet 3/0/8 | interface ten-gigabitethernet 3/0/8 | 配置Server B/C单挂口接入 | - |
port access vlan 100 | port access vlan 200 | 允许指定的VLAN的报文通过 | - |
quit | quit | 退回到系统模式 | - |
- | interface vlan-interface 200 | 创建VLAN接口 | - |
- | ip address 200.1.1.1 24 | 配置VLAN接口的IPv4地址 | - |
- | ipv6 address 200::1 64 | 配置VLAN接口的IPv6地址 | - |
- | quit | 退回到系统模式 | - |
Device C | 命令说明 | 注意事项 |
undo stp global enable | 全局去使能stp | - |
vlan 32 33 | 创建VLAN | - |
interface Ten-gigabitethernetE 3/0/4 | 进入以太网接口视图 | - |
port access vlan 32 | 允许VLAN 32的报文通过Device C连接Device A的接口 | - |
quit | 退回到系统模式 | - |
interface Ten-gigabitethernetE 3/0/5 | 进入以太网接口视图 | - |
port access vlan 33 | 允许VLAN 33的报文通过Device C连接Device B的接口 | - |
quit | 退回到系统模式 | - |
router id 5.5.5.5 | 配置Router ID | - |
ospf 1 | 配置OSPF,实现与M-LAG设备间IPv4网络互通 | - |
import-route direct | 引入直连路由 | - |
area 0 | 配置区域0 | - |
quit | 退回到OSPF视图 | - |
quit | 退回到系统模式 | - |
ospfv3 1 | 使能OSPFv3 | - |
router-id 5.5.5.5 | 配置router id | - |
import-route direct | 引入直连路由 | - |
area 0 | 配置区域0 | - |
quit | 退回到OSPFv3视图 | - |
quit | 退回到系统模式 | - |
interface loopback 0 | 创建环回口 | - |
ip address 5.5.5.5 255.255.255.255 | 配置环回口的IPv4地址 | - |
ospf 1 area 0 | 配置环回口使能OSPF | - |
ipv6 address 2000::5:5:5:5/128 | 配置环回口的IPv6地址 | - |
ospfv3 1 area 0 | 配置环回口使能OSPFv3 | - |
quit | 退回到系统模式 | - |
interface vlan-interface 32 | 创建VLAN接口32 | - |
ip address 32.1.1.2 24 | 配置VLAN接口的IPv4地址 | - |
ospf 1 area 0 | 配置VLAN接口使能OSPF | - |
ipv6 address 32::2 64 | 配置VLAN接口的IPv6地址 | - |
ospfv3 1 area 0 | 配置VLAN接口使能OSPFv3 | - |
quit | 退回到系统模式 | - |
interface vlan-interface 33 | 创建VLAN接口33 | - |
ip address 33.1.1.2 24 | 配置VLAN接口的IPv4地址 | - |
ospf 1 area 0 | 配置VLAN接口使能OSPF | - |
ipv6 address 33::2 64 | 配置VLAN接口的IPv6地址 | - |
ospfv3 1 area 0 | 配置VLAN接口使能OSPFv3 | - |
quit | 退回到系统模式 | - |
Device C | 命令说明 | 注意事项 |
vlan 22 | 创建VLAN 22 | - |
quit | 退回到系统模式 | - |
interface Ten-gigabitethernetE 3/0/1 | 进入以太网接口视图 | - |
port access vlan 22 | 允许VLAN 22的报文通过Device C连接外网的接口 | - |
quit | 退回到系统模式 | - |
interface vlan-interface 22 | 创建VLAN接口22 | - |
ip address 22.1.1.1 24 | 配置VLAN接口的IPv4地址 | - |
ipv6 address 22::1 64 | 配置VLAN接口的IPv6地址 | - |
quit | 退回到系统模式 |
(0)
暂无评论
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论