Skip to content

Commit 0187d46

Browse files
authored
Rocky9: Add section on routing rules (#788)
1 parent 44ce4d8 commit 0187d46

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

doc/source/operations/rocky-linux-9.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,30 @@ Make the following changes to your Kayobe configuration:
8686
This change does not need to be applied before migrating to Rocky Linux 9, but it should cause no harm to do so.
8787
Note that this will not affect existing VMs, only newly created VMs.
8888

89+
Routing rules
90+
-------------
91+
92+
Routing rules referencing tables by name may need adapting to be compatible with NetworkManager
93+
e.g:
94+
95+
.. code-block:: yaml
96+
97+
undercloud_prov_rules:
98+
- from {{ internal_net_name | net_cidr }} table ironic-api
99+
100+
will need to be updated to use numeric IDs:
101+
102+
.. code-block:: yaml
103+
104+
undercloud_prov_rules:
105+
- from {{ internal_net_name | net_cidr }} table 1
106+
107+
The error from NetworkManager was:
108+
109+
.. code-block:: shell
110+
111+
[1697192659.9611] keyfile: ipv4.routing-rules: invalid value for "routing-rule1": invalid value for "table"
112+
89113
Prerequisites
90114
=============
91115

0 commit comments

Comments
 (0)