收集 NetApp SAN 日志
支持的平台:
Google SecOps
SIEM
本文档介绍了如何使用 Bindplane 代理将 NetApp SAN 日志提取到 Google 安全运营中心。解析器使用 Grok 模式从 NetApp SAN 日志中提取字段,然后将这些提取的字段映射到 Google SecOps UDM,使用静态供应商和产品信息丰富数据,以便进行标准化安全分析。如果日志条目与预期模式不匹配,则会被丢弃,因为它没有安全价值。
准备工作
- 确保您拥有 Google SecOps 实例。
- 确保您使用的是 Windows 2016 或更高版本,或者使用了带有
systemd
的 Linux 主机。 - 如果在代理后面运行,请确保防火墙端口处于打开状态。
- 确保您拥有对 NetApp SAN 的特权访问权限。
获取 Google SecOps 提取身份验证文件
- 登录 Google SecOps 控制台。
- 依次前往 SIEM 设置 > 收集代理。
- 下载提取身份验证文件。将该文件安全地保存在将安装 BindPlane 的系统上。
获取 Google SecOps 客户 ID
- 登录 Google SecOps 控制台。
- 依次选择 SIEM 设置 > 配置文件。
- 复制并保存组织详细信息部分中的客户 ID。
安装 Bindplane 代理
Windows 安装
- 以管理员身份打开命令提示符或 PowerShell。
运行以下命令:
msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
Linux 安装
- 打开具有 root 或 sudo 权限的终端。
运行以下命令:
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
其他安装资源
- 如需了解其他安装选项,请参阅此安装指南。
配置 Bindplane 代理以注入 Syslog 并将其发送到 Google SecOps
访问配置文件:
- 找到
config.yaml
文件。通常,在 Linux 上,该目录位于/etc/bindplane-agent/
目录中;在 Windows 上,该目录位于安装目录中。 - 使用文本编辑器(例如
nano
、vi
或记事本)打开该文件。
- 找到
按如下方式修改
config.yaml
文件:receivers: udplog: # Replace the port and IP address as required listen_address: "0.0.0.0:514" exporters: chronicle/chronicle_w_labels: compression: gzip # Adjust the path to the credentials file you downloaded in Step 1 creds: '/path/to/ingestion-authentication-file.json' # Replace with your actual customer ID from Step 2 customer_id: <customer_id> endpoint: malachiteingestion-pa.googleapis.com # Add optional ingestion labels for better organization ingestion_labels: log_type: NETAPP_SAN raw_log_field: body service: pipelines: logs/source0__chronicle_w_labels-0: receivers: - udplog exporters: - chronicle/chronicle_w_labels
根据基础架构中的需要替换端口和 IP 地址。
将
<customer_id>
替换为实际的客户 ID。在获取 Google SecOps 提取身份验证文件部分中,将
/path/to/ingestion-authentication-file.json
更新为身份验证文件的保存路径。
重启 Bindplane 代理以应用更改
如需在 Linux 中重启 Bindplane 代理,请运行以下命令:
sudo systemctl restart bindplane-agent
如需在 Windows 中重启 Bindplane 代理,您可以使用服务控制台,也可以输入以下命令:
net stop BindPlaneAgent && net start BindPlaneAgent
在 NetApp SAN 中配置 Syslog
- 登录 NetApp SAN Web 界面。
- 依次前往配置 > 监控 > 审核和 syslog 服务器。
- 点击配置外部 syslog 服务器或修改外部 syslog 服务器。
- 提供以下配置详细信息:
- 主机:输入 Bindplane IP 地址。
- 端口:输入绑定层端口号;例如,对于 UDP,输入
514
。 - 协议:选择 UDP。
- 点击继续。
- 启用并选择以下 Syslog 内容:
- 发送审核日志:启用并设置
Severity:Informational(6)
、facility:local7
。 - 发送安全事件:启用并设置
Severity:Passthrough
、facility:Passthrough
。 - 发送应用日志:请将其保持停用状态。
- 发送审核日志:启用并设置
- 点击继续。
- 发送日志测试消息。
- 点击保存。
UDM 映射表
日志字段 | UDM 映射 | 逻辑 |
---|---|---|
datetime | metadata.event_timestamp.seconds | 使用 grok 模式 %{SYSLOGTIMESTAMP:datetime} 从日志消息中提取,并转换为从公元纪年开始计算的秒数。 |
降序 | metadata.description | 使用 Grok 模式 %{GREEDYDATA:desc} 从日志消息中提取。 |
ip | principal.ip | 使用 Grok 模式 %{IP:ip} 从日志消息中提取。 |
log_level | 用于确定 security_result.severity 的值。 |
|
端口 | principal.port | 使用 grok 模式 %{INT:port} 从日志消息中提取,并转换为整数。 |
请求 | security_result.summary | 使用 Grok 模式 %{DATA:request} 从日志消息中提取。 |
userid | principal.user.userid | 使用 Grok 模式 %{WORD:userid} 从日志消息中提取。 |
不适用 | metadata.event_type | 由解析器设置为 STATUS_UPDATE 。 |
不适用 | metadata.log_type | 从传入的日志元数据填充。 |
不适用 | metadata.product_name | 由解析器设置为 Storage Area Network 。 |
不适用 | metadata.vendor_name | 由解析器设置为 NetApp 。 |
不适用 | security_result.severity | 如果 log_level 为 Error ,则设置为 ERROR 。 |
变化
2023-04-25
- 新创建的解析器。
需要更多帮助?向社区成员和 Google SecOps 专业人士寻求解答。