Am 14.02.2019 09:13, schrieb William Epler:
On Thu, Feb 14, 2019 at 8:35 AM Luca Bertoncello <[email protected]>
wrote:
Naja, so wie ich verstehe, sind die /56-Netze bei der Telekom nur für
Geschäftskunden... :(
Stimmt nicht.
Telekom Privatkunden-DSL rückt ohne weitere Nachfrage oder Aufpreis /56
heraus.
Im Geschäftskundentarif sind dann bei Bedarf gegen Aufpreis sowohl
IPv6 Subnetz als auch IPv4-Adresse fest.
OK, dann habe ich was verpasst...
Dein PI hinter dem Modem bleibt auf halben Wege stehen. Er läßt sich
zwar ein /64 Präfix per Router Advertisement geben, fordert aber kein
weiteres Subnetz ab, was er delegieren könnte.
Bei einer FritzBox klappt Prefix-Delegation problemlos.
Aktuell habe ich das in meinem dhcp6c.conf (ich nutze wide-dhcpv6-client
um die IPv6 zu bekommen):
------------------------
# Default dhpc6c configuration: it assumes the address is autoconfigured
using
# router advertisements.
profile default
{
information-only;
# request domain-name-servers;
# request domain-name;
# script "/etc/wide-dhcpv6/dhcp6c-script";
script "/etc/wide-dhcpv6/gotIPv6.sh";
};
interface dsl0 {
# Request Prefix Delegation on isp0, and give the received prefix id
0
send ia-pd 0;
};
# Use subnets from the prefix with id 0
id-assoc pd 0 {
prefix-interface intlan0 {
sla-id 0;
sla-len 8;
};
};
------------------------
Wenn ich also richtig verstehe, soll ich einfach das noch hinzufügen:
id-assoc pd 0 {
prefix-interface server0 {
sla-id 0;
sla-len 8;
};
};
und gleich habe ich eine neue IPv6 auf der Schnittstelle server0, ist es
korrekt?
Oder soll ich ein anderes Wert für "pd" und "sla-id" geben?
Danke
Luca Bertoncello
([email protected])