Hi,

I have the same problem with vlan interfaces:

```
» cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

##### loopback ################################################################
auto lo
iface lo inet loopback
iface lo inet6 loopback

##### physical adapter ########################################################
auto eth0
iface eth0 inet manual
iface eth0 inet6 manual


##### internal ethernet (vlan) #################################################
auto eth0.1
iface eth0.1 inet static
    address 10.xx.xx.xx
    netmask 255.255.255.0


#will use the requested prefix
iface eth0.1 inet6 manual


##### fritx.box ethernet (vlan) ################################################
auto eth0.2
iface eth0.2 inet static
    address 192.xx.xx.xx
    netmask 255.255.255.0
    network 192.xx.xx.xx
    broadcast 192.xx.xx.255
    gateway 192.xx.xx.xx
iface eth0.2 inet6 auto
    request_prefix 1
    mtu 1492
    dhcp 1
    accept_ra 2
```

Can you give me some what to do to not get the link local addresses only.



Thank You

Jan

Reply via email to