From 45b522ac1640d22c5195406f54e12e9a31d9edb8 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Wed, 19 Mar 2025 18:04:39 +0100 Subject: [PATCH] tasks/cephfs/mount: use 192.168.144.0.0/20 for brxnet Most of wifi routers are using 192.168.0.0/16 network by default, as well as in many lab setup this is most popular network range.. If someone tries and establish libvirt based teuthology setup at home pc or laptop, for example, using downburst, they may experience unnecessary troubles with executing tests which use ceph-fuse tasks and cephfs/mount code. It is better to use some unique range to avoid conflicts and extra configuration of network environment. Fixes: https://tracker.ceph.com/issues/70817 Signed-off-by: Kyr Shatskyy (cherry picked from commit 460a62b3be6e29a7c83be3014b7cda70a1f3cc83) --- qa/tasks/cephfs/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/mount.py b/qa/tasks/cephfs/mount.py index 4ad80de84be9..6c4b0a8ca2b1 100644 --- a/qa/tasks/cephfs/mount.py +++ b/qa/tasks/cephfs/mount.py @@ -81,7 +81,7 @@ class CephFSMount(object): self._netns_name = None self.nsid = -1 if brxnet is None: - self.ceph_brx_net = '192.168.0.0/16' + self.ceph_brx_net = '192.168.144.0/20' else: self.ceph_brx_net = brxnet -- 2.47.3