tenable/cloud-security-endpoint-connectorTenable Cloud Security 端点连接器镜像(以下简称“连接器镜像”)是 Tenable 官方提供的轻量级容器化组件,用于实现本地或云环境中的端点设备(服务器、工作站、云实例等)与 Tenable Cloud Security 平台的安全集成。通过该连接器,端点设备可向平台实时上报安全数据、接收并执行安全策略,实现统一的端点安全管理与监控。
[***])的 443 端口(建议通过网络防火墙放行)。通过 Docker Hub 拉取官方镜像:
bashdocker pull tenable/endpoint-connector:latest
bashdocker run -d \ --name tenable-endpoint-connector \ --restart unless-stopped \ -e TENABLE_API_KEY="your_api_key_here" \ -e TENABLE_PLATFORM_URL="[***]" \ -e ENDPOINT_NAME="server-01" \ # 可选,自定义端点名称(默认使用容器ID) -e LOG_LEVEL="info" \ # 可选,日志级别:debug/info/warn/error(默认info) tenable/endpoint-connector:latest
如需配置代理服务器、私有CA证书等,可通过挂载本地配置文件实现:
config.yaml(示例):yamlplatform: url: "[***]" api_key: "your_api_key_here" network: proxy: enable: true http_proxy: "[***]" https_proxy: "[***]" no_proxy: "localhost,127.0.0.1" logging: level: "debug" file_path: "/var/log/tenable/connector.log"
bashdocker run -d \ --name tenable-endpoint-connector \ --restart unless-stopped \ -v /path/to/local/config.yaml:/etc/tenable/config.yaml \ -v /var/log/tenable:/var/log/tenable \ # 挂载日志目录(可选) tenable/endpoint-connector:latest
| 环境变量 | 描述 | 是否必填 | 默认值 |
|---|---|---|---|
TENABLE_API_KEY | Tenable Cloud Security 平台 API 密钥 | 是 | - |
TENABLE_PLATFORM_URL | 平台服务 URL | 否 | [***] |
ENDPOINT_NAME | 端点在平台中显示的名称 | 否 | 容器ID |
LOG_LEVEL | 日志级别(debug/info/warn/error) | 否 | info |
HTTP_PROXY | HTTP 代理服务器地址(如 [***]) | 否 | - |
HTTPS_PROXY | HTTPS 代理服务器地址(如 [***]) | 否 | - |
NO_PROXY | 无需代理的域名/IP列表(逗号分隔) | 否 | localhost,127.0.0.1 |
bashdocker ps | grep tenable-endpoint-connector
bashdocker logs tenable-endpoint-connector
成功连接时日志将显示:Successfully connected to Tenable Cloud Security platform。
3. 在 Tenable Cloud Security 平台的“端点管理”页面,确认目标端点已显示为“在线”状态。
TENABLE_API_KEY 包含敏感权限,建议通过环境变量注入或挂载加密配置文件,避免明文存储。docker pull tenable/endpoint-connector:latest && docker restart tenable-endpoint-connector。--memory 和 --cpus 参数配置(如 --memory 256m --cpus 0.5)。
manifest unknown 错误
TLS 证书验证失败
DNS 解析超时
410 错误:版本过低
402 错误:流量耗尽
身份认证失败错误
429 限流错误
凭证保存错误
来自真实用户的反馈,见证轩辕镜像的优质服务