收集 Cisco 无线安全管理 (WiSM) 日志

支持的语言:

本文档介绍了如何使用 Bindplane 将 Cisco 无线安全管理 (WiSM) 日志注入到 Google Security Operations。解析器会从 syslog 消息中提取字段,将其映射到统一数据模型 (UDM),并根据 cisco_mnemonic 字段对事件进行分类。它可处理各种事件类型,例如登录、退出、网络连接和状态更新,并提取相关信息,例如用户名、IP 地址、MAC 地址和安全详细信息。

准备工作

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

  • Google SecOps 实例
  • Windows 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • 如果通过代理运行,请确保防火墙端口处于开放状态
  • 对 Cisco 无线局域网控制器 (WLC) 的特权访问

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

  1. 登录 Google SecOps 控制台。
  2. 依次前往 SIEM 设置 > 收集代理
  3. 下载注入身份验证文件
    • 将文件安全地保存在将要安装 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
    

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
    

其他安装资源

如需了解其他安装选项,请参阅安装指南

配置 Bindplane 代理以注入 Syslog 并将其发送到 Google SecOps

  1. 访问配置文件:
    • 找到 config.yaml 文件。通常,它位于 Linux 上的 /etc/bindplane-agent/ 目录中或 Windows 上的安装目录中。
    • 使用文本编辑器(例如 nanovi 或记事本)打开该文件。
  2. 按如下方式修改 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_file_path: '/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
            log_type: 'CISCO_WSM'
            raw_log_field: body
            ingestion_labels:
    
    service:
        pipelines:
            logs/source0__chronicle_w_labels-0:
                receivers:
                    - udplog
                exporters:
                    - chronicle/chronicle_w_labels
    
    • 根据基础架构的需要替换端口和 IP 地址。
    • <customer_id> 替换为实际的客户 ID。
    • /path/to/ingestion-authentication-file.json 更新为获取 Google SecOps 提取身份验证文件部分中保存身份验证文件的路径。

重启 Bindplane 代理以应用更改

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

    sudo systemctl restart bindplane-agent
    
  • 如需在 Windows 中重启 Bindplane 代理,您可以使用服务控制台,也可以输入以下命令:

    net stop BindPlaneAgent && net start BindPlaneAgent
    

在 Cisco WiSM 上配置 Syslog

  1. 登录 Cisco 无线局域网控制器网页界面。
  2. 依次前往管理 > 日志 > 配置
  3. Syslog 服务器 IP 地址字段中输入 Bindplane 代理 IP 地址。
  4. 点击添加
  5. 提供以下配置详细信息:
    • Syslog 严重程度:选择 Informational
    • Syslog Facility:选择 Local Use 0
    • 缓冲日志级别:选择信息 - 严重程度 6
    • 控制台日志级别:选择 Informational - Severity level 6
    • 选中文件信息复选框以包含有关源文件的信息。
    • 选中 Proc Info(进程信息)复选框以包含进程信息。
    • 选中轨迹信息复选框以包含追溯信息。
  6. 点击应用
  7. 点击保存配置

UDM 映射表

日志字段 UDM 映射 逻辑
cisco_facility principal.resource.type 使用 grok 从 cisco_tag 字段中提取。
cisco_message metadata.description 原始日志中的原始消息。
cisco_tag metadata.product_event_type 原始日志中的标记,包含设备、严重程度和助记符。
database security_result.detection_fields.value 如果存在,则将键设置为“Database”。
hostname intermediary.hostname 如果存在。
intermediary_ip intermediary.ip 中间设备的 IP 地址。
principal_hostname principal.hostname 如果存在。
principal_ip principal.ip 如果存在。
principal_mac principal.mac 如果存在。格式为以英文冒号分隔的十六进制。
principal_port principal.port 如果存在。已转换为整数。
principal_process_id principal.process.pid 如果存在。
profile security_result.detection_fields.value 如果存在,则该键设置为“Profile”。
reason_message security_result.summary 如果存在。有时也用于 security_result.description
target_ip target.ip 如果存在。
target_mac target.mac 如果存在。
terminal target.hostname 如果存在。
tls_local_ip security_result.detection_fields.value 如果存在,则将密钥设置为“TLS local”。
tls_remote security_result.detection_fields.value 如果存在,则将该键设置为“TLS Remote”。
username principal.user.userid(或在退出事件中为 target.user.userid 如果存在。在某些情况下,由解析器逻辑设置为“MECHANISM_UNSPECIFIED”。对于由解析器逻辑生成的登录/退出登录事件,请设置为“MACHINE”。从批次 create_time 复制。由解析器逻辑根据 cisco_mnemonic 和其他字段确定。由解析器逻辑设置为“CISCO_WSM”。由解析器逻辑设置为“CISCO_WSM”。由解析器逻辑设置为“CISCO_WSM”。由解析器逻辑针对特定事件设置为“BROADCAST”。由解析器逻辑针对特定事件设置为“UDP”。如果存在。由解析器逻辑针对特定事件设置为“ALLOW”或“BLOCK”。由解析器逻辑针对特定事件设置为“AUTH_VIOLATION”。由解析器逻辑针对特定事件设置,有时使用 reason_message。由解析器逻辑从 cisco_severity 派生。由解析器逻辑从 cisco_severity 派生。由解析器逻辑针对特定事件设置,有时使用 reason_message

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