diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-03-25 18:53:12 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-03-25 18:53:12 +0100 |
commit | 87ccafd06b897b63f847e6b47cf72b951b0ed223 (patch) | |
tree | feca824effe156095debaf72bcc95622793ec572 /interface-definitions | |
parent | e700bd3e22e080525e70ce560c0e48d41a80a9d2 (diff) | |
download | vyos-1x-87ccafd06b897b63f847e6b47cf72b951b0ed223.tar.gz vyos-1x-87ccafd06b897b63f847e6b47cf72b951b0ed223.zip |
T4319: "system ip(v6)" must run before any interface operation
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/system-ip.xml.in | 3 | ||||
-rw-r--r-- | interface-definitions/system-ipv6.xml.in | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/interface-definitions/system-ip.xml.in b/interface-definitions/system-ip.xml.in index 1fa63d517..b43100418 100644 --- a/interface-definitions/system-ip.xml.in +++ b/interface-definitions/system-ip.xml.in @@ -5,7 +5,8 @@ <node name="ip" owner="${vyos_conf_scripts_dir}/system-ip.py"> <properties> <help>IPv4 Settings</help> - <priority>400</priority> + <!-- must be before any interface, check /opt/vyatta/sbin/priority.pl --> + <priority>290</priority> </properties> <children> <node name="arp"> diff --git a/interface-definitions/system-ipv6.xml.in b/interface-definitions/system-ipv6.xml.in index 5ee7adf54..ff1080544 100644 --- a/interface-definitions/system-ipv6.xml.in +++ b/interface-definitions/system-ipv6.xml.in @@ -5,6 +5,7 @@ <node name="ipv6" owner="${vyos_conf_scripts_dir}/system-ipv6.py"> <properties> <help>IPv6 Settings</help> + <!-- must be before any interface, check /opt/vyatta/sbin/priority.pl --> <priority>290</priority> </properties> <children> |