-
Notifications
You must be signed in to change notification settings - Fork 9
/
print_appliance_info.py
140 lines (123 loc) · 3.68 KB
/
print_appliance_info.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
139
140
import argparse
import getpass
import os
from pyedgeconnect import Orchestrator
# Parse runtime arguments
parser = argparse.ArgumentParser()
parser.add_argument(
"-o",
"--orch",
help="specify Orchestrator URL",
type=str,
)
args = parser.parse_args()
# Set Orchestrator FQDN/IP via arguments, environment variable,
# or user input
if vars(args)["orch"] is not None:
orch_url = vars(args)["orch"]
elif os.getenv("ORCH_URL") is not None:
orch_url = os.getenv("ORCH_URL")
else:
orch_url = input("Orchstrator IP or FQDN: ")
# Set Orchestrator API Key via environment variable or user input
if os.getenv("ORCH_API_KEY") is not None:
orch_api_key = os.getenv("ORCH_API_KEY")
else:
orch_api_key_input = getpass.getpass(
"Orchstrator API Key (enter to skip): "
)
if len(orch_api_key_input) == 0:
orch_api_key = None
# Set user and password if present in environment variable
orch_user = os.getenv("ORCH_USER")
orch_pw = os.getenv("ORCH_PASSWORD")
else:
orch_api_key = orch_api_key_input
# Instantiate Orchestrator with ``log_console`` enabled for
# printing log messages to terminal
orch = Orchestrator(
orch_url,
api_key=orch_api_key,
log_console=True,
verify_ssl=False,
)
# If not using API key, login to Orchestrator with username/password
if orch_api_key is None:
# If username/password not in environment variables, prompt user
if orch_user is None:
orch_user = input("Enter Orchestrator username: ")
orch_pw = getpass.getpass("Enter Orchestrator password: ")
# Check if multi-factor authentication required
mfa_prompt = input("Are you using MFA for this user (y/n)?: ")
if mfa_prompt == "y":
orch.send_mfa(orch_user, orch_pw, temp_code=False)
token = input("Enter MFA token: ")
else:
token = ""
# Login to Orchestrator
confirm_auth = orch.login(orch_user, orch_pw, mfacode=token)
# Check that user/pass authentication works before proceeding
if confirm_auth:
pass
else:
print("Authentication to Orchestrator Failed")
exit()
# If API key specified, check that key is valid before proceeding
else:
confirm_auth = orch.get_orchestrator_hello()
if confirm_auth != "There was an internal server error.":
pass
else:
print("Authentication to Orchestrator Failed")
exit()
# retrieve Orchestrator system information
orch_info = orch.get_orchestrator_server_info()
# print Orchestrator information
print(
"""
Orchestrator Information:
-------------------------------------------------------
Hostname: {}
Version: {}
Uptime: {}
-------------------------------------------------------
""".format(
orch_info["hostName"],
orch_info["release"],
orch_info["uptime"],
)
)
# retrieve all appliances in Orchestrator
appliances = orch.get_appliances()
print("Appliance Information:")
# print headers for table
print(
"\n{:^20}|{:^20}|{:^20}|{:^20}|{:^20}|{:^20}|".format(
"Hostname",
"Appliance ID",
"Serial Num",
"IP Address",
"Software",
"Bandwidth",
)
)
# print horizontal line before appliance data
print("-" * 126)
# print row for each appliance with particular info attributes
for appliance in appliances:
print(
"{:^20}|{:^20}|{:^20}|{:^20}|{:^20}|{:^20}|".format(
appliance["hostName"],
appliance["nePk"],
appliance["serial"],
appliance["IP"],
appliance["softwareVersion"],
appliance["systemBandwidth"],
)
)
print("\n")
# if not using API key, logout from Orchestrator
if orch_api_key is None:
orch.logout()
else:
pass