vyos111:
tunnel tun113 {
local-ip 192.168.122.111
redirect tun114
remote-ip 192.168.122.113
}
tunnel tun114 {
local-ip 192.168.122.111
redirect tun113
remote-ip 192.168.122.114
}vyos113:
tunnel tun111 {
address 10.42.0.0/31
local-ip 192.168.122.113
remote-ip 192.168.122.111
}vyos114:
tunnel tun111 {
address 10.42.0.1/31
local-ip 192.168.122.114
remote-ip 192.168.122.111
}Expected outcome:
The config applies cleanly on all nodes and vyos113 and vyos114 can ping each other via tun111.
Current outcome:
The config on vyos111 fails to apply as it tries to apply the redirect on tun113 when the tun114 interface has not yet been created.