Pascal Hambourg wrote: 
> Le 07/02/2019 à 10:15, Richard Hector a écrit :
> > > 
> > > # this one should hopefully configure via SLAAC
> > > iface ens3 inet6 auto
> > > 
> > > # this one is for my static stuff (using a ULA prefix)
> > > iface ens3 inet6 static
> > >    address 2001:db8::1/64
> > >    up ip -6 route add ...
> > >    up ip -6 route add ...
> > >    up ip -6 route add ...
> > > 
> > > But I don't get the SLAAC address. The only way I've managed to get the
> > > SLAAC address plus the static, is to have a single auto stanza like this:
> > > 
> > > iface ens3 inet6 auto
> > >    up ip -6 addr add 2001:db8::1/64 dev ens3
> > >    up ip -6 route add ...
> > >    up ip -6 route add ...
> > >    up ip -6 route add ...
> > > 
> > > Incidentally, that also gives me an autoconfigured address (based on the
> > > MAC) in the 2001:db8::/64 prefix, which I don't think I need.
> 
> Huh ? Isn't it the autoconfigured address you expect to get from an "auto"
> stanza ?

I bet there's at least a little confusion between

auto ens3

and

iface ens3 inet6 auto

the first one tells the system to bring ens3 up at boot time;
the second one tells the system what to do with ens3.


-dsr-

Reply via email to