65-wsapi-operation.rst.txt
6.54 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
ws_运维接口
=====================
.. note::
- 本文档中的dev_unid表示运维设备的unid,device_id表示运维设备下物理设备的id。
- 与对应http接口的区别在于http接口给客户端的响应只能确认请求收到,不能确保运维已执行完成,而后者必须等待运维服务给出正确的响应后再给客户端响应。
.. _modify_fx_dev_info:
修改繁星设备信息
^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "put /wsapi/v1/devconf_fx/ops/fx_devs",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
# 以下内容参见15.1.3. 修改繁星设备信息的请求部分
...
}
}
``Response``: 标准响应
.. _ws_get_ops_status:
获取运维服务状态
^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/status",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
}
}
``Response``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/status",
"src_page": "xxxx",
"result": {
# 以下内容参见15.1.4. 获取运维服务状态的响应部分
...
}
}
.. _ws_get_fx_devs_status:
获取繁星设备状态信息
^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/status",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
}
}
``Response``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/status",
"src_page": "xxxx",
"result": {
# 以下内容参见15.1.5. 获取繁星设备状态信息的响应部分
...
}
}
网络配置
-----------------------
获取繁星主设备网络配置信息
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
参考: :ref:`ws_get_fx_devs_status` , 然后从中间找出主设备
获取繁星从设备网络信息
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
参考: :ref:`ws_get_fx_devs_status` 接口,过滤出所有的从设备
修改繁星设备网络配置
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
参考: :ref:`modify_fx_dev_info`
时间配置
----------------------
获取设备时间
^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/time",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
}
}
``Response``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/time",
"src_page": "xxxx",
"result": {
# 以下内容参见15.3.1. 获取设备时间的响应部分
...
}
}
手动校时
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "put /wsapi/v1/devconf_fx/ops/fx_devs/time",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
"time": "2017-01-01 11:20:00"
}
}
``Response``: 标准响应
获取校时配置信息
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/timing/ntp",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
}
}
``Response``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/timing/ntp",
"src_page": "xxxx",
"result": {
# 以下内容参见15.3.3. 获取校时配置信息的响应部分
...
}
}
设置NTP校时信息
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "put /wsapi/v1/devconf_fx/ops/fx_devs/timing/ntp",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
# 以下内容参见15.3.4. 设置NTP校时信息的请求部分
...
}
}
``Response``: 标准响应。
系统维护
-------------------
恢复出厂设置
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "post /wsapi/v1/devconf_fx/ops/fx_devs/factory-reset",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
}
}
``Response``: 标准响应。
手动重启设备
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "post /wsapi/v1/devconf_fx/ops/fx_devs/reboot/manual",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
}
}
``Response``: 标准响应。
获取自动重启配置
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/reboot/auto",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
}
}
``Response``:
.. code-block:: python
{
"command": "get /wsapi/v1/devconf_fx/ops/fx_devs/reboot/auto",
"src_page": "xxxx",
"result": {
# 以下内容参见15.4.6. 获取自动重启配置的响应部分
...
}
}
设置自动重启策略
^^^^^^^^^^^^^^^^^^^^^^^^
``Request Body``:
.. code-block:: python
{
"command": "put /wsapi/v1/devconf_fx/ops/fx_devs/reboot/auto",
"src_page": "xxxx",
"params": {
"dev_unid": "xxxx", # 运维设备的unid
"device_id":"1234", # 繁星设备的id
# 以下内容参见15.4.7. 设置自动重启策略的请求部分
...
}
}
``Response``: 标准响应