Skip to content

Commit 886f69a

Browse files
authored
Merge pull request #70457 from johnwilkins/HCIDOCS-syntax-fix
OSDOCS-9397: An extraneous character broke autonumbering
2 parents 65bb01a + 98287bc commit 886f69a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

modules/ipi-install-establishing-communication-between-subnets.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ In this procedure, the cluster spans two subnets:
3333
$ sudo su -
3434
----
3535

36-
.. Get the name of the network interface:
36+
.. Get the name of the network interface by running the following command:
3737
+
3838
[source,terminal]
3939
----
4040
# nmcli dev status
4141
----
4242

43-
.. Add a route to the second subnet (`192.168.0.0`) via the gateway:
44-
s+
43+
.. Add a route to the second subnet (`192.168.0.0`) via the gateway by running the following command:
44+
+
4545
[source,terminal]
4646
----
4747
# nmcli connection modify <interface_name> +ipv4.routes "192.168.0.0/24 via <gateway>"
@@ -56,7 +56,7 @@ Replace `<interface_name>` with the interface name. Replace `<gateway>` with the
5656
# nmcli connection modify eth0 +ipv4.routes "192.168.0.0/24 via 192.168.0.1"
5757
----
5858

59-
.. Apply the changes:
59+
.. Apply the changes by running the following command:
6060
+
6161
[source,terminal]
6262
----
@@ -81,21 +81,21 @@ Adjust the commands to match your actual interface names and gateway.
8181

8282
. Configure the second subnet to communicate with the first subnet:
8383

84-
.. Log in as `root` to a remote worker node:
84+
.. Log in as `root` to a remote worker node by running the following command:
8585
+
8686
[source,terminal]
8787
----
8888
$ sudo su -
8989
----
9090

91-
.. Get the name of the network interface:
91+
.. Get the name of the network interface by running the following command:
9292
+
9393
[source,terminal]
9494
----
9595
# nmcli dev status
9696
----
9797

98-
.. Add a route to the first subnet (`10.0.0.0`) via the gateway:
98+
.. Add a route to the first subnet (`10.0.0.0`) via the gateway by running the following command:
9999
+
100100
[source,terminal]
101101
----
@@ -111,7 +111,7 @@ Replace `<interface_name>` with the interface name. Replace `<gateway>` with the
111111
# nmcli connection modify eth0 +ipv4.routes "10.0.0.0/24 via 10.0.0.1"
112112
----
113113

114-
.. Apply the changes:
114+
.. Apply the changes by running the following command:
115115
+
116116
[source,terminal]
117117
----
@@ -120,7 +120,7 @@ Replace `<interface_name>` with the interface name. Replace `<gateway>` with the
120120
+
121121
Replace `<interface_name>` with the interface name.
122122

123-
.. Verify the routing table to ensure the route has been added successfully:
123+
.. Verify the routing table to ensure the route has been added successfully by running the following command:
124124
+
125125
[source,terminal]
126126
----
@@ -136,7 +136,7 @@ Adjust the commands to match your actual interface names and gateway.
136136

137137
. Once you have configured the networks, test the connectivity to ensure the remote worker nodes can reach the control plane nodes and the control plane nodes can reach the remote worker nodes.
138138

139-
.. From the control plane nodes in the first subnet, ping a remote worker node in the second subnet:
139+
.. From the control plane nodes in the first subnet, ping a remote worker node in the second subnet by running the following command:
140140
+
141141
[source,terminal]
142142
----
@@ -145,7 +145,7 @@ $ ping <remote_worker_node_ip_address>
145145
+
146146
If the ping is successful, it means the control plane nodes in the first subnet can reach the remote worker nodes in the second subnet. If you don't receive a response, review the network configurations and repeat the procedure for the node.
147147

148-
.. From the remote worker nodes in the second subnet, ping a control plane node in the first subnet:
148+
.. From the remote worker nodes in the second subnet, ping a control plane node in the first subnet by running the following command:
149149
+
150150
[source,terminal]
151151
----

0 commit comments

Comments
 (0)