Can't get ipv6 address by dhcp for vmbr0

chineseswish

New Member
Nov 12, 2024
18
0
1
After upgrade to new version,I can't obtain ipv6 dhcp address again.How do it in the 9.0.11?

I try setup /etc/network/interfaces :
iface vmbr0 inet6 dhcp
Problem still exists.
I try use dhclient -6 vmbr0 and success.
I setup ipv6 address static

Code:
iface vmbr0 inet manual
        address 192.168.3.86/24
        gateway 192.168.3.1
        bridge-ports enp6s0
        bridge-stp off
        bridge-fd 0
        mtu 9000
 
Install "apt install isc-dhcp-client" should fix it.

 
Install "apt install isc-dhcp-client" should fix it.

Thanks for you help.I already install it but no ipv6 address assigned.

I current add a script use cron at boot to fix this issue.But I want a simple solution.
Code:
#!/bin/bash
until ip link show vmbr0 | grep "state UP" > /dev/null; do
        sleep 1
done
sudo dhclient -6 vmbr0