From 44434ee9fa0ec0bb152d386639cc099352940c9e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 9 Jun 2020 16:31:33 -0700 Subject: [PATCH] openqa/worker: tighten netmask for br0 tap bridge It shouldn't need anything but 10.0.2.*, and hopefully this will stop it interfering with the rest of the infra network... Signed-off-by: Adam Williamson --- roles/openqa/worker/files/ifcfg-br0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openqa/worker/files/ifcfg-br0 b/roles/openqa/worker/files/ifcfg-br0 index 1d068e5711..28dd86ecb4 100644 --- a/roles/openqa/worker/files/ifcfg-br0 +++ b/roles/openqa/worker/files/ifcfg-br0 @@ -2,7 +2,7 @@ DEVICETYPE='ovs' TYPE='OVSBridge' BOOTPROTO='static' IPADDR='10.0.2.2' -NETMASK='255.254.0.0' +NETMASK='255.255.254.0' DEVICE=br0 STP=on ONBOOT='yes'