blob: 9995f777df835fbe5808593dd1e16f5038a3adf6 [file] [log] [blame]
Adam Israel33779282016-10-05 09:08:16 -07001nmap:
2 description: "nmap a thing!"
3 params:
4 destination:
5 description: "destination to scan"
6 type: string
7 required:
8 - destination
9ping:
10 description: 'ping a thing!'
11 params:
12 count:
13 description: "Stop after sending count ECHO_REQUEST packets"
14 type: integer
15 default: 30
16 destination:
17 description: "destination of ping request"
18 type: string
19 required:
20 - destination
21traceroute:
22 description: 'trace a thing!'
23 params:
24 hops:
25 description: "Stop tracing after count hops"
26 type: integer
27 default: 30
28 destination:
29 description: "destination of traceroute request"
30 type: string
31 required:
32 - destination