收集 Dell EMC Isilon NAS 日志

解析器版本: 1.0

支持的环境:

本文档介绍了如何使用 Bindplane 代理将 Dell EMC Isilon NAS 日志注入到 Google Security Operations。

Dell EMC Isilon(现在的 Dell PowerScale)是一个横向扩容 NAS 平台,可生成用于文件访问审核、协议事件和系统操作的 syslog 消息。解析器会提取字段并将其映射到统一数据模型 (UDM)。

准备工作

请确保满足以下前提条件:

  • Google SecOps 实例
  • Windows Server 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • Bindplane 代理与 Dell EMC Isilon 系统之间的网络连接
  • 如果通过代理运行,请确保防火墙端口根据 Bindplane 代理要求处于开放状态
  • 对 Dell EMC Isilon (CLI) 的特权访问权限

获取 Google SecOps 注入身份验证文件

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 收集代理
  3. 下载数据注入身份验证文件
  4. 将文件安全地保存在将安装 Bindplane 代理的系统上。

获取 Google SecOps 客户 ID

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 个人资料
  3. 组织详细信息 部分复制并保存客户 ID

安装 Bindplane 代理

按照以下说明在 Windows 或 Linux 操作系统上安装 Bindplane 代理。

Windows 安装

  1. 以管理员身份打开命令提示符PowerShell
  2. 运行以下命令:

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sc query observiq-otel-collector
    

    该服务应显示为正在运行

Linux 安装

  1. 使用 root 或 sudo 权限打开终端。
  2. 运行以下命令:

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sudo systemctl status observiq-otel-collector
    

    该服务应显示为活跃 (正在运行)

其他安装资源

如需了解其他安装选项和问题排查,请参阅 Bindplane 代理安装指南

配置 Bindplane 代理以注入 syslog 并发送到 Google SecOps

找到配置文件

  • Linux

    sudo nano /etc/bindplane-agent/config.yaml
    
  • Windows

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

修改配置文件

  • config.yaml 的全部内容替换为以下配置:

    receivers:
        udplog:
            listen_address: "0.0.0.0:514"
    
    exporters:
        chronicle/dell_emc_nas:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: DELL_EMC_NAS
            raw_log_field: body
    
    service:
        pipelines:
            logs/dell_emc_nas_to_chronicle:
                receivers:
                    - udplog
                exporters:
                    - chronicle/dell_emc_nas
    

配置参数

替换以下占位符:

  • 接收器配置

    • listen_address:要监听的 IP 地址和端口:
      • 0.0.0.0 以监听所有接口(推荐)
      • 端口 514 是标准 syslog 端口(在 Linux 上需要 root;对于非 root 用户,请使用 1514
  • 导出器配置

    • creds_file_path:注入身份验证文件的完整路径:
      • Linux: /etc/bindplane-agent/ingestion-auth.json
      • Windows: C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • customer_id:从 Google SecOps 控制台复制的客户 ID
    • endpoint:区域级端点网址:
      • 美国malachiteingestion-pa.googleapis.com
      • 欧洲: europe-malachiteingestion-pa.googleapis.com
      • 亚洲: asia-southeast1-malachiteingestion-pa.googleapis.com
      • 如需查看完整列表,请参阅区域级端点

保存配置文件

  • 修改后,保存文件:
    • Linux:按 Ctrl+O,然后按 Enter,再按 Ctrl+X
    • Windows:依次点击文件 > 保存

重启 Bindplane 代理以应用更改

  • 如需在 Linux 中重启 Bindplane 代理,请运行以下命令:

    sudo systemctl restart observiq-otel-collector
    
    1. 验证服务正在运行:

      sudo systemctl status observiq-otel-collector
      
    2. 检查日志中的错误:

      sudo journalctl -u observiq-otel-collector -f
      
  • 如需在 Windows 中重启 Bindplane 代理,请选择以下选项之一:

    • 以管理员身份运行命令提示符或 PowerShell:

      net stop observiq-otel-collector && net start observiq-otel-collector
      
    • “服务”控制台:

      1. Win+R,输入 services.msc,然后按 Enter 键。
      2. 找到 observIQ OpenTelemetry Collector
      3. 右键点击并选择重启
      4. 验证服务正在运行:

        sc query observiq-otel-collector
        
      5. 检查日志中的错误:

        type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
        

为 OneFS 7.x 版配置 syslog

  1. 使用 CLI 登录 Dell Isilon
  2. 使用以下命令启用审核(将 zone_name 替换为实际区域名称):

    isi audit settings modify --protocol-auditing-enabled yes --audited-zones <zone_names>
    isi zone zones modify <zone_name> --audit-success create,delete,read,rename,set_security,write
    isi zone zones modify <zone_name> --audit-failure create,delete,read,rename,set_security,write
    isi zone zones modify <zone_name> --syslog-audit-events create,delete,read,rename,set_security,write
    
  3. 使用以下命令启用 syslog 转发:

    isi zone zones modify <zone_name> --syslog-forwarding-enabled=yes
    
  4. 使用 SSH 客户端连接到 Isilon 节点。

  5. 使用 vi 打开 syslog.conf 文件,该文件位于 /etc/mcp/templates 目录中:

    vi syslog.conf
    
  6. 找到 !audit_protocol 行并添加以下行(将 <bindplane-ip> 替换为实际 Bindplane 代理 IP 地址):

    *.* @<bindplane-ip>
    
  7. 保存 syslog.conf 文件:

    :wq
    

为 OneFS 8.0 和 8.1 版配置 syslog

  1. 使用 CLI 登录 Dell Isilon
  2. 使用以下命令启用审核(将 zone_name 替换为实际区域名称):

    isi audit settings global modify --protocol-auditing-enabled yes --audited-zones <zone_names>
    isi audit settings modify --zone <zone_name> --audit-success create,delete,read,rename,set_security,write
    isi audit settings modify --zone <zone_name> --audit-failure create,delete,read,rename,set_security,write
    isi audit settings modify --zone <zone_name> --syslog-audit-events create,delete,read,rename,set_security,write
    
  3. 使用以下命令启用 syslog 转发:

    isi audit settings modify --syslog-forwarding-enabled=yes --zone=<zone_name>
    
  4. 使用 SSH 客户端连接到 Isilon 节点。

  5. 使用 vi 打开 syslog.conf 文件,该文件位于 /etc/mcp/templates 目录中:

    vi syslog.conf
    
  6. 找到 !audit_protocol 行并添加以下行(将 <bindplane-ip> 替换为实际 Bindplane 代理 IP 地址):

    *.* @<bindplane-ip>
    
  7. 保存 syslog.conf 文件:

    :wq
    

为 OneFS 8.2 到 9.4 版配置 syslog

  1. 使用以下命令启用审核(将 <bindplane-ip> 替换为 Bindplane 代理 IP 地址,并将 zone_name 替换为实际区域名称):

    isi audit settings global modify --protocol-auditing-enabled yes --audited-zones <zone_name> --protocol-syslog-servers <bindplane-ip>
    isi audit settings modify --zone <zone_name> --audit-success create,delete,read,rename,set_security,write
    isi audit settings modify --zone <zone_name> --audit-failure create,delete,read,rename,set_security,write
    isi audit settings modify --zone <zone_name> --syslog-audit-events create,delete,read,rename,set_security,write
    
  2. 使用以下命令启用 syslog 转发:

    isi audit settings modify --syslog-forwarding-enabled yes --zone <zone_name>
    

UDM 映射表

日志字段 UDM 映射 逻辑
COMMAND target.process.command_line 原始日志字段 COMMAND 映射到此 UDM 字段。
PWD target.file.full_path message 不包含 command not allowed 时,原始日志字段 PWD 映射到此 UDM 字段。
USER principal.user.userid 原始日志字段 USER 映射到此 UDM 字段。
action_done 用于解析逻辑的临时变量。
application target.application 原始日志字段 application 映射到此 UDM 字段。
data 此字段未映射到 UDM。
description metadata.description 原始日志字段 description 映射到此 UDM 字段。此外,当 message 包含 command not allowed 时,command not allowed 会映射到此字段。
file_name target.file.full_path 原始日志字段 file_name 映射到此 UDM 字段,移除所有 `
intermediary_ip intermediary.ip 原始日志字段 intermediary_ip 映射到此 UDM 字段。
kv_data 用于解析逻辑的临时变量。
method 用于解析逻辑的临时变量。
pid target.process.pid 当原始日志字段 pid 不为空或 - 时,该字段会映射到此 UDM 字段。
resource_type target.resource.type 原始日志字段 resource_type 映射到此 UDM 字段。
src_host principal.hostname 原始日志字段 src_host 映射到此 UDM 字段。
src_ip principal.ip 原始日志字段 src_ip 映射到此 UDM 字段。您还可以使用 Grok 模式从 description 字段中提取该字段。
status 用于解析逻辑的临时变量。
ts metadata.event_timestamp.seconds 原始日志字段 ts 经过解析,其秒数值映射到此 UDM 字段。
user principal.user.userid 如果 USER 为空,则原始日志字段 user 映射到此 UDM 字段。
wsid principal.user.windows_sid 原始日志字段 wsid 映射到此 UDM 字段,移除 `
不适用 metadata.event_type 此 UDM 字段派生自解析器逻辑,基于 action_donemethodPWD 的值。它可以是以下各项之一:PROCESS_UNCATEGORIZEDPROCESS_OPENFILE_CREATIONFILE_OPENFILE_DELETIONFILE_MODIFICATIONFILE_UNCATEGORIZEDSTATUS_SHUTDOWN(默认)。
不适用 security_result.action 此 UDM 字段派生自解析器逻辑,基于 status 的值。它可以是 ALLOWBLOCK
不适用 security_result.summary 此 UDM 字段派生自解析器逻辑,并填充了 action_done 的值。
不适用 security_result.description 此 UDM 字段派生自解析器逻辑,方法是将 methodstatus 的值与 - 分隔符连接起来。
不适用 metadata.vendor_name 此 UDM 字段硬编码为 DELL
不适用 metadata.product_name 此 UDM 字段硬编码为 DELL_EMC_NAS
不适用 metadata.log_type 此 UDM 字段硬编码为 DELL_EMC_NAS

更新日志

查看此解析器的更新日志

需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。