Re: Where's the documentation?
Gerdriaan Mulder <[email protected]> Sun, 13 May 2018 16:28:28 +0200
| Newsgroups | gmane.linux.debian.devel.ipv6 |
|---|---|
| Message-ID | <CA+bgFZrn_OvbKEEzA-VARG+0csGBiGF-dMhD_smr4sxpbqujzA@mail.gmail.com> |
On 13 May 2018 at 16:25, Gerdriaan Mulder <[email protected]> wrote: > Another possibility is to use `up ip -6 addr add fec0::3/64` and `up > ip -6 route add default fec0::1` in the stanza of `inet eth1 inet > static`. That last bit should state "in the stanza of `iface eth1 inet static`". I see I missed a mandatory argument to `ip` as well. Like so: ``` inet eth1 iface static address 192.168.1.2/24 gateway 192.168.1.1 up ip -6 addr add fec0::3/64 dev eth1 up ip -6 route add default via fec0::1 ````