From 7c9c4df0931f96ac69e71ea697c33dba87ee34fe Mon Sep 17 00:00:00 2001 From: Ronan Hennessy Date: Wed, 13 Nov 2024 12:31:26 +0000 Subject: [PATCH] updating IP range --- modules/ibi-create-config-iso.adoc | 10 +++++----- modules/ibi-create-iso-for-bmh.adoc | 8 ++++---- modules/ibi-create-standalone-config-iso.adoc | 10 +++++----- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/modules/ibi-create-config-iso.adoc b/modules/ibi-create-config-iso.adoc index c0fe8bc328..4c8edb09d4 100644 --- a/modules/ibi-create-config-iso.adoc +++ b/modules/ibi-create-config-iso.adoc @@ -79,7 +79,7 @@ stringData: ipv4: enabled: true address: - - ip: 10.6.85.8 + - ip: 192.168.200.25 prefix-length: 24 dhcp: false <4> ipv6: @@ -87,13 +87,13 @@ stringData: dns-resolver: config: server: - - 10.6.73.2 <5> - - 10.6.73.4 + - 192.168.15.47 <5> + - 192.168.15.48 routes: config: <6> - destination: 0.0.0.0/0 metric: 150 - next-hop-address: 10.6.85.254 + next-hop-address: 192.168.200.254 next-hop-interface: ens1f0 table-id: 254 ---- @@ -102,7 +102,7 @@ stringData: <3> Specify the name of the interface on the host. The name of the interface must match the actual NIC name as shown in the operating system. To use your MAC address for NIC matching, set the `identifier` field to `mac-address`. <4> You must specify `dhcp: false` to ensure `nmstate` assigns the static IP address to the interface. <5> Specify one or more DNS servers that the system will use to resolve domain names. -<6> In this example, the default route is configured through the `ens1f0` interface to the next hop IP address `10.6.85.254`. +<6> In this example, the default route is configured through the `ens1f0` interface to the next hop IP address `192.168.200.254`. . Create the `BareMetalHost` and `Secret` resources: diff --git a/modules/ibi-create-iso-for-bmh.adoc b/modules/ibi-create-iso-for-bmh.adoc index e60fe1a6ad..1f1f060371 100644 --- a/modules/ibi-create-iso-for-bmh.adoc +++ b/modules/ibi-create-iso-for-bmh.adoc @@ -104,20 +104,20 @@ networkConfig: dhcp: false auto-dns: false address: - - ip: 10.6.85.8 + - ip: 192.168.200.25 prefix-length: 24 ipv6: enabled: false dns-resolver: config: server: - - 10.6.73.2 - - 10.6.73.4 + - 192.168.15.47 + - 192.168.15.48 routes: config: - destination: 0.0.0.0/0 metric: 150 - next-hop-address: 10.6.85.254 + next-hop-address: 192.168.200.254 next-hop-interface: ens1f0 ---- diff --git a/modules/ibi-create-standalone-config-iso.adoc b/modules/ibi-create-standalone-config-iso.adoc index 9165324e22..ed6ed6357c 100644 --- a/modules/ibi-create-standalone-config-iso.adoc +++ b/modules/ibi-create-standalone-config-iso.adoc @@ -61,7 +61,7 @@ networking: - cidr: 10.128.0.0/14 hostPrefix: 23 machineNetwork: - - cidr: 10.6.85.0/24 + - cidr: 192.168.200.0/24 networkType: OVNKubernetes serviceNetwork: - 172.30.0.0/16 @@ -162,20 +162,20 @@ networkConfig: dhcp: false auto-dns: false address: - - ip: 10.6.85.8 + - ip: 192.168.200.25 prefix-length: 24 ipv6: enabled: false dns-resolver: config: server: - - 10.6.73.2 - - 10.6.73.4 + - 192.168.15.47 + - 192.168.15.48 routes: config: - destination: 0.0.0.0/0 metric: 150 - next-hop-address: 10.6.85.254 + next-hop-address: 192.168.200.254 next-hop-interface: ens1f0 ----