NETVIRT-1519: MIP entry duplicated in FIB
[netvirt.git] / vpnmanager / impl / src / main / yang / vpnmanager-config.yang
1 module vpn-config {
2     yang-version 1;
3     namespace "urn:opendaylight:netvirt:vpn:config";
4     prefix "vpn-config";
5
6     description
7         "Configuration for vpnmanager";
8
9     revision "2016-11-30" {
10         description
11                 "Initial revision";
12     }
13
14     container vpn-config {
15         config true;
16         leaf migrate-ip-cache-size {
17             description "Migrate IP cache size";
18             type uint64;
19             default 10000;
20         }
21         leaf ip-learn-timeout {
22             description "IP learning timeout value (unit - ms)";
23             type uint32;
24             default 2000;
25         }
26         leaf boot-delay-arp-learning {
27             description "Boot delay (in seconds) to be enforced for arp learning";
28             type uint32;
29             default 300;
30         }
31         leaf subnet-route-punt-timeout {
32             description "hard timeout value for learnt flows for subnet route punts (unit - seconds).
33                 To turn off the rate limiting and installation of learnt flows, it should be set to 0";
34             type uint32;
35             default 10;
36         }
37         leaf ipv6-nd-monitor-failure-threshold {
38             description "IPv6 ND monitor failure threshold";
39             type uint32;
40             default 2;
41         }
42         leaf ipv6-nd-monitor-interval {
43             description "IPv6 ND monitor interval (unit - secs)";
44             type uint32;
45             default 120;
46         }
47         leaf ipv6-nd-monitor-window {
48             description "IPv6 ND monitor window";
49             type uint32;
50             default 4;
51         }
52     }
53 }