- Docs »
- pn_ospfarea - CLI command to add/remove ospf area to/from a vrouter.
-
You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
pn_ospfarea - CLI command to add/remove ospf area to/from a vrouter.
- Execute vrouter-ospf-add, vrouter-ospf-remove command.
- This command adds/removes Open Shortest Path First(OSPF) area to/from a virtual router(vRouter) service.
Parameter |
Choices/Defaults |
Comments |
pn_clipassword
required |
|
Login password.
|
pn_cliswitch
|
|
Target switch(es) to run the CLI on.
|
pn_cliusername
required |
|
Login username.
|
pn_ospf_area
required |
|
Specify the OSPF area number.
|
pn_prefix_listin
|
|
OSPF prefix list for filtering incoming packets.
|
pn_prefix_listout
|
|
OSPF prefix list for filtering outgoing packets.
|
pn_quiet
|
Default:
"yes"
|
Enable/disable system information.
|
pn_stub_type
|
Choices:
- none
- stub
- stub-no-summary
- nssa
- nssa-no-summary
|
Specify the OSPF stub type.
|
pn_vrouter_name
required |
|
Specify the name of the vRouter.
|
state
required |
Choices:
- present
- absent
- update
|
State the action to perform. Use 'present' to add ospf-area, 'absent' to remove ospf-area and 'update' to modify ospf-area.
|
- name: "Add OSPF area to vrouter"
pn_ospfarea:
state: present
pn_cliusername: admin
pn_clipassword: admin
pn_ospf_area: 1.0.0.0
pn_stub_type: stub
- name: "Remove OSPF from vrouter"
pn_ospf:
state: absent
pn_cliusername: admin
pn_clipassword: admin
pn_vrouter_name: name-string
pn_ospf_area: 1.0.0.0
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
changed
bool
|
always |
Indicates whether the CLI caused changes on the target.
|
command
str
|
always |
The CLI command run on the target node(s).
|
stderr
list
|
on error |
The set of error responses from the ospf command.
|
stdout
list
|
always |
The set of responses from the ospf command.
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
- Pluribus Networks (@amitsi)
Hint
If you notice any issues in this documentation you can edit this document to improve it.