nighthawk 0.2.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
{
  "name": "networksetup",
  "description": "Configuration tool for network settings in System Preferences",
  "subcommands": [
    {
      "name": "-listnetworkserviceorder",
      "description": "Displays a list of network services in the order they are contacted for a connection, along with the corresponding port and device for each"
    },
    {
      "name": "-listallnetworkservices",
      "description": "Displays a list of all the network services on the server's hardware ports"
    },
    {
      "name": "-listallhardwareports",
      "description": "Displays list of hardware ports with corresponding device name and ethernet address"
    },
    {
      "name": "-detectnewhardware",
      "description": "Detects new network hardware and creates a default network service on the hardware"
    },
    {
      "name": "-getmacaddress",
      "description": "Displays ethernet (or Wi-Fi) address for hardwareport or device specified",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-getcomputername",
      "description": "Displays the computer name"
    },
    {
      "name": "-setcomputername",
      "description": "Sets computer name to <computername>. This name is used by AFP",
      "args": [
        {
          "name": "computername",
          "description": "The new name for your computer on the network"
        }
      ]
    },
    {
      "name": "-getinfo",
      "description": "Displays the IP address, subnet mask, router, and hardware address for the <networkservice> that you specify",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setmanual",
      "description": "Set the TCP/IP configuration for <networkservice> to manual with IP address set to <ip>, Subnet Mask set to <subnet>, and Router address set to <router>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "ip",
          "description": "The IP address to set for the network service"
        },
        {
          "name": "subnet",
          "description": "The subnet mask to apply"
        },
        {
          "name": "router",
          "description": "The router address to set"
        }
      ]
    },
    {
      "name": "-setdhcp",
      "description": "Use this command to set the TCP/IP configuration for the specified <networkservice> to use DHCP. The client ID is optional. Specify \"Empty\" for [clientid] to clear the DHCP client id",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "clientid",
          "description": "Optional DHCP client ID. Use 'Empty' to clear it"
        }
      ]
    },
    {
      "name": "-setbootp",
      "description": "Use this command to set the TCP/IP configuration for the specified <networkservice> to use BOOTP",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setmanualwithdhcprouter",
      "description": "Use this command to specify a manual IP address to use for DHCP for the specified <networkservice>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "ip",
          "description": "The IP address to set for the network service"
        }
      ]
    },
    {
      "name": "-getadditionalroutes",
      "description": "Use this command to display the list of additional IPv4 routes configured for the service",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setadditionalroutes",
      "description": "Use this command to set the list of IPv4 additional routes configured for the service. Each route is specified as a (destination address, subnet mask, gateway address) tuple. Specifying no tuples clea",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "dest mask gate",
          "description": "One or more tuples of (destination address, subnet mask, gateway address). Specify 'Empty' to clear routes",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-setv4off",
      "description": "Use this command to turn IPv4 off on the specified <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setv6off",
      "description": "Use this command to turn IPv6 off on the specified <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setv6automatic",
      "description": "Use this command to set IPv6 to get its addresses automatically for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setv6linklocal",
      "description": "Use this command to set IPv6 to only use link local for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setv6manual",
      "description": "Use this command to set IPv6 to get its addresses manually for <networkservice>. Specify the ip address, the prefix length and the router",
      "args": [
        {
          "name": "ip",
          "description": "The IPv6 address to assign"
        },
        {
          "name": "prefixlength",
          "description": "The prefix length for the IPv6 address (e.g., 64)"
        },
        {
          "name": "router",
          "description": "The IPv6 address of the router"
        }
      ]
    },
    {
      "name": "-getv6additionalroutes",
      "description": "Use this command to display the list of additional IPv6 routes configured for the service",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setv6additionalroutes",
      "description": "Use this command to set the list of additional routes configured for the service. Each route is specified as a (destination address, prefix length, gateway address) tuple. Specifying no tuples clears ",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "dest prefixlength gate",
          "description": "The list of routes, each specified as a tuple of destination address, prefix length, and gateway address. Provide multiple routes or omit this to clear all routes",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-getdnsservers",
      "description": "Displays DNS info for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setdnsservers",
      "description": "Use this command to specify the IP addresses of servers you want the specified <networkservice> to use to resolve domain names. You can list any number of servers (replace dns1, dns2, and so on with t",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "dns",
          "description": "IP addresses of DNS servers. Use 'empty' to clear all DNS entries",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-getsearchdomains",
      "description": "Displays Domain Name info for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setsearchdomains",
      "description": "Use this command to designate the search domain for the specified <networkservice>. You can list any number of search domains (replace domain1, domain2, and so on with the name of a local domain). If ",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "domain",
          "description": "List of search domains. Use 'empty' to clear all existing domains",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-create6to4service",
      "description": "Use this command to create a new 6 to 4 service with name <newnetworkservicename>",
      "args": [
        {
          "name": "newnetworkservicename",
          "description": "The name of the new 6 to 4 service to be created"
        }
      ]
    },
    {
      "name": "-set6to4automatic",
      "description": "Use this command to set the 6 to 4 service such that it will get the relay address automatically",
      "args": [
        {
          "name": "newnetworkservicename",
          "description": "The name of the 6 to 4 service to be configured for automatic relay address retrieval"
        }
      ]
    },
    {
      "name": "-set6to4manual",
      "description": "Use this command to set the 6 to 4 service such that it will get the relay address manually. Specify the <relayaddress> that you would like to set",
      "args": [
        {
          "name": "newnetworkservicename",
          "description": "The name of the 6 to 4 service to be configured"
        },
        {
          "name": "relayaddress",
          "description": "The manually specified relay address to be used by the 6 to 4 service"
        }
      ]
    },
    {
      "name": "-getwebproxy",
      "description": "Displays Web proxy (server, port, enabled value) info for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setwebproxy",
      "description": "Set Web proxy for <networkservice> with <domain> and <port number>. Turns proxy on. Optionally, specify <on> or <off> for <authenticated> to enable and disable authenticated proxy support. Specify <us",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "domain",
          "description": "The domain name or IP address of the proxy server"
        },
        {
          "name": "portnumber",
          "description": "The port number for the proxy server"
        },
        {
          "name": "authenticated",
          "description": "Specify whether proxy authentication is required",
          "suggestions": [
            "on",
            "off"
          ]
        },
        {
          "name": "username",
          "description": "The username for proxy authentication"
        },
        {
          "name": "password",
          "description": "The password for proxy authentication"
        }
      ]
    },
    {
      "name": "-setwebproxystate",
      "description": "Set Web proxy on <networkservice> to either <on> or <off>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "on | off",
          "suggestions": [
            "on",
            "off"
          ]
        }
      ]
    },
    {
      "name": "-getsecurewebproxy",
      "description": "Displays Secure Web proxy (server, port, enabled value) info for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setsecurewebproxy",
      "description": "Set Secure Web proxy for <networkservice> with <domain> and <port number>. Turns proxy on. Optionally, specify <on> or <off> for <authenticated> to enable and disable authenticated proxy support. Spec",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "domain",
          "description": "The proxy server's domain or IP address"
        },
        {
          "name": "portnumber",
          "description": "The port number for the proxy server"
        },
        {
          "name": "authenticated",
          "description": "Specify whether proxy authentication is required",
          "suggestions": [
            "on",
            "off"
          ]
        },
        {
          "name": "username",
          "description": "The username for proxy authentication"
        },
        {
          "name": "password",
          "description": "The password for proxy authentication"
        }
      ]
    },
    {
      "name": "-setsecurewebproxystate",
      "description": "Set Secure Web proxy on <networkservice> to either <on> or <off>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "on | off",
          "suggestions": [
            "on",
            "off"
          ]
        }
      ]
    },
    {
      "name": "-getsocksfirewallproxy",
      "description": "Displays SOCKS Firewall proxy (server, port, enabled value) info for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setsocksfirewallproxy",
      "description": "Set SOCKS Firewall proxy for <networkservice> with <domain> and <port number>. Turns proxy on.  Optionally, specify <on> or <off> for <authenticated> to enable and disable authenticated proxy support.",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "domain",
          "description": "The proxy server's domain or IP address"
        },
        {
          "name": "portnumber",
          "description": "The port number for the proxy server"
        },
        {
          "name": "authenticated",
          "description": "Specify whether proxy authentication is required",
          "suggestions": [
            "on",
            "off"
          ]
        },
        {
          "name": "username",
          "description": "The username for proxy authentication"
        },
        {
          "name": "password",
          "description": "The password for proxy authentication"
        }
      ]
    },
    {
      "name": "-setsocksfirewallproxystate",
      "description": "Set SOCKS Firewall proxy to  either <on> or <off>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "on | off",
          "suggestions": [
            "on",
            "off"
          ]
        }
      ]
    },
    {
      "name": "-getproxybypassdomains",
      "description": "Displays Bypass Domain Names for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setproxybypassdomains",
      "description": "Set the Bypass Domain Name Servers for <networkservice> to <domain1> [domain2] [...]. Any number of Domain Name servers can be specified. Specify \"Empty\" for <domain1> to clear all Domain Name entries",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "domain",
          "description": "Domains to bypass proxy for. Use 'Empty' to clear all bypass domains",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-getproxyautodiscovery",
      "description": "Displays Proxy Auto Discover for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setproxyautodiscovery",
      "description": "Set Proxy Auto Discover for <networkservice> to either <on> or <off>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "on | off",
          "suggestions": [
            "on",
            "off"
          ]
        }
      ]
    },
    {
      "name": "-setautoproxyurl",
      "description": "Set proxy auto-config to url for <networkservice> and enable it",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "url",
          "description": "The URL of the proxy auto-config (PAC) file"
        }
      ]
    },
    {
      "name": "-getautoproxyurl",
      "description": "Displays proxy auto-config (url, enabled) info for <networkservice>",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-getairportnetwork",
      "description": "Displays current Wi-Fi Network",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-setairportnetwork",
      "description": "Set Wi-Fi Network to <network> using optional [password] if specified",
      "args": [
        {
          "name": "hardwareport"
        },
        {
          "name": "network",
          "description": "The name of the Wi-Fi network to connect to"
        },
        {
          "name": "password",
          "description": "Optional password for the Wi-Fi network"
        }
      ]
    },
    {
      "name": "-getairportpower",
      "description": "Displays whether Wi-Fi power is on or off",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-setairportpower",
      "description": "Set Wi-Fi power to either <on> or <off>",
      "args": [
        {
          "name": "hardwareport"
        },
        {
          "name": "on | off",
          "suggestions": [
            "on",
            "off"
          ]
        }
      ]
    },
    {
      "name": "-listpreferredwirelessnetworks",
      "description": "List the preferred wireless networks for <hardwareport>",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-addpreferredwirelessnetworkatindex",
      "description": "Add wireless network named <network> to preferred list for <hardwareport> at <index>. Store the optional password in the keychain",
      "args": [
        {
          "name": "hardwareport"
        },
        {
          "name": "network",
          "description": "The name of the Wi-Fi network to add"
        },
        {
          "name": "index",
          "description": "The position in the preferred list"
        },
        {
          "name": "securitytype",
          "description": "The security type of the network",
          "suggestions": [
            "OPEN",
            "WPA",
            "WPA2",
            "WPA/WPA2",
            "WPAE",
            "WPA2E",
            "WPAE/WPA2E",
            "WEP",
            "8021XWEP"
          ]
        },
        {
          "name": "password",
          "description": "Optional password for the network"
        }
      ]
    },
    {
      "name": "-removepreferredwirelessnetwork",
      "description": "Remove <network> from the preferred wireless network list for <hardwareport>",
      "args": [
        {
          "name": "hardwareport"
        },
        {
          "name": "network",
          "description": "The name of the Wi-Fi network to remove"
        }
      ]
    },
    {
      "name": "-removeallpreferredwirelessnetworks",
      "description": "Remove all networks from the preferred wireless network list for <hardwareport>",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-getnetworkserviceenabled",
      "description": "Displays whether a service is on or off (enabled or disabled)",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-setnetworkserviceenabled",
      "description": "Use this command to turn the specified network service on or off (enable or disable)",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "on | off",
          "suggestions": [
            "on",
            "off"
          ]
        }
      ]
    },
    {
      "name": "-createnetworkservice",
      "description": "Create a service named <networkservice> on port <hardwareport>. The new service will be enabled by default",
      "args": [
        {
          "name": "networkservicename",
          "description": "The name for the new network service"
        },
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-renamenetworkservice",
      "description": "Use this command to rename the specified network service <networkservice> to <newnetworkservicename>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "newnetworkservicename",
          "description": "The new name for the network service"
        }
      ]
    },
    {
      "name": "-duplicatenetworkservice",
      "description": "Use this command to duplicate an existing network service <networkservice> and rename it to the specified name <newnetworkservicename>",
      "args": [
        {
          "name": "networkservice"
        },
        {
          "name": "newnetworkservicename",
          "description": "The new name for the duplicated network service"
        }
      ]
    },
    {
      "name": "-removenetworkservice",
      "description": "Use this command to delete a network service <networkservice>. You cannot use this command to delete the last remaining service for a hardware port. To do so, you use the -setnetworkserviceenabled com",
      "args": [
        {
          "name": "networkservice"
        }
      ]
    },
    {
      "name": "-ordernetworkservices",
      "description": "Use this command to designate the order network services are contacted on the specified hardware port. Name the network you want contacted first, then the second, and so on. Use \"listnetworkserviceord",
      "args": [
        {
          "name": "service",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-setMTUAndMediaAutomatically",
      "description": "Set hardwareport or device specified back to automatically setting the MTU and Media",
      "args": [
        {
          "name": "hardwarePort"
        }
      ]
    },
    {
      "name": "-getMTU",
      "description": "Get the MTU value for hardwareport or device specified",
      "args": [
        {
          "name": "hardwarePort"
        }
      ]
    },
    {
      "name": "-setMTU",
      "description": "Set MTU for hardwareport or device specified",
      "args": [
        {
          "name": "hardwarePort"
        },
        {
          "name": "value",
          "description": "The MTU value to set, typically an integer representing the maximum packet size"
        }
      ]
    },
    {
      "name": "-listValidMTURange",
      "description": "List the valid MTU range for hardwareport or device specified",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-getMedia",
      "description": "Show both the current setting for media and the active media on hardwareport or device specified",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-setMedia",
      "description": "Set media for hardwareport or device specified to subtype. Specify optional [option1] and additional options depending on subtype. Any number of valid options can be specified",
      "args": [
        {
          "name": "hardwarePort"
        },
        {
          "name": "subtype",
          "description": "The media subtype to set for the hardware port or device"
        },
        {
          "name": "option",
          "description": "Additional options relevant to the <subtype>. Can include multiple values depending on the subtype",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-listValidMedia",
      "description": "List valid media options for hardwareport or device name. Enumerates available subtypes and options per subtype",
      "args": [
        {
          "name": "hardwareport"
        }
      ]
    },
    {
      "name": "-createVLAN",
      "description": "Create a VLAN with the name <name> over the parent device <parentdevice> and with the tag <tag>",
      "args": [
        {
          "name": "name",
          "description": "The name to assign to the new VLAN"
        },
        {
          "name": "parentdevice",
          "description": "The parent device over which the VLAN will be created"
        },
        {
          "name": "tag",
          "description": "The VLAN tag to assign to the new VLAN"
        }
      ]
    },
    {
      "name": "-deleteVLAN",
      "description": "Delete the VLAN with the name <name> over the parent device <parentdevice> and with the tag <tag>",
      "args": [
        {
          "name": "name",
          "description": "The name of the VLAN to be deleted"
        },
        {
          "name": "parentdevice",
          "description": "The parent device on which the VLAN is configured"
        },
        {
          "name": "tag",
          "description": "The VLAN tag of the VLAN to be deleted"
        }
      ]
    },
    {
      "name": "-listVLANs",
      "description": "List the VLANs that have been created"
    },
    {
      "name": "-listdevicesthatsupportVLAN",
      "description": "List the devices that support VLANs"
    },
    {
      "name": "-isBondSupported",
      "description": "Displays YES if the device can be added to a bond. NO if it cannot",
      "args": [
        {
          "name": "device"
        }
      ]
    },
    {
      "name": "-createBond",
      "description": "Create a bond with the user-defined-name name and optionally add any listed devices if they support bonding",
      "args": [
        {
          "name": "name",
          "description": "The user-defined name for the new bond"
        },
        {
          "name": "device",
          "description": "The devices to include in the bond. Any number of devices can be specified",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "-deleteBond",
      "description": "Delete the bond with the specified device-name",
      "args": [
        {
          "name": "bond"
        }
      ]
    },
    {
      "name": "-addDeviceToBond",
      "description": "Add device to bond",
      "args": [
        {
          "name": "device"
        },
        {
          "name": "bond"
        }
      ]
    },
    {
      "name": "-removeDeviceFromBond",
      "description": "Remove device from bond",
      "args": [
        {
          "name": "device"
        },
        {
          "name": "bond"
        }
      ]
    },
    {
      "name": "-listBonds",
      "description": "List of all bonds"
    },
    {
      "name": "-showBondStatus",
      "description": "Display the status of the specified bond",
      "args": [
        {
          "name": "bond"
        }
      ]
    },
    {
      "name": "-listpppoeservices",
      "description": "List all PPPoE services in the current set"
    },
    {
      "name": "-showpppoestatus",
      "description": "Display the status of the PPPoE service with the specified name",
      "args": [
        {
          "name": "name"
        }
      ]
    },
    {
      "name": "-createpppoeservice",
      "description": "Create a PPPoE service on the specified device with the service name specified",
      "args": [
        {
          "name": "device",
          "description": "The network device to create the PPPoE service on"
        },
        {
          "name": "name",
          "description": "The name for the new PPPoE service"
        },
        {
          "name": "account",
          "description": "The PPPoE account name"
        },
        {
          "name": "password",
          "description": "The PPPoE account password"
        },
        {
          "name": "pppoeName",
          "description": "Optional name for the PPPoE service"
        }
      ]
    },
    {
      "name": "-deletepppoeservice",
      "description": "Delete the service",
      "args": [
        {
          "name": "service"
        }
      ]
    },
    {
      "name": "-setpppoeaccountname",
      "description": "Set the account name for the service",
      "args": [
        {
          "name": "service"
        },
        {
          "name": "account",
          "description": "The PPPoE account name"
        }
      ]
    },
    {
      "name": "-setpppoepassword",
      "description": "Set the password for the service",
      "args": [
        {
          "name": "service"
        },
        {
          "name": "password",
          "description": "The PPPoE account password"
        }
      ]
    },
    {
      "name": "-connectpppoeservice",
      "description": "Connect the service",
      "args": [
        {
          "name": "service"
        }
      ]
    },
    {
      "name": "-disconnectpppoeservice",
      "description": "Disconnect the service",
      "args": [
        {
          "name": "service"
        }
      ]
    },
    {
      "name": "-listlocations",
      "description": "List all network locations"
    },
    {
      "name": "-getcurrentlocation",
      "description": "Display the name of the current set"
    },
    {
      "name": "-createlocation",
      "description": "Create a set with the user-defined-name name and optionally populate it with the default services",
      "args": [
        {
          "name": "location",
          "description": "The name for the new location"
        },
        {
          "name": "populate",
          "description": "Specify 'true' to populate with default services or 'false' to create an empty location"
        }
      ]
    },
    {
      "name": "-deletelocation",
      "description": "Delete the set",
      "args": [
        {
          "name": "location"
        }
      ]
    },
    {
      "name": "-switchtolocation",
      "description": "Make the specified set the current set",
      "args": [
        {
          "name": "location"
        }
      ]
    },
    {
      "name": "-version",
      "description": "Displays version of networksetup tool"
    },
    {
      "name": "-help",
      "description": "Displays a list of all the commands available in the Network Setup Tool, with explanatory information"
    },
    {
      "name": "-printcommands",
      "description": "Displays a list of commands with no detail"
    }
  ]
}