2021-05-25 07:10:16 +00:00
|
|
|
|
|
|
|
edit:completion:arg-completer[innernet-server] = [@words]{
|
|
|
|
fn spaces [n]{
|
|
|
|
repeat $n ' ' | joins ''
|
|
|
|
}
|
|
|
|
fn cand [text desc]{
|
|
|
|
edit:complex-candidate $text &display-suffix=' '(spaces (- 14 (wcswidth $text)))$desc
|
|
|
|
}
|
|
|
|
command = 'innernet-server'
|
|
|
|
for word $words[1:-1] {
|
|
|
|
if (has-prefix $word '-') {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
command = $command';'$word
|
|
|
|
}
|
|
|
|
completions = [
|
|
|
|
&'innernet-server'= {
|
2021-12-05 17:35:18 +00:00
|
|
|
cand -c 'c'
|
|
|
|
cand --config-dir 'config-dir'
|
|
|
|
cand -d 'd'
|
|
|
|
cand --data-dir 'data-dir'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand --backend 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability'
|
2021-06-14 14:53:02 +00:00
|
|
|
cand --mtu 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand --no-routing 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
cand new 'Create a new network'
|
|
|
|
cand uninstall 'Permanently uninstall a created network, rendering it unusable. Use with care'
|
|
|
|
cand serve 'Serve the coordinating server for an existing network'
|
|
|
|
cand add-peer 'Add a peer to an existing network'
|
2021-05-31 15:23:14 +00:00
|
|
|
cand rename-peer 'Rename an existing peer'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand add-cidr 'Add a new CIDR to an existing network'
|
|
|
|
cand delete-cidr 'Delete a CIDR'
|
|
|
|
cand completions 'Generate shell completion scripts'
|
|
|
|
cand help 'Prints this message or the help of the given subcommand(s)'
|
|
|
|
}
|
|
|
|
&'innernet-server;new'= {
|
|
|
|
cand --network-name 'The network name (ex: evilcorp)'
|
|
|
|
cand --network-cidr 'The network CIDR (ex: 10.42.0.0/16)'
|
|
|
|
cand --external-endpoint 'This server''s external endpoint (ex: 100.100.100.100:51820)'
|
|
|
|
cand --listen-port 'Port to listen on (for the WireGuard interface)'
|
|
|
|
cand --auto-external-endpoint 'Auto-resolve external endpoint'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
&'innernet-server;uninstall'= {
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
&'innernet-server;serve'= {
|
|
|
|
cand --backend 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability'
|
2021-06-14 14:53:02 +00:00
|
|
|
cand --mtu 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand --no-routing 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
&'innernet-server;add-peer'= {
|
|
|
|
cand --name 'Name of new peer'
|
|
|
|
cand --ip 'Specify desired IP of new peer (within parent CIDR)'
|
|
|
|
cand --cidr 'Name of CIDR to add new peer under'
|
|
|
|
cand --admin 'Make new peer an admin?'
|
|
|
|
cand --save-config 'Save the config to the given location'
|
2021-11-11 09:42:21 +00:00
|
|
|
cand --invite-expires 'Invite expiration period (eg. ''30d'', ''7w'', ''2h'', ''60m'', ''1000s'')'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand --auto-ip 'Auto-assign the peer the first available IP within the CIDR'
|
|
|
|
cand --yes 'Bypass confirmation'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
2021-05-31 15:23:14 +00:00
|
|
|
&'innernet-server;rename-peer'= {
|
|
|
|
cand --name 'Name of peer to rename'
|
|
|
|
cand --new-name 'The new name of the peer'
|
|
|
|
cand --yes 'Bypass confirmation'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
2021-05-25 07:10:16 +00:00
|
|
|
&'innernet-server;add-cidr'= {
|
2021-11-11 09:42:21 +00:00
|
|
|
cand --name 'The CIDR name (eg. ''engineers'')'
|
|
|
|
cand --cidr 'The CIDR network (eg. ''10.42.5.0/24'')'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand --parent 'The CIDR parent name'
|
|
|
|
cand --yes 'Bypass confirmation'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
&'innernet-server;delete-cidr'= {
|
2021-11-11 09:42:21 +00:00
|
|
|
cand --name 'The CIDR name (eg. ''engineers'')'
|
2021-05-25 07:10:16 +00:00
|
|
|
cand --yes 'Bypass confirmation'
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
&'innernet-server;completions'= {
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
&'innernet-server;help'= {
|
|
|
|
cand -h 'Prints help information'
|
|
|
|
cand --help 'Prints help information'
|
|
|
|
cand -V 'Prints version information'
|
|
|
|
cand --version 'Prints version information'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
$completions[$command]
|
|
|
|
}
|