Version in base suite: 1.0.4 Base version: ikvswitch_1.0.4 Target version: ikvswitch_1.0.4+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/i/ikvswitch/ikvswitch_1.0.4.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/i/ikvswitch/ikvswitch_1.0.4+deb13u1.dsc debian/changelog | 9 +++++++++ etc/ikvswitch/ikvswitch.conf | 2 +- usr/bin/ikvswitch-host-networking | 2 +- usr/bin/ikvswitch-setup | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff -Nru ikvswitch-1.0.4/debian/changelog ikvswitch-1.0.4+deb13u1/debian/changelog --- ikvswitch-1.0.4/debian/changelog 2025-04-11 12:07:58.000000000 +0000 +++ ikvswitch-1.0.4+deb13u1/debian/changelog 2025-08-03 20:54:49.000000000 +0000 @@ -1,3 +1,12 @@ +ikvswitch (1.0.4+deb13u1) trixie; urgency=medium + + * Write in /etc/sysctl.d/00-forward-internet.conf as sysctl.conf is gone in + Trixie. + * Use Trixie as default distro for the setup. + * Add || true when doing "ip link set down dev" if ipmi bridge. + + -- Thomas Goirand Sun, 03 Aug 2025 22:54:49 +0200 + ikvswitch (1.0.4) unstable; urgency=medium * Allow cl1-network-2 to adverize BGP. diff -Nru ikvswitch-1.0.4/etc/ikvswitch/ikvswitch.conf ikvswitch-1.0.4+deb13u1/etc/ikvswitch/ikvswitch.conf --- ikvswitch-1.0.4/etc/ikvswitch/ikvswitch.conf 2025-04-11 12:07:58.000000000 +0000 +++ ikvswitch-1.0.4+deb13u1/etc/ikvswitch/ikvswitch.conf 2025-08-03 20:54:49.000000000 +0000 @@ -148,7 +148,7 @@ ### Other params ### #################### # Name of the Debian release to use -DEBIAN_RELEASE=bookworm +DEBIAN_RELEASE=trixie # Debian mirror to use for debootstrap DEBIAN_MIRROR=http://deb.debian.org/debian diff -Nru ikvswitch-1.0.4/usr/bin/ikvswitch-host-networking ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-host-networking --- ikvswitch-1.0.4/usr/bin/ikvswitch-host-networking 2025-04-11 12:07:58.000000000 +0000 +++ ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-host-networking 2025-08-03 20:54:49.000000000 +0000 @@ -51,7 +51,7 @@ ########################### ### ipmi_sim networking ### ########################### - ip link set down dev ${HOST_IPMI_BRIDGE_NAME} + ip link set down dev ${HOST_IPMI_BRIDGE_NAME} || true ip addr delete ${HOST_IPMI_IP}/24 dev ${HOST_IPMI_BRIDGE_NAME} || true brctl delif ${HOST_IPMI_BRIDGE_NAME} ${VM_TAP_NIC} || true brctl delbr ${HOST_IPMI_BRIDGE_NAME} || true diff -Nru ikvswitch-1.0.4/usr/bin/ikvswitch-setup ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-setup --- ikvswitch-1.0.4/usr/bin/ikvswitch-setup 2025-04-11 12:07:58.000000000 +0000 +++ ikvswitch-1.0.4+deb13u1/usr/bin/ikvswitch-setup 2025-08-03 20:54:49.000000000 +0000 @@ -127,8 +127,8 @@ sed -i s/bgpd=no/bgpd=yes/ ${MOUNT_DIR}/etc/frr/daemons # make sure we're ip forwarding - sed -i 's/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/' ${MOUNT_DIR}/etc/sysctl.conf - sed -i 's/#net.ipv6.conf.all.forwarding=1/net.ipv6.conf.all.forwarding=1/' ${MOUNT_DIR}/etc/sysctl.conf + echo "net.ipv4.ip_forward=1" >${MOUNT_DIR}/etc/sysctl.d/00-forward-internet.conf + echo "net.ipv6.conf.all.forwarding=1" >>${MOUNT_DIR}/etc/sysctl.d/00-forward-internet.conf # Configure FRR and /etc/network/interfaces ###############################