A segunda interface de VLAN é iniciada

1

Estou tentando configurar várias VLANs em uma conexão entre um servidor e um roteador. O servidor está executando o Arch Linux. Estou usando o netctl para configurá-los. O problema é que a segunda interface de VLAN (cronologicamente, não importa qual comece primeiro) está inativa. O que poderia estar causando isso? Aqui estão meus arquivos de configuração:

 ~   cat /etc/netctl/local
Description='VLAN 100 - Local network'
Interface=enp2s0.100
Connection=vlan
# The variable name is plural, but needs precisely one interface
BindsToInterfaces=enp2s0
VLANID=100
IP=static
Address="192.168.88.5/24"
Gateway="192.168.88.1"
DNS=("127.0.0.1 192.168.88.1 8.8.8.8 8.8.4.4")
Hostname="foo-server"
DNSDomain="local.foo.xyz"
DNSSearch="local.foo.xyz"
 ~  cat /etc/netctl/vlan-static
Description='VLAN 102 - Public IP'
Interface=enp2s0.102
Connection=vlan
# The variable name is plural, but needs precisely one interface
BindsToInterfaces=enp2s0
VLANID=102
IP=static
Address=('xxx.xxx.212.62/32' '172.27.1.2/30')
Routes=('default via 172.27.1.1 src xxx.xxx.212.62 dev enp2s0')
DNS=('172.27.1.1' '8.8.8.8')
    
por Duncan X Simpson 24.08.2017 / 19:25

0 respostas