community.network.ipadm_ifprop 模块 – 管理 Solaris/illumos 系统上的 IP 接口属性。
注意
此模块是 community.network 集合(版本 5.1.0)的一部分。
如果您正在使用 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.network
。
要在剧本中使用它,请指定:community.network.ipadm_ifprop
。
注意
community.network 集合已弃用,将从 Ansible 12 中删除。有关更多信息,请参阅讨论帖子。
已弃用
- 在以下版本中删除:
版本 6.0.0
- 原因:
此集合及其中的所有内容均未维护且已弃用。
- 替代方案:
未知。
概要
修改 Solaris/illumos 系统上的 IP 接口属性。
别名:network.illumos.ipadm_ifprop
参数
参数 |
注释 |
---|---|
指定我们要管理的 IP 接口。 |
|
指定我们要管理的属性的名称。 |
|
指定我们要管理属性的协议。 |
|
设置或重置属性值。 选项
|
|
指定属性值是临时的。临时属性值不会在重启后保留。 选项
|
|
指定我们要为属性设置的值。 |
示例
- name: Allow forwarding of IPv4 packets on network interface e1000g0
community.network.ipadm_ifprop: protocol=ipv4 property=forwarding value=on interface=e1000g0
- name: Temporarily reset IPv4 forwarding property on network interface e1000g0
community.network.ipadm_ifprop: protocol=ipv4 interface=e1000g0 temporary=true property=forwarding state=reset
- name: Configure IPv6 metric on network interface e1000g0
community.network.ipadm_ifprop: protocol=ipv6 nic=e1000g0 name=metric value=100
- name: Set IPv6 MTU on network interface bge0
community.network.ipadm_ifprop: interface=bge0 name=mtu value=1280 protocol=ipv6
返回值
常见的返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
我们要在其上设置属性的接口名称 返回:总是 示例: |
|
属性的名称 返回:总是 示例: |
|
属性的协议 返回:总是 示例: |
|
目标的状态 返回:总是 示例: |
|
属性的值 返回:当提供值时 示例: |
状态
此模块将在版本 6.0.0 中删除。[已弃用]
有关更多信息,请参阅已弃用。