lvfengfree b92e1119ae fix: 修复菜单为空问题 - 移除后端过滤home路由的错误逻辑
- 修复RouteService中错误过滤home路由的问题
- 后端现在正确返回所有用户有权限的路由
- 添加设备管理相关功能(列表、在线监控、电源管理、远程监控)
- 添加详细的修复文档和重启脚本
- 更新权限配置脚本

问题根源:后端代码中有逻辑会过滤掉home路由,导致前端收到空数组,无法生成菜单
解决方案:移除过滤home路由的逻辑,让后端返回所有有权限的路由
2026-03-01 09:50:19 +08:00

56 lines
2.2 KiB
Plaintext

// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
[Version ( "3.0.0" ),
Description (
"The AMT_TLSSettingData class represents configuration-related "
"and operational parameters for the TLS service in the Intel(R) "
"AMT." )]
class AMT_TLSSettingData : CIM_SettingData {
[Description (
"Adminstrator-settable property that determines whether "
"or not mutual authentication is used at the TLS layer is "
"used on the associated service access point. If False, "
"then only the server authenticates itself at the TLS "
"layer." )]
boolean MutualAuthentication;
[Required, Description (
"Administrator-settable property that determines whether "
"or not TLS is used on the associated service access "
"point." )]
boolean Enabled;
[Description (
"An array of strings, used to validate the CN subfield of "
"the subject field in X.509 certificates presented to "
"Intel(R) AMT in the TLS handshake. This value must comply "
"with the requirements of RFC 1035." )]
string TrustedCN[];
[Description (
"The Issuer Name field in the X.509 certificate." )]
string X509IssuerName;
[Description (
"The Serial Numebr field in the X.509 certificate." ),
OctetString]
uint8 X509SerialNumber[20];
[Description (
"This setting defines once TLS is enabled and configured "
"whether non-secure EOI/WSMAN connections are still "
"accepted by FW on ports 16992 and 623. If "
"AcceptNonSecureConnections is set to TRUE then "
"non-secure connections are still accepted. If set to "
"FALSE then non-secure connections are rejected. This "
"setting may be set per interface for the local and "
"network interfaces." )]
boolean AcceptNonSecureConnections;
[Description (
"This setting define whether a non secure - aka direct tcp"
"is supported or not - not supported from RPL on."
"This setting is read only." )]
boolean NonSecureConnectionsSupported;
};