diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-03-24 14:19:48 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-03-24 14:19:48 -0700 |
commit | 62727748e89f930899b9714110825e7abd7b45d2 (patch) | |
tree | 4a16e7dd8d4aac91aff2184efea4f7d6dbdb0219 /scripts | |
parent | 23104e6a58525f2dbd41152bf22615bb8d257278 (diff) | |
download | vyatta-cfg-62727748e89f930899b9714110825e7abd7b45d2.tar.gz vyatta-cfg-62727748e89f930899b9714110825e7abd7b45d2.zip |
startup config ordering
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/VyattaConfigLoad.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/VyattaConfigLoad.pm b/scripts/VyattaConfigLoad.pm index 9605017..c4ce8bd 100755 --- a/scripts/VyattaConfigLoad.pm +++ b/scripts/VyattaConfigLoad.pm @@ -30,6 +30,8 @@ use VyattaConfig; my $default_rank = 0; my %config_rank = ( 'qos-policy' => 110, + 'firewall' => 102, + 'service nat' => 101, 'interfaces' => 100, 'interfaces bridge' => 99, 'interfaces ethernet' => 98, @@ -38,6 +40,7 @@ my %config_rank = ( 'protocols static' => 85, 'service ssh' => 84, 'service telnet' => 83, + 'vpn' => 80, ); my @all_nodes = (); |