标准的debian系统在
/etc/network/interface中
配置
auto eth0
iface eth0 inet6 dhcp
accept_ra 2
autoconf 1
就好了
但是prombox上面的network script似乎与debian系统不一样,dhcp不生效。
可以采用以下配置
auto vmbr0
iface vmbr0 inet static
address 192.168.33.15/24
gateway 192.168.33.1
bridge-ports eth0 eth1
bridge-stp off
bridge-fd 0
dns-nameservers 192.168.33.1
up dhclient -6 -nw -w vmbr0
down dhclient -6 -r vmbr0
iface vmbr0 inet6 auto
accept_ra 2
autoconf 1
如果还是不生效把dhclient -6 -nw -w vmbr0
写入到/etc/rc.local中