From 043db54e07c217c82b7ac70025dadc3720bb6ff4 Mon Sep 17 00:00:00 2001 From: Arnau Verdaguer Date: Mon, 25 Nov 2024 16:59:34 +0100 Subject: [PATCH] [ovn-adoption] Fix typo on ovn-adoption docs iptable command was missing "-" on two iptables parameters on docs. --- docs_user/modules/proc_migrating-ovn-data.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_user/modules/proc_migrating-ovn-data.adoc b/docs_user/modules/proc_migrating-ovn-data.adoc index 42eddf829..3be3cab6b 100644 --- a/docs_user/modules/proc_migrating-ovn-data.adoc +++ b/docs_user/modules/proc_migrating-ovn-data.adoc @@ -109,8 +109,8 @@ $ oc wait --for=condition=Ready pod/ovn-copy-data --timeout=30s . If the podified internalapi cidr is different than the source internalapi cidr, add an iptables accept rule on the Controller nodes: + ---- -$ $CONTROLLER1_SSH sudo iptables I INPUT -s {PODIFIED_INTERNALAPI_NETWORK} p tcp -m tcp --dport 6641 -m conntrack --ctstate NEW -j ACCEPT -$ $CONTROLLER1_SSH sudo iptables I INPUT -s {PODIFIED_INTERNALAPI_NETWORK} p tcp -m tcp --dport 6642 -m conntrack --ctstate NEW -j ACCEPT +$ $CONTROLLER1_SSH sudo iptables -I INPUT -s {PODIFIED_INTERNALAPI_NETWORK} -p tcp -m tcp --dport 6641 -m conntrack --ctstate NEW -j ACCEPT +$ $CONTROLLER1_SSH sudo iptables -I INPUT -s {PODIFIED_INTERNALAPI_NETWORK} -p tcp -m tcp --dport 6642 -m conntrack --ctstate NEW -j ACCEPT ---- . Back up your OVN databases: