123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /*
- * Copyright (c)2013-2020 ZeroTier, Inc.
- *
- * Use of this software is governed by the Business Source License included
- * in the LICENSE.TXT file in the project's root directory.
- *
- * Change Date: 2024-01-01
- *
- * On the date above, in accordance with the Business Source License, use
- * of this software will be governed by version 2.0 of the Apache License.
- */
- /****/
- package cli
- import (
- "fmt"
- "zerotier/pkg/zerotier"
- )
- func Help() {
- fmt.Printf(`ZeroTier Network Hypervisor Service Version %d.%d.%d
- (c)2013-2020 ZeroTier, Inc.
- Licensed under the ZeroTier BSL (see LICENSE.txt)
- Usage: zerotier [-options] <command> [command args]
- Global Options:
- -j Output raw JSON where applicable
- -p <path> Use alternate base path
- -t <path> Load secret auth token from a file
- -T <token> Set secret auth token on command line
- Commands:
- help Show this help
- version Print version
- service [-options] Start node (see below)
- -d Fork into background (Unix only)
- status Show node status and configuration
- join [-options] <network> Join a virtual network
- -a <token> Token to submit to controller
- -c <identity | fingerprint> Controller identity or fingerprint
- leave <network> Leave a virtual network
- networks List VL2 virtual networks
- network <network> [command] [option] - Network management commands
- show Show network details (default)
- set [option] [value] - Get or set network options
- manageips <boolean> Is IP management allowed?
- manageroutes <boolean> Is route management allowed?
- globalips <boolean> Allow assignment of global IPs?
- globalroutes <boolean> Can global IP space routes be set?
- defaultroute <boolean> Can default route be overridden?
- peers List VL1 peers
- peer <address> [command] [option] - Peer management commands
- show Show peer details (default)
- try <endpoint> [...] Try peer at explicit endpoint
- set [option] [value] - Get or set a core config option
- port <port> Primary P2P port
- secondaryport <port/0> Secondary P2P port (0 to disable)
- blacklist cidr <IP/bits> <boolean> Toggle physical path blacklisting
- blacklist if <prefix> <boolean> Toggle interface prefix blacklisting
- portmap <boolean> Toggle use of uPnP or NAT-PMP
- roots List root peers
- root [command] - Root management commands
- trust <identity | url> [endpoint] Add a root or a set of roots
- remove <address | url | serial> Remove a root or set of roots
- controller <command> [option] - Local controller management commands
- networks List networks run by local controller
- new Create a new network
- set <network> [setting] [value] Show or modify network settings
- members <network> List members of a network
- member <network> [setting] [value] Show or modify member level settings
- auth <address> Authorize a peer
- deauth <address> Deauthorize a peer
- identity <command> [args] - Identity management commands
- new [c25519 | p384] Create identity (default: c25519)
- getpublic <identity> Extract only public part of identity
- fingerprint <identity> Get an identity's fingerprint
- validate <identity> Locally validate an identity
- sign <identity> <file> Sign a file with an identity's key
- verify <identity> <file> <sig> Verify a signature
- cert <command> [args] - Certificate commands
- newid Create a new unique subject ID
- newcsr <subject json path> Create a new CSR (signing request)
- sign <csr path> <identity path> Sign a CSR to create a certificate
- verify <certificate> Verify a certificate
- show List certificate for current node
- import <certificate> [<trust>] Import certificate into this node
- export <serial> Export a certificate from this node
- delete <serial> Delete certificate from this node
- An <address> may be specified as a 10-digit short ZeroTier address, a
- fingerprint containing both an address and a SHA384 hash, or an identity.
- The latter two options are equivalent in terms of specificity and may be
- used if stronger security guarantees are desired than those provided by
- the basic ZeroTier addressing system. Fields of type <identity> must be
- full identities and may be specified either verbatim or as a path to a file.
- An <endpoint> is a place where a peer may be reached. Currently these are
- just 'IP/port' format addresses but other types may be added in the future.
- The 'service' command starts a node. It will run until the node receives
- an exit signal and is normally not used directly.
- `,zerotier.CoreVersionMajor, zerotier.CoreVersionMinor, zerotier.CoreVersionRevision)
- }
|