Code: Alles auswählen
interface ppp0 {
send ia-pd 0;
send rapid-commit;
send ia-na 1;
};
id-assoc na 1 { };
id-assoc pd 0 {
prefix-interface br0 {
sla-len 0;
sla-id 1;
};
};
profile default
{
request domain-name-servers;
request domain-name;
script "/etc/wide-dhcpv6/dhcp6c-script";
};
Wenn ich das richtig verstanden habe, geht das aber nur, wenn der Provider mir etwas größeres als ein /64 bereitstellt - was er offenbar aber nicht tut:
Code: Alles auswählen
client6_send: send solicit to ff02::1:2%ppp0
dhcp6_reset_timer: reset a timer on ppp0, state=SOLICIT, timeo=0, retrans=1010
client6_recv: receive advertise from fe80::1:ff:fe98:7623%ppp0 on ppp0
dhcp6_get_options: get DHCP option server ID, len 10
DUID: 00:03:00:01:...
dhcp6_get_options: get DHCP option client ID, len 14
DUID: 00:01:00:01:...
dhcp6_get_options: get DHCP option identity association, len 40
IA_NA: ID=1, T1=2700, T2=3600
copyin_option: get DHCP option IA address, len 24
copyin_option: IA_NA address: 2001:2:3:4:0:1:1:f pltime=5400 vltime=10800
dhcp6_get_options: get DHCP option IA_PD, len 41
IA_PD: ID=0, T1=2700, T2=3600
copyin_option: get DHCP option IA_PD prefix, len 25
copyin_option: IA_PD prefix: 2001:1:2:3::/64 pltime=5400 vltime=10800
Gehe ich ungeachtet dieses Problems richtig davon aus, dass folgende Konfiguration den einen /56 Prefix korrekt auf die VLANs 5 und 10 aufteilen würde?
Code: Alles auswählen
id-assoc pd 0 {
prefix-interface br0.5 {
sla-len 8;
sla-id 1;
};
prefix-interface br0.10 {
sla-len 8;
sla-id 2;
};
};