During boot, interfaces config with port mirroring to a tunnel i, and the config is not applied.
I have only seen this when you mirror to a tunnel interface.
Applies to both 1.3. and 1.4.
vyos@fw# reboot .. vyos@fw# load /config/config.boot vyos@fw# compare [interfaces ethernet] + eth0 { + address "10.0.0.1/24" + mirror { + egress "tun0" + ingress "tun0" + } + }
Config on my test device. Let me know if you need any more.
set interfaces ethernet eth0 address '10.0.0.1/24' set interfaces ethernet eth0 mirror egress 'tun0' set interfaces ethernet eth0 mirror ingress 'tun0' set interfaces ethernet eth1 address '10.0.1.1/24' set interfaces tunnel tun0 description 'GRE tunnel to IDS' set interfaces tunnel tun0 encapsulation 'gre' set interfaces tunnel tun0 remote '10.0.1.10' set interfaces tunnel tun0 source-address '10.0.1.1' set interfaces tunnel tun0 source-interface 'eth1'