mrozentsvayg / vyos.att

AT&T RG bypass with VyOS (including IPv6)
MIT License
14 stars 5 forks source link

dhcp6c conf file #3

Open aficustree opened 4 years ago

aficustree commented 4 years ago

It looks like the rolling release of VyOS is making heavy changes to the ipv6 dhcp6 templates and it's messing with your template changes. Can you share the ultimate configuration of your conf file so I can see what's going wrong?

mrozentsvayg commented 4 years ago
# generated by dhcp.py
# man https://www.unix.com/man-page/debian/5/dhcp6c.conf/

interface eth3.0 {
    request domain-name-servers;
    request domain-name;
    send ia-na 0; # non-temporary address
    send ia-pd 1; # prefix delegation
};

id-assoc na 0 {
    # Identity association NA
};

id-assoc pd 1 {
    prefix ::/60 infinity;
    prefix-interface eth1 {
        sla-id 1;
        sla-len 4;
    };
};

(sorry for the delay, slipped through cracks)