community.network.icx_interface 模块 – 管理 Ruckus ICX 7000 系列交换机上的接口
注意
此模块是 community.network 集合 (版本 5.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.network
。
要在剧本中使用它,请指定: community.network.icx_interface
。
注意
community.network 集合已被弃用,并将从 Ansible 12 中移除。有关更多信息,请参阅 讨论主题。
已弃用
- 在以下版本中移除:
版本 6.0.0
- 原因:
此集合及其中的所有内容均未维护且已弃用。
- 替代方案:
未知。
概要
此模块提供 Ruckus ICX 设备上接口的声明式管理。
别名:network.icx.icx_interface
参数
参数 |
注释 |
---|---|
接口定义列表。 |
|
检查运行配置。这可以设置为环境变量。 模块将使用环境变量值(默认:True),除非通过将其指定为模块参数来覆盖它。 选项
|
|
在检查远程设备的操作状态之前等待的时间(秒)。此等待适用于操作状态参数,这些参数是值为 |
|
描述名称。 |
|
接口链路状态 选项
|
|
接口名称。 |
|
检查给定接口 可以使用以下子选项。 |
|
给定接口 |
|
连接给定接口 |
|
在电源线以太网 (PoE) 端口上启用内联电源。 |
|
范围是 0-4 基于给定接口 选项
|
|
启用/禁用给定接口 选项
|
|
范围是 1000-15400|30000mW。对于 PoH 端口,范围是 1000-95000mW 基于给定接口 |
|
范围是 1(最高)到 3(最低) 给定接口 选项
|
|
接口链路速度/双工 选项
|
|
接口配置的状态, 选项
|
|
为接口启用/禁用 STP 选项
|
|
检查运行配置。这可以设置为环境变量。 模块将使用环境变量值(默认:True),除非通过将其指定为模块参数来覆盖它。 选项
|
|
在检查远程设备的操作状态之前等待的时间(秒)。此等待适用于操作状态参数,这些参数是值为 默认值: |
|
描述名称。 |
|
接口链路状态 选项
|
|
接口名称。 |
|
检查给定接口 可以使用以下子选项。 |
|
给定接口 |
|
连接给定接口 |
|
在电源线以太网 (PoE) 端口上启用内联电源。 |
|
范围是 0-4 基于给定接口 选项
|
|
启用/禁用给定接口 默认为 false。 选项
|
|
范围是 1000-15400|30000mW。对于 PoH 端口,范围是 1000-95000mW 基于给定接口 |
|
范围是 1(最高)到 3(最低) 给定接口 选项
|
|
接口链路速度/双工 选项
|
|
接口配置的状态, 选项
|
|
为接口启用/禁用 STP 选项
|
|
备注
注意
针对 ICX 10.1 进行了测试。
有关使用 ICX 平台的信息,请参阅 ICX OS 平台选项指南。
示例
- name: Enable ethernet port and set name
community.network.icx_interface:
name: ethernet 1/1/1
description: interface-1
stp: true
enabled: true
- name: Disable ethernet port 1/1/1
community.network.icx_interface:
name: ethernet 1/1/1
enabled: false
- name: Enable ethernet port range, set name and speed
community.network.icx_interface:
name: ethernet 1/1/1 to 1/1/10
description: interface-1
speed: 100-full
enabled: true
- name: Enable poe. Set class
community.network.icx_interface:
name: ethernet 1/1/1
power:
by_class: 2
- name: Configure poe limit of interface
community.network.icx_interface:
name: ethernet 1/1/1
power:
limit: 10000
- name: Disable poe of interface
community.network.icx_interface:
name: ethernet 1/1/1
power:
enabled: false
- name: Set lag name for a range of lags
community.network.icx_interface:
name: lag 1 to 10
description: test lags
- name: Disable lag
community.network.icx_interface:
name: lag 1
enabled: false
- name: Enable management interface
community.network.icx_interface:
name: management 1
enabled: true
- name: Enable loopback interface
community.network.icx_interface:
name: loopback 10
enabled: true
- name: Add interface using aggregate
community.network.icx_interface:
aggregate:
- { name: ethernet 1/1/1, description: test-interface-1, power: { by_class: 2 } }
- { name: ethernet 1/1/3, description: test-interface-3}
speed: 10-full
enabled: true
- name: Check tx_rate, rx_rate intent arguments
community.network.icx_interface:
name: ethernet 1/1/10
state: up
tx_rate: ge(0)
rx_rate: le(0)
- name: Check neighbors intent arguments
community.network.icx_interface:
name: ethernet 1/1/10
neighbors:
- port: 1/1/5
host: netdev
返回值
公共返回值已在 此处 记录,以下是此模块特有的字段
关键 |
描述 |
---|---|
发送到设备的配置模式命令列表。 返回值:始终返回 示例: |
状态
此模块将在6.0.0版本中移除。[已弃用]
更多信息请参见 已弃用。