收集 IBM Tivoli 日志

支持的平台:

本文档介绍了如何使用 Bindplane 代理将 IBM Tivoli Monitoring 日志注入到 Google Security Operations。

IBM Tivoli Monitoring 是一套企业 IT 基础架构监控和管理套件,可生成系统监控事件、资源阈值、工作负载自动化和安全审核事件的日志。该系统以 syslog 和键值格式生成事件日志,用于捕获 HTTP 活动、SSH 会话、用户身份验证和网络连接。事件集成功能 (EIF) 可以将情况事件转发到 syslog 接收器。

准备工作

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

  • Google SecOps 实例
  • Windows Server 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • Bindplane 代理与 IBM Tivoli Monitoring 服务器之间的网络连接
  • 如果在代理后面运行,请确保防火墙端口已根据 Bindplane 代理要求打开
  • 对 IBM Tivoli Monitoring 环境 (TEMS) 的特权访问权限(具有管理员权限)

获取 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 /opt/observiq-otel-collector/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/ibm_tivoli:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: IBM_TIVOLI
            raw_log_field: body
            ingestion_labels:
                env: production
    
    service:
        pipelines:
            logs/tivoli_to_chronicle:
                receivers:
                    - udplog
                exporters:
                    - chronicle/ibm_tivoli
    

配置参数

替换以下占位符:

  • 接收器配置

    • udplog:基于协议的接收器类型:
      • udplog(适用于 UDP syslog)
      • tcplog(适用于 TCP syslog)
    • 0.0.0.0:要监听的 IP 地址:
      • 0.0.0.0 侦听所有接口(推荐)
      • 在某个接口上监听的特定 IP 地址
    • 514:要监听的端口号(例如 51415146514
  • 导出器配置

    • ibm_tivoli:导出器的描述性名称
    • creds_file_path:提取身份验证文件的完整路径:
      • Linux/etc/bindplane-agent/ingestion-auth.json
      • WindowsC:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • <customer_id>:上一步中的客户 ID
    • endpoint:区域端点网址:
      • 美国malachiteingestion-pa.googleapis.com
      • 欧洲europe-malachiteingestion-pa.googleapis.com
      • 亚洲asia-southeast1-malachiteingestion-pa.googleapis.com
      • 如需查看完整列表,请参阅区域级端点
    • IBM_TIVOLI:日志类型,与在 Chronicle 中显示的完全一致
    • ingestion_labels:YAML 格式的可选标签(例如 env: production
  • 流水线配置

    • tivoli_to_chronicle:流水线的描述性名称

保存配置文件

  • 修改后,保存文件:
    • Linux:依次按 Ctrl+OEnterCtrl+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 收集器
      3. 右键点击并选择重新启动
      4. 验证服务是否正在运行:

        sc query observiq-otel-collector
        
      5. 检查日志是否存在错误:

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

配置 IBM Tivoli Monitoring syslog 转发

  1. 使用管理员凭据登录 IBM Tivoli Monitoring 服务器。
  2. 打开 Tivoli Enterprise Monitoring Server (TEMS) 环境配置文件:

    /opt/IBM/ITM/config/<hostname>_ms_<instance>.config
    
  3. 配置事件集成功能 (EIF),以将情境事件转发到 Bindplane 代理。使用以下参数添加或修改 EIF 配置:

    设置
    ServerLocation Bindplane 代理主机(例如 192.168.1.100)的 IP 地址
    ServerPort 514(必须与 Bindplane 代理接收器端口匹配)
    EventFormat SYSLOG
  4. 重启 TEMS 服务以应用更改:

    /opt/IBM/ITM/bin/itmcmd server stop <instance>
    /opt/IBM/ITM/bin/itmcmd server start <instance>
    
  5. 通过检查 Bindplane 代理日志,验证是否正在接收 syslog 消息。

UDM 映射表

日志字段 UDM 映射 逻辑
机制 extensions.auth.mechanism 直接复制值
metadata.event_type 如果设置了 target_hostname 或 target_ip,则设置为“NETWORK_HTTP”;如果设置了 sshd 中的 username 或扩展程序中的 flag_type,则设置为“USER_UNCATEGORIZED”;如果 sshd 接受了密码,则设置为“USER_LOGIN”;如果 sshd 收到了断开连接请求或控制台具有 product_log_id,则设置为“NETWORK_CONNECTION”;如果 sshd 断开了连接,则设置为“USER_LOGOUT”;如果 has_principal 为 true,则设置为“STATUS_UPDATE”;否则设置为“GENERIC_EVENT”
product_event_type metadata.product_event_type 直接复制值
product_log_id、action_code metadata.product_log_id 如果 product_log_id 不为空,则为该值;否则为 action_code
协议、proto、msg1 network.application_protocol 如果协议与 HTTP 或 msg1 匹配 POST,则设置为“HTTP”;如果协议与 ssh 或 ssh2 匹配,则设置为“SSH”
method, msg1 network.http.method 如果方法中的值不为空,则为该值;否则,如果 msg1 与 POST 匹配,则为“POST”
网址 network.http.referral_url 如果不是“/”,则直接复制值
response_code network.http.response_code 转换为整数
代理 network.http.user_agent 直接复制值
代理 network.http.parsed_user_agent 使用 parseduseragent 进行转换
msg1 network.ip_protocol 如果 msg1 与 TCP/IP 匹配,则设置为“TCP”
session_id network.session_id 直接复制值
hashing_algo network.tls.client.supported_ciphers 直接复制值
tls_version network.tls.version 直接复制值
ServerName、hostname、dvc、host principal.asset.hostname 如果 ServerName 不为空,则为 ServerName 中的值;否则为 hostname;否则为 dvc;否则为 host
SourceAddress、src_ip、srcIp principal.asset.ip 如果 SourceAddress 不为空,则使用 SourceAddress 中的值;否则使用 src_ip;否则使用 srcIp
ServerName、hostname、host principal.hostname 如果 ServerName 不为空,则返回 ServerName 中的值;否则,返回主机名;否则,返回主机
SourceAddress、src_ip、srcIp principal.ip 如果 SourceAddress 不为空,则使用 SourceAddress 中的值;否则使用 src_ip;否则使用 srcIp
srcPort principal.port 转换为整数
source_file principal.process.file.full_path 直接复制值
SourceModuleName principal.resource.name 直接复制值
role_user principal.user.attribute.roles 合并为数组,名称来自 role_user
UserCN principal.user.group_identifiers 直接复制值
role_user principal.user.role_name 直接复制值
username, flag_type principal.user.userid 如果 flag_type 不为空且不是“Session”,则取自 flag_type,否则取自 username
ConnectionID security_result.about.labels 合并为具有键“ConnectionID”和来自 ConnectionID 的值的标签
结果、response_code security_result.action 如果 Outcome == "Success" 或 response_code 在 100-399 范围内,则设置为“ALLOW”;如果 Outcome == "Invalid credentials" 或 response_code 不在 100-399 范围内,则设置为“BLOCK”
desc, action, reason, msg1, extension, msg2 security_result.description 如果存在说明和原因,则设置为 desc + ": " + action + " - " + reason;如果不存在说明和原因,则设置为 action;否则设置为 action + " - " + reason;或者根据上下文设置为 msg1、扩展程序或 msg2
rule_name security_result.rule_name 直接复制值
摘要 security_result.summary 直接复制值
原始事件 target.application 直接复制的值(适用于 sshd)
dvc, target_hostname, host target.asset.hostname 如果 dvc 中的值不为空,则为该值;否则为 target_hostname;否则为 host
target_ip target.asset.ip 直接复制值
dvc, target_hostname, host target.hostname 如果 dvc 中的值不为空,则为该值;否则为 target_hostname;否则为 host
target_ip target.ip 直接复制值
pid target.process.pid 直接复制值
uid、用户名 target.user.userid 从消息中提取的 UID 值,或从 sshd 接受的密码的用户名中提取的值
metadata.product_name 设置为“IBM_TIVOLI”
metadata.vendor_name 设置为“IBM”

更新日志

查看相应解析器的更改日志

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