From 8c4bc18be35438cb59b75c8b30d9788ff2061979 Mon Sep 17 00:00:00 2001 From: Sally O'Malley Date: Sat, 6 Feb 2021 08:45:36 -0500 Subject: [PATCH] update iptables call with sudo --- docs/dev/libvirt/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/libvirt/README.md b/docs/dev/libvirt/README.md index bb0bdfe212e..83d044f30b0 100644 --- a/docs/dev/libvirt/README.md +++ b/docs/dev/libvirt/README.md @@ -189,7 +189,7 @@ Ensure the cluster IP range does not overlap your `virbr0` IP address. #### iptables ```sh -iptables -I INPUT -p tcp -s 192.168.126.0/24 -d 192.168.122.1 --dport 16509 -j ACCEPT -m comment --comment "Allow insecure libvirt clients" +sudo iptables -I INPUT -p tcp -s 192.168.126.0/24 -d 192.168.122.1 --dport 16509 -j ACCEPT -m comment --comment "Allow insecure libvirt clients" ``` #### Firewalld