Re: IPv6 addresses

2019-02-08 Thread Pascal Hambourg
Le 08/02/2019 à 04:00, Richard Hector a écrit : However, it's starting to look like the router actually does advertise the ULA as well (I thought it didn't) AFAIK, a router does not advertise a prefix by itself, if it has not been configured to do so. It just appears that the idea of using

Re: IPv6 addresses

2019-02-07 Thread Richard Hector
On 8/02/19 8:30 AM, Dan Ritter wrote: >> 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; >

Re: IPv6 addresses

2019-02-07 Thread Richard Hector
On 8/02/19 8:08 AM, 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 >>>

Re: IPv6 addresses

2019-02-07 Thread Dan Ritter
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 > > >

Re: IPv6 addresses

2019-02-07 Thread Pascal Hambourg
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 ad

Re: IPv6 addresses

2019-02-07 Thread Richard Hector
On 7/02/19 10:05 PM, Richard Hector wrote: > Hi all, > > Tipped off by a comment on here, and confirmed I think by reading the > manpage, it seems I should be able to set multiple addresses on an > interface by using multiple iface stanzas for the same interface in > /etc/network/interfaces. > >