summaryrefslogtreecommitdiff
path: root/scripts/ospfv3/vyatta-ospfv3.pl
blob: d7f6d548730d3a80f68a6ba4aa3312601a910325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/usr/bin/perl

# Author: Daniil Baturin <daniil@baturin.org>
# Date: 2010
# Description: OSPFv3 CLI backend

# **** License ****
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
# 
# This code was originally developed by Vyatta, Inc.
# Portions created by Vyatta are Copyright (C) 2006, 2007, 2008 Vyatta, Inc.
# All Rights Reserved.
# **** End License ****

use strict;
use warnings;

use Getopt::Long;
use NetAddr::IP::Lite;

use lib "/opt/vyatta/share/perl5/";
use Vyatta::Config;
use Vyatta::Quagga::Config;
use Vyatta::Misc;

my %quagga_commands = (
  'protocols' => {
    set => undef,
    del => undef
  },
  'protocols ospfv3' => {
    set => 'router ospf6',
    del => 'no router ospf6'
  },
  'protocols ospfv3 parameters' => {
    set => undef,
    del => undef
  },
  'protocols ospfv3 parameters router-id' => {
    set => 'router ospf6 ; router-id #5',
    del => undef
  },
  'protocols ospfv3 area' => {
    set => undef,
    del => undef
  },
  'protocols ospfv3 area var' => {
    set => undef,
    del => undef
  },
  'protocols ospfv3 area var range' => {
    set => undef,
    del => undef
  },
  'protocols ospfv3 area var range var' => {
    set => 'router ospf6 ; area #4 range #6',
    del => 'router ospf6 ; no area #4 range #6'
  },
  'protocols ospfv3 area var range var advertise' => {
    set => 'router ospf6 ; area #4 range #6 advertise',
    del => 'router ospf6 ; no area #4 range #6'
  },
  'protocols ospfv3 area var range var not-advertise' => {
    set => 'router ospf6 ; area #4 range #6 not-advertise',
    del => 'router ospf6 ; no area #4 range #6 not-advertise'
  },
  'protocols ospfv3 area var interface' => {
    set => 'router ospf6 ; no interface #6 area #4; interface #6 area #4',
    del => 'router ospf6 ; no interface #6 area #4',
    noerr => 'set'
  },
  'protocols ospfv3 area var import-list' => {
    set => 'router ospf6 ; area #4 import-list #6',
    del => 'router ospf6 ; no area #4 import-list #6'
  },
  'protocols ospfv3 area var export-list' => {
    set => 'router ospf6 ; area #4 export-list #6',
    del => 'router ospf6 ; no area #4 export-list #6'
  },
  'protocols ospfv3 area var filter-list' => {
    set => 'router ospf6 ; area #4 filter-list prefix #6',
    del => 'router ospf6 ; no area #4 filter-list prefix #6'
  },
  'protocols ospfv3 redistribute' => {
    set => undef,
    del => undef
  },
  'protocols ospfv3 redistribute connected' => {
    set => 'router ospf6 ; redistribute connected ?route-map',
    del => 'router ospf6 ; no redistribute connected'
  },
  'protocols ospfv3 redistribute kernel' => {
    set => 'router ospf6 ; redistribute kernel ?route-map',
    del => 'router ospf6 ; no redistribute kernel'
  },
  'protocols ospfv3 redistribute bgp' => {
    set => 'router ospf6 ; redistribute bgp ?route-map',
    del => 'router ospf6 ; no redistribute bgp'
  },
  'protocols ospfv3 redistribute ripng' => {
    set => 'router ospf6 ; redistribute ripng ?route-map',
    del => 'router ospf6 ; no redistribute ripng'
  },
  'protocols ospfv3 redistribute static' => {
    set => 'router ospf6 ; redistribute static ?route-map',
    del => 'router ospf6 ; no redistribute static'
  }
);

my ($main, $check_area, $area);

GetOptions(
  "main" => \$main,
  "check-area" => \$check_area,
  "area=s" => \$area
);

main()                     if ($main);
check_ospfv3_area($area)   if ($check_area);

exit 0;

sub main {
  # Create a Vyatta Quagga Config object initialized by commands mapping
  my $quagga_config = new Vyatta::Quagga::Config('protocols', \%quagga_commands);
  #$quagga_config->setDebugLevel('3');
  my @order = ('range', 'export-list', 'import-list', 'interface');
  $quagga_config->deleteConfigTreeRecursive('protocols ospfv3 area var ', undef, \@order) || die "exiting $?\n";
  $quagga_config->deleteConfigTreeRecursive('protocols ospfv3 parameters ') || die "exiting $?\n";
  $quagga_config->deleteConfigTreeRecursive('protocols ospfv3 redistribute ') || die "exiting $?\n";

  $quagga_config->setConfigTreeRecursive('protocols ospfv3 parameters ') || die "exiting $?\n";  # Priority 630
  $quagga_config->setConfigTreeRecursive('protocols ospfv3 redistribute ') || die "exiting $?\n";  # Priority 630
  $quagga_config->setConfigTreeRecursive('protocols ospfv3 area var ') || die "exiting $?\n";    # Priority 640
}

# Quagga ospf6d doesn't accept numeric area id, but requires dotted decimal. Bug 4172.
sub check_ospfv3_area {
    my $area = shift;

    if ( $area =~ m/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ ) {
        foreach my $octet ( $1, $2, $3, $4 ) {
            if ( ( $octet < 0 ) || ( $octet > 255 ) ) { exit 1; }
        }
        exit 0;
    }

    die "Invalid OSPFv3 area: $area\n";
}