Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Remove "not RFC1918 IPs" from examples. #3800

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions ansible_collections/arista/avd/examples/campus-fabric/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,16 @@ Details on this feature can be found [here](../../roles/eos_designs/docs/input-v

| Node | Management0 | Vlan10 |
| ------ | --------------- | --------- |
| SPINE1 | 172.100.100.101 | 10.10.10.2 |
| SPINE2 | 172.100.100.102 | 10.10.10.3 |
| LEAF1A | 172.100.100.103 | 10.10.10.6 |
| LEAF1B | 172.100.100.104 | 10.10.10.7 |
| LEAF2A | 172.100.100.105 | 10.10.10.8 |
| LEAF3A | 172.100.100.106 | 10.10.10.9 |
| LEAF3B | 172.100.100.107 | 10.10.10.10 |
| LEAF3C | 172.100.100.108 | 10.10.10.11 |
| LEAF3D | 172.100.100.109 | 10.10.10.12 |
| LEAF3E | 172.100.100.110 | 10.10.10.13 |
| SPINE1 | 172.16.100.101 | 10.10.10.2 |
| SPINE2 | 172.16.100.102 | 10.10.10.3 |
| LEAF1A | 172.16.100.103 | 10.10.10.6 |
| LEAF1B | 172.16.100.104 | 10.10.10.7 |
| LEAF2A | 172.16.100.105 | 10.10.10.8 |
| LEAF3A | 172.16.100.106 | 10.10.10.9 |
| LEAF3B | 172.16.100.107 | 10.10.10.10 |
| LEAF3C | 172.16.100.108 | 10.10.10.11 |
| LEAF3D | 172.16.100.109 | 10.10.10.12 |
| LEAF3E | 172.16.100.110 | 10.10.10.13 |

In Campus Networks, having a dedicated out-of-band management network in each IDF is uncommon. Therefore, you can easily disable configuring the Management0 interface and the management VRF by adding these variables to the `DC1_LEAFS.yml` group_vars.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.103/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.103/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -65,7 +65,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.103/24
ip address 172.16.100.103/24
```

### IP Name Servers
Expand Down Expand Up @@ -1469,14 +1469,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.104/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.104/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -65,7 +65,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.104/24
ip address 172.16.100.104/24
```

### IP Name Servers
Expand Down Expand Up @@ -1469,14 +1469,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.105/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.105/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -64,7 +64,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.105/24
ip address 172.16.100.105/24
```

### IP Name Servers
Expand Down Expand Up @@ -6835,14 +6835,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.106/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.106/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -65,7 +65,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.106/24
ip address 172.16.100.106/24
```

### IP Name Servers
Expand Down Expand Up @@ -2576,14 +2576,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.107/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.107/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -65,7 +65,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.107/24
ip address 172.16.100.107/24
```

### IP Name Servers
Expand Down Expand Up @@ -2576,14 +2576,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.108/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.108/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -62,7 +62,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.108/24
ip address 172.16.100.108/24
```

### IP Name Servers
Expand Down Expand Up @@ -2465,14 +2465,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.109/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.109/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -62,7 +62,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.109/24
ip address 172.16.100.109/24
```

### IP Name Servers
Expand Down Expand Up @@ -2465,14 +2465,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.110/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.110/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -62,7 +62,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.110/24
ip address 172.16.100.110/24
```

### IP Name Servers
Expand Down Expand Up @@ -2465,14 +2465,14 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |
| default | 0.0.0.0/0 | 10.10.10.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
ip route 0.0.0.0/0 10.10.10.1
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.101/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.101/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -66,7 +66,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.101/24
ip address 172.16.100.101/24
```

### IP Name Servers
Expand Down Expand Up @@ -616,13 +616,13 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
```

### Router OSPF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

| Management Interface | Description | Type | VRF | IP Address | Gateway |
| -------------------- | ----------- | ---- | --- | ---------- | ------- |
| Management0 | oob_management | oob | MGMT | 172.100.100.102/24 | 172.100.100.1 |
| Management0 | oob_management | oob | MGMT | 172.16.100.102/24 | 172.16.100.1 |

##### IPv6

Expand All @@ -66,7 +66,7 @@ interface Management0
description oob_management
no shutdown
vrf MGMT
ip address 172.100.100.102/24
ip address 172.16.100.102/24
```

### IP Name Servers
Expand Down Expand Up @@ -616,13 +616,13 @@ no ip routing vrf MGMT

| VRF | Destination Prefix | Next Hop IP | Exit interface | Administrative Distance | Tag | Route Name | Metric |
| --- | ------------------ | ----------- | -------------- | ----------------------- | --- | ---------- | ------ |
| MGMT | 0.0.0.0/0 | 172.100.100.1 | - | 1 | - | - | - |
| MGMT | 0.0.0.0/0 | 172.16.100.1 | - | 1 | - | - | - |

#### Static Routes Device Configuration

```eos
!
ip route vrf MGMT 0.0.0.0/0 172.100.100.1
ip route vrf MGMT 0.0.0.0/0 172.16.100.1
```

### Router OSPF
Expand Down
Loading
Loading