The upgrade is failing with migration error and this part of the configuration is loaded:
vyos@xxxxx:~$ conf
WARNING: There was a config error on boot: saving the configuration now could overwrite data.
You may want to check and reload the boot config
[edit]
vyos@xxxxx# load
Loading configuration from 'config.boot'
Load complete. Use 'commit' to make changes effective.
[edit]
vyos@xxxxx# comp
[interfaces ethernet]
+ eth2 {
+ address "10.29.58.254/24"
+ hw-id "50:0b:00:0a:00:02"
+ }
+ eth3 {
+ address "10.29.59.254/24"
+ hw-id "50:0b:00:0a:00:03"
+ }
+ eth6 {
+ address "10.29.149.212/24"
+ hw-id "50:0b:00:0a:00:06"
+ }
+ eth7 {
+ address "10.74.50.134/24"
+ hw-id "50:0b:00:0a:00:07"
+ }
[system]
+ syslog {
+ global {
+ facility all {
+ level "info"
+ }
+ facility local7 {
+ level "debug"
+ }
+ }
+ host 10.29.113.213 {
+ facility all {
+ level "info"
+ }
+ }
+ host 10.29.113.213:9000 {
+ facility auth {
+ level "info"
+ }
+ }
+ host 10.29.113.213:9001 {
+ facility kern {
+ level "info"
+ }
+ }
+ host placeholder.isd.org {
+ facility all {
+ level "info"
+ }
+ }
+ }migrate log output:
/opt/vyatta/etc/config-migrate/migrate/system/21-to-22 - op: set path: ['system', 'sysctl', 'parameter', 'net.ipv6.conf.all.disable_ipv6', 'value'] value: 1 replace: True - op: delete path: ['system', 'sysctl', 'custom'] /opt/vyatta/etc/config-migrate/migrate/system/22-to-23 /opt/vyatta/etc/config-migrate/migrate/system/23-to-24 /opt/vyatta/etc/config-migrate/migrate/system/24-to-25 /opt/vyatta/etc/config-migrate/migrate/system/25-to-26 - op: rename old_path: ['system', 'syslog', 'global', 'facility', 'protocols'] new_path: ['system', 'syslog', 'global', 'facility', 'local7']
Interfaces output post upgrade:
vyos@xxxxx:~$ sh int Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down Interface IP Address MAC VRF MTU S/L Description ----------- ----------------- ----------------- ------- ----- ----- ------------- eth0 192.168.255.91/24 50:0b:00:0a:00:00 default 1500 u/u eth1 10.18.48.254/24 50:0b:00:0a:00:01 default 1500 u/u eth2 10.19.58.254/24 50:0b:00:0a:00:02 default 1500 A/D eth3 10.19.59.254/24 50:0b:00:0a:00:03 default 1500 A/D eth4 10.19.60.254/24 50:0b:00:0a:00:04 default 1500 u/u eth5 10.19.67.254/24 50:0b:00:0a:00:05 default 1500 u/u eth6 10.19.149.212/24 50:0b:00:0a:00:06 default 1500 A/D eth7 10.64.50.134/24 50:0b:00:0a:00:07 default 1500 A/D lo 127.0.0.1/8 00:00:00:00:00:00 default 65536 u/u
Interface issue is sorted by deleting the sysctl config:
delete system sysctl custom net.ipv6.conf.all.disable_ipv6 value '1'
Attached the config file.