-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlisp-log-packets.py
138 lines (127 loc) · 3.98 KB
/
lisp-log-packets.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
127
128
129
130
131
132
133
134
135
136
137
138
# -----------------------------------------------------------------------------
#
# Copyright 2013-2019 lispers.net - Dino Farinacci <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# -----------------------------------------------------------------------------
#
# lisp-log-packets.py
#
# Set the following commands in the local system:
#
# lisp debug {
# itr = yes
# etr = yes
# }
# lisp xtr-parameters {
# data-plane-logging = yes
# }
#
# By using the lispapi. The command will toggle the setting. When environment
# variable LISP_PW is set, the value is the password that is used to connect.
# to the LISP API.
#
# Usage: python lisp-log-packets.py [show] [force] [<api-port>] [help]
#
# Note when <api-port> is negative, it is passed into the lispapi to tell it
# to use http versus https. This port number should be the same value as
# passed on the ./RESTART-LISP command.
#
#------------------------------------------------------------------------------
from __future__ import print_function
import lispapi
import sys
import os
#
# Get command-line parameters.
#
show = ("show" in sys.argv)
force = True
api_port = 8080
for arg in sys.argv[1::]:
if (arg == "help"):
print("Usage: ./log-packets [show] [force] [<api-port>] [help]")
exit(0)
#endif
if (arg == "force"): force = True
if (arg.isdigit()): api_port = int(arg)
if (arg[0] == "-" and arg[1::].isdigit()): api_port = -int(arg[1::])
#endfor
#
# Get user supplied password, if any.
#
pw = os.getenv("LISP_PW")
if (pw == None): pw = ""
#
# Open API to localhost. If debug status dict array None, the open failed.
#
lisp = lispapi.api_init("localhost", "root", pw, port=api_port)
if (lisp.debug_status == None):
print ("Could not connect to API, is lispers.net running?, " + \
"LISP_PW set?, or using the correct port number?")
exit(1)
#endif
#
# Get current settings for control-plane.
#
itr = lisp.is_itr_debug_enabled()
etr = lisp.is_etr_debug_enabled()
rtr = lisp.is_rtr_debug_enabled()
#
# Get current settings for data-plane logging.
#
xtr_parms = lisp.get_xtr_parameters()
if (xtr_parms == None):
print("Could not get xtr-parameters from API")
exit(1)
#endif
dp_logging = xtr_parms["data-plane-logging"] == "yes"
#
# If showing, just return values.
#
if (show):
print("ITR-logging: {}".format("enabled" if itr else "disabled"))
print("ETR-logging: {}".format("enabled" if etr else "disabled"))
print("RTR-logging: {}".format("enabled" if rtr else "disabled"))
print("data-plane-logging: {}".format("enabled" if dp_logging else \
"disabled"))
exit(0)
#endif
rtr_running = lisp.is_rtr_enabled()
if (dp_logging):
lisp.disable_xtr_data_plane_logging()
lisp.disable_itr_debug()
lisp.disable_etr_debug()
if (rtr_running): lisp.disable_rtr_debug()
print("Data-plane logging has been disabled")
else:
if (rtr_running):
if (rtr and force == False):
print("Control-plane logging is enabled, no action taken")
exit(0)
#endif
lisp.enable_rtr_debug()
else:
if ((itr or etr) and force == False):
print("Control-plane logging is enabled, no action taken")
exit(0)
#endif
lisp.enable_itr_debug()
lisp.enable_etr_debug()
#endif
lisp.enable_xtr_data_plane_logging()
print("Data-plane logging has been enabled")
#endif
exit(0)
#------------------------------------------------------------------------------