From 6fdf07fff14336080cc629025455fd75f65682ed Mon Sep 17 00:00:00 2001 From: Pavel Cahyna Date: Thu, 24 Aug 2017 16:39:27 +0200 Subject: [PATCH] doc: use proper reserved IPv4 addresses for documentation, according to RFC 5737 This way one will be able to reliably detect when the example playbook was forgotten to be upated with correct addresses, as the RFC 5737 addresses are never used in production (the original RFC 1918 ones often are). https://github.com/linux-system-roles/network/issues/5 --- README.md | 6 +++--- examples/bond-with-vlan.yml | 2 +- examples/bridge-with-vlan.yml | 2 +- examples/eth-with-vlan.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 00f99aa..051efd1 100644 --- a/README.md +++ b/README.md @@ -251,8 +251,8 @@ network_connections: gateway6: 2001:db8::1 address: - - 192.168.5.3/24 - - 10.0.10.3/16 + - 192.0.2.3/24 + - 198.51.100.3/26 - 2001:db8::80/7 ``` @@ -349,7 +349,7 @@ network_connections: vlan_id: 6 ip: address: - - 192.168.10.5/24 + - 192.0.2.5/24 auto6: no ``` diff --git a/examples/bond-with-vlan.yml b/examples/bond-with-vlan.yml index d120f13..736882c 100644 --- a/examples/bond-with-vlan.yml +++ b/examples/bond-with-vlan.yml @@ -31,7 +31,7 @@ vlan_id: 100 ip: address: - - "192.168.174.{{ network_iphost }}/24" + - "192.0.2.{{ network_iphost }}/24" roles: - network diff --git a/examples/bridge-with-vlan.yml b/examples/bridge-with-vlan.yml index ce48443..78d21cf 100644 --- a/examples/bridge-with-vlan.yml +++ b/examples/bridge-with-vlan.yml @@ -29,7 +29,7 @@ vlan_id: 100 ip: address: - - "192.168.174.{{ network_iphost }}/24" + - "192.0.2.{{ network_iphost }}/24" roles: - network diff --git a/examples/eth-with-vlan.yml b/examples/eth-with-vlan.yml index d269886..d9fc03e 100644 --- a/examples/eth-with-vlan.yml +++ b/examples/eth-with-vlan.yml @@ -21,7 +21,7 @@ vlan_id: 100 ip: address: - - "192.168.174.{{ network_iphost }}/24" + - "192.0.2.{{ network_iphost }}/24" roles: - network