inspur.ispim.edit_m6_log_setting 模块 – 设置 bmc 系统和审计日志设置

注意

此模块是 inspur.ispim 集合(版本 2.2.3)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install inspur.ispim。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。

要在 playbook 中使用它,请指定:inspur.ispim.edit_m6_log_setting

inspur.ispim 1.3.0 中的新增功能

概要

  • 在浪潮服务器上设置 bmc 系统和审计日志设置。

  • 只有 M6 型号支持此功能。

要求

在执行此模块的主机上需要以下要求。

  • Python 3.7+

  • inspursmsdk

参数

参数

注释

host

字符串

指定用于通过指定传输连接到远程设备的 DNS 主机名或地址。host 的值用作传输的目标地址。

host_tag

字符串

系统日志主机标签,当 status=enable 时设置。

选项

  • "HostName"

  • "SerialNum"

  • "AssertTag"

level

字符串

事件级别,当 status=enable 时设置。

选项

  • "Critical"

  • "Warning"

  • "Info"

log_type

字符串

远程日志类型,当 server_id 不为 none 时设置。

选项

  • "idl"

  • "audit"

  • "both"

password

字符串

指定用于验证与远程设备连接的密码。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

protocol_type

字符串

协议类型,当 status=enable 时设置。

选项

  • "UDP"

  • "TCP"

provider

字典

包含连接详细信息的字典对象。

host

字符串

指定用于通过指定传输连接到远程设备的 DNS 主机名或地址。host 的值用作传输的目标地址。

password

字符串

指定用于验证与远程设备连接的密码。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

username

字符串

配置用于验证与远程设备连接的用户名。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

server_addr

字符串

服务器地址,当 server_id 不为 none 时设置。

server_id

整数

Syslog 服务器 ID,当 status=enable 时设置。

选项

  • 0

  • 1

  • 2

  • 3

server_port

整数

服务器地址,当 server_id 不为 none 时设置。

status

字符串

系统日志状态。

选项

  • "enable"

  • "disable"

test

布尔值

测试远程日志设置,当 server_id 不为 none 时设置。

选项

  • false ← (默认)

  • true

username

字符串

配置用于验证与远程设备连接的用户名。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

说明

注意

  • 不支持 check_mode

示例

- name: Edit log setting test
  hosts: ism
  connection: local
  gather_facts: no
  vars:
    ism:
      host: "{{ ansible_ssh_host }}"
      username: "{{ username }}"
      password: "{{ password }}"

  tasks:

  - name: "Edit bmc system log setting"
    inspur.ispim.edit_m6_log_setting:
      status: "disable"
      provider: "{{ ism }}"

  - name: "Edit bmc audit log setting"
    inspur.ispim.edit_m6_log_setting:
      status: "enable"
      host_tag: "HostName"
      level: "Info"
      protocol_type: "TCP"
      server_id: 0
      server_addr: "100.2.126.11"
      server_port: 514
      log_type: "both"
      provider: "{{ ism }}"

  - name: "test bmc audit log"
    inspur.ispim.edit_m6_log_setting:
      server_id: 0
      test: True
      provider: "{{ ism }}"

返回值

常见的返回值在 这里 记录,以下是此模块特有的字段

描述

changed

布尔值

检查设备上是否进行了更改。

返回: 始终

message

字符串

模块执行后返回的消息。

返回: 始终

state

字符串

模块执行后的状态。

返回: 始终

作者

  • WangBaoshan (@ispim)