현재 Debian 7에서 브리지를 구성하려고 합니다. IPv4를 위해 일하는 사람이 하나 있습니다 config
.
auto eth0
iface eth0 inet manual
auto br0
iface br0 inet static
address xx.xx.xx.131
netmask 255.255.255.192
gateway xx.xx.xx.129
bridge_ports eth0
bridge_stp off
bridge_fd 1
bridge_hello 2
bridge_maxage 12
iface br0 inet6 static
address xx:xx:xx::2
netmask 64
gateway xxxx::1
하지만 시작 시 인터페이스에는 IPv4 주소만 표시됩니다. 나도 추가해봤는데
up ip -6 addr add xx:xx:xx:2/64 dev br0
up ip -6 route add default via xxxx:1 dev br0
IPv4 구성으로. 성공도 없습니다. ip -6
재부팅 후 위에 나열된 명령을 실행 하면 IPv6가 제대로 작동합니다.
경고: 저는 Debian 7의 새로운 최소 설치를 실행 중이고 아직 아무것도 추가하지 않았습니다.
답변1
로그에 오류가 있나요?
나는 같은 문제가 있었고 다음 오류를 발견했습니다.
# journalctl -u networking
YYYYMMDD networking[416]: /etc/network/if-up.d/vzifup-post: 5: exec: /usr/sbin/vzifup-post: not found
YYYYMMDD networking[416]: run-parts: /etc/network/if-up.d/vzifup-post exited with return code 127
YYYYMMDD networking[416]: Failed to bring up eth0.
내 경우에는 apt purge vzctl
훌륭하게 작동합니다.