community.proxmox.proxmox_node_network_info module – Retrieve information about Proxmox VE node network interfaces
Note
This module is part of the community.proxmox collection (version 1.5.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.proxmox.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.proxmox.proxmox_node_network_info.
New in community.proxmox 1.4.0
Synopsis
Retrieve information about network interfaces on Proxmox VE nodes.
This module does not make any changes to the system.
Requirements
The below requirements are needed on the host that executes this module.
proxmoxer >= 2.0
requests
Parameters
Parameter |
Comments |
|---|---|
Specify the target host of the Proxmox VE cluster. Uses the |
|
Specify the password to authenticate with. Uses the |
|
Specify the target port of the Proxmox VE cluster. Uses the |
|
Specify the token ID. Uses the |
|
Specify the token secret. Uses the |
|
Specify the user to authenticate with. Uses the |
|
Whether to check for pending network configuration changes. When enabled, the module will return only information about any staged changes that are waiting to be applied. When disabled (default), the module will return network interface information. This parameter cannot be used together with Choices:
|
|
Name of a specific network interface to retrieve information for. If not specified, information for all interfaces will be returned. |
|
Filter results by interface type. Choices:
|
|
The Proxmox node to retrieve network interface information from. |
|
If This should only be used on personally controlled sites using self-signed certificates. Uses the Choices:
|
Attributes
Attribute |
Support |
Description |
|---|---|---|
Action group: community.proxmox.proxmox |
Use |
|
Support: full Check mode is fully supported. |
Can run in |
|
Support: none This is an info module and does not make changes. |
Will return details on what has changed (or possibly needs changing in |
See Also
See also
- community.proxmox.proxmox_node_network
Manage network interfaces on Proxmox nodes.
- Proxmox Network Configuration
Proxmox VE network configuration documentation.
- Proxmox API Documentation
Proxmox VE API documentation.
Examples
- name: Get all network interfaces on a node
community.proxmox.proxmox_node_network_info:
api_host: proxmox.example.com
api_user: root@pam
api_password: secret
node: pve01
- name: Get information about a specific network interface
community.proxmox.proxmox_node_network_info:
api_host: proxmox.example.com
api_user: root@pam
api_password: secret
node: pve01
iface: vmbr0
- name: Get all bridge interfaces on a node
community.proxmox.proxmox_node_network_info:
api_host: proxmox.example.com
api_user: root@pam
api_password: secret
node: pve01
iface_type: bridge
- name: Check only for pending changes
community.proxmox.proxmox_node_network_info:
api_host: proxmox.example.com
api_user: root@pam
api_password: secret
node: pve01
check_changes: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
Whether there are any pending network configuration changes Returned: success, when check_changes is true Sample: |
|
Pending network configuration changes Returned: success, when check_changes is true Sample: |
|
List of network interfaces on the node Returned: success, when check_changes is false or not specified Sample: |