-
Notifications
You must be signed in to change notification settings - Fork 0
/
storm_shut.py
126 lines (108 loc) · 4.8 KB
/
storm_shut.py
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
#!/usr/bin/env python
#
# Copyright (c) 2016, Arista Networks, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# Neither the name of Arista Networks nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ARISTA NETWORKS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
import re, time, os, sys, Logging
from os import stat
from jsonrpclib import Server
from os.path import abspath
from stat import ST_SIZE
from threading import Timer
import argparse
# Accept argument to define time in munutes before interface re-acvtivates (0 - default, 24hr max)
parser = argparse.ArgumentParser()
parser.add_argument("hold_down_timer", type=int, help="Hold-down timer to re-enable interface. \
Value = 0 - 1440 minutes. Default = 0 (Never enable)", default=0, nargs='?')
args = parser.parse_args()
if args.hold_down_timer > 1440:
parser.error("Out of range, 0 - 1440 minutes (24hrs)")
hold_down = args.hold_down_timer
#print "Hold-down timer = ", hold_down, "minutes"
switch = Server( "unix:/var/run/command-api.sock" )
# What log file to watch
file = "/var/log/messages"
# What line in the log to match on
expression = ".*STORMCONTROL_DISCARDS.*"
# Define Log
Logging.logD( id="STORMCONTROL_INT_SHUT",
severity=Logging.logInfo,
format="%s",
explanation="Message to indicate that the script has caught an event",
recommendedAction=Logging.NO_ACTION_REQUIRED
)
class LogTail:
def __init__(self, logfile, expression):
self.expression = expression
self.logfile = abspath(logfile)
self.f = open(self.logfile,"r")
file_len = stat(self.logfile)[ST_SIZE]
self.f.seek(file_len)
self.pos = self.f.tell()
def _reset(self):
self.f.close()
self.f = open(self.logfile, "r")
self.pos = self.f.tell()
# Method to reactivate interface after hold-down timer expiry
def Hold_down_act(self, sc_int):
commands = 'configure', 'interface ' + sc_int, 'no shutdown'
self.resp = switch.runCmds(1, commands)
print sc_int + " enabled due to storm control timer expiry"
Logging.log(STORMCONTROL_INT_SHUT, "Hold-down timer expiry, interface " + sc_int + " reactivated")
# Look for new entries in the log file
def tail(self):
while 1:
self.pos = self.f.tell()
line = self.f.readline()
if not line:
if stat(self.logfile)[ST_SIZE] < self.pos:
self._reset()
else:
time.sleep(1)
self.f.seek(self.pos)
else:
# Look for a matching line
if re.match(self.expression, line, re.M|re.I):
# Split out each word in the line
words = line.split()
# Slice list for Ethernet interface that has active Storm Control Policer
sc_int = words[12]
sc_int = sc_int[:-1]
Logging.log(STORMCONTROL_INT_SHUT, "Storm control triggered interface " + sc_int + " shutdown")
# Shutdown interface and start timer to re-enable if non-zero value
commands = 'configure', 'interface ' + sc_int, 'shutdown'
resp = switch.runCmds(1, commands)
print sc_int + " disabled due to storm control violation"
if hold_down >= 1:
t = Timer(60.0*hold_down, self.Hold_down_act, [sc_int])
t.start()
# Run
tail = LogTail(file, expression)
tail.tail()