- Docs »
- ipadm_addrprop – Manage IP address properties on Solaris/illumos systems
-
Edit on GitHub
You are reading an older version of the Ansible documentation. Use the version selection to the left if you want the latest stable released version.
ipadm_addrprop – Manage IP address properties on Solaris/illumos systems
- Modify IP address properties on Solaris/illumos systems.
Parameter |
Choices/Defaults |
Comments |
addrobj
-
/ required
|
|
Specifies the address object we want to manage.
aliases: nic, interface
|
property
-
/ required
|
|
Specifies the name of the address property we want to manage.
aliases: name
|
state
-
|
Choices:
present ←
- absent
- reset
|
Set or reset the property value.
|
temporary
boolean
|
|
Specifies that the address property value is temporary. Temporary values do not persist across reboots.
|
value
-
|
|
Specifies the value we want to set for the address property.
|
- name: Mark address on addrobj as deprecated
ipadm_addrprop: property=deprecated value=on addrobj=e1000g0/v6
- name: Set network prefix length for addrobj
ipadm_addrprop: addrobj=bge0/v4 name=prefixlen value=26
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
addrobj
string
|
always |
address object name
Sample:
bge0/v4
|
property
string
|
always |
property name
Sample:
deprecated
|
state
string
|
always |
state of the target
Sample:
present
|
temporary
boolean
|
always |
specifies if operation will persist across reboots
Sample:
True
|
value
string
|
when value is provided |
property value
Sample:
26
|
Authors
Hint
If you notice any issues in this documentation, you can edit this document to improve it.