forked from snabbco/snabb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalarms.lua
20 lines (19 loc) · 850 Bytes
/
alarms.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module(..., package.seeall)
alarms = {
[{alarm_type_id='arp-resolution'}] = {
perceived_severity = 'critical',
alarm_text =
'Make sure you can resolve external-interface.next-hop.ip address '..
'manually. If it cannot be resolved, consider setting the MAC '..
'address of the next-hop directly. To do it so, set '..
'external-interface.next-hop.mac to the value of the MAC address.',
},
[{alarm_type_id='ndp-resolution'}] = {
perceived_severity = 'critical',
alarm_text =
'Make sure you can resolve internal-interface.next-hop.ip address '..
'manually. If it cannot be resolved, consider setting the MAC '..
'address of the next-hop directly. To do it so, set '..
'internal-interface.next-hop.mac to the value of the MAC address.',
},
}