mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-26 20:31:27 -07:00
Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554)
* Remove 1.1.1.1 from *_config tests * remove from *_smoke and *_system * Miscellaneous other tests * Remove from module documentation as well * Remove from unit tests as well * Remove accidental duplication from rebase
This commit is contained in:
parent
91eb4a034e
commit
82dfa542c2
111 changed files with 1136 additions and 1136 deletions
|
@ -74,18 +74,18 @@ EXAMPLES = """
|
|||
junos_l3_interface:
|
||||
aggregate:
|
||||
- name: ge-0/0/1
|
||||
ipv4: 1.1.1.1
|
||||
ipv4: 192.0.2.1
|
||||
- name: ge-0/0/2
|
||||
ipv4: 2.2.2.2
|
||||
ipv4: 192.0.2.2
|
||||
ipv6: fd5d:12c9:2201:2::2
|
||||
|
||||
- name: Delete ipv4 address using aggregate
|
||||
junos_l3_interface:
|
||||
aggregate:
|
||||
- name: ge-0/0/1
|
||||
ipv4: 1.1.1.1
|
||||
ipv4: 192.0.2.1
|
||||
- name: ge-0/0/2
|
||||
ipv4: 2.2.2.2
|
||||
ipv4: 192.0.2.2
|
||||
state: absent
|
||||
"""
|
||||
|
||||
|
@ -96,7 +96,7 @@ diff:
|
|||
type: string
|
||||
sample: >
|
||||
[edit interfaces ge-0/0/1 unit 0 family inet]
|
||||
+ address 1.1.1.1/32;
|
||||
+ address 192.0.2.1/32;
|
||||
[edit interfaces ge-0/0/1 unit 0 family inet6]
|
||||
+ address fd5d:12c9:2201:1::1/128;
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue