parent
bb6bac3964
commit
be8786a11c
|
@ -128,7 +128,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "client"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
|
@ -644,7 +644,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "netlink-request"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
dependencies = [
|
||||
"netlink-packet-core",
|
||||
"netlink-packet-generic",
|
||||
|
@ -929,7 +929,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "server"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"bytes",
|
||||
|
@ -964,7 +964,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "shared"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"atty",
|
||||
|
@ -1345,7 +1345,7 @@ checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316"
|
|||
|
||||
[[package]]
|
||||
name = "wireguard-control"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"curve25519-dalek",
|
||||
|
|
|
@ -214,10 +214,10 @@ brew install tonarino/innernet/innernet
|
|||
|
||||
```sh
|
||||
# to install innernet:
|
||||
cargo install --git https://github.com/tonarino/innernet --tag v1.5.4-beta.4 client
|
||||
cargo install --git https://github.com/tonarino/innernet --tag v1.5.4-beta.5 client
|
||||
|
||||
# to install innernet-server:
|
||||
cargo install --git https://github.com/tonarino/innernet --tag v1.5.4-beta.4 server
|
||||
cargo install --git https://github.com/tonarino/innernet --tag v1.5.4-beta.5 server
|
||||
```
|
||||
|
||||
Note that you'll be responsible for updating manually.
|
||||
|
|
|
@ -7,7 +7,7 @@ license = "MIT"
|
|||
name = "client"
|
||||
publish = false
|
||||
repository = "https://github.com/tonarino/innernet"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
|
||||
[[bin]]
|
||||
name = "innernet"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1.
|
||||
.TH INNERNET-SERVER "8" "February 2022" "innernet-server 1.5.4-beta.4" "System Administration Utilities"
|
||||
.TH INNERNET-SERVER "8" "March 2022" "innernet-server 1.5.4-beta.5" "System Administration Utilities"
|
||||
.SH NAME
|
||||
innernet-server \- manual page for innernet-server 1.5.4-beta.4
|
||||
innernet-server \- manual page for innernet-server 1.5.4-beta.5
|
||||
.SH DESCRIPTION
|
||||
innernet\-server 1.5.4\-beta.4
|
||||
innernet\-server 1.5.4\-beta.5
|
||||
Jake McGinty <me@jake.su>
|
||||
A server to coordinate innernet networks.
|
||||
.SS "USAGE:"
|
||||
|
@ -27,8 +27,7 @@ auto\-select based on availability [default: kernel] [possible
|
|||
values: kernel, userspace]
|
||||
.TP
|
||||
\fB\-\-mtu\fR <MTU>
|
||||
Specify the desired MTU for your interface (default: 1420 for
|
||||
IPv4 and 1400 for IPv6)
|
||||
Specify the desired MTU for your interface (default: 1280)
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help information
|
||||
|
|
Binary file not shown.
|
@ -69,7 +69,7 @@ _innernet-server() {
|
|||
return 0
|
||||
;;
|
||||
--backend)
|
||||
COMPREPLY=($(compgen -W "kernel userspace" -- "${cur}"))
|
||||
COMPREPLY=($(compgen -W "" -- "${cur}"))
|
||||
return 0
|
||||
;;
|
||||
--mtu)
|
||||
|
@ -253,7 +253,7 @@ _innernet-server() {
|
|||
fi
|
||||
case "${prev}" in
|
||||
--backend)
|
||||
COMPREPLY=($(compgen -W "kernel userspace" -- "${cur}"))
|
||||
COMPREPLY=($(compgen -W "" -- "${cur}"))
|
||||
return 0
|
||||
;;
|
||||
--mtu)
|
||||
|
|
|
@ -23,7 +23,7 @@ set edit:completion:arg-completer[innernet-server] = {|@words|
|
|||
cand -d 'd'
|
||||
cand --data-dir 'data-dir'
|
||||
cand --backend 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability'
|
||||
cand --mtu 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
|
||||
cand --mtu 'Specify the desired MTU for your interface (default: 1280)'
|
||||
cand -h 'Print help information'
|
||||
cand --help 'Print help information'
|
||||
cand -V 'Print version information'
|
||||
|
@ -54,7 +54,7 @@ set edit:completion:arg-completer[innernet-server] = {|@words|
|
|||
}
|
||||
&'innernet-server;serve'= {
|
||||
cand --backend 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability'
|
||||
cand --mtu 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
|
||||
cand --mtu 'Specify the desired MTU for your interface (default: 1280)'
|
||||
cand --no-routing 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
|
||||
cand -h 'Print help information'
|
||||
cand --help 'Print help information'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
complete -c innernet-server -n "__fish_use_subcommand" -s c -l config-dir -r
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -s d -l data-dir -r
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "{kernel ,userspace }"
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -l mtu -d 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)' -r
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -l mtu -d 'Specify the desired MTU for your interface (default: 1280)' -r
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -s h -l help -d 'Print help information'
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -s V -l version -d 'Print version information'
|
||||
complete -c innernet-server -n "__fish_use_subcommand" -l no-routing -d 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
|
||||
|
@ -22,7 +22,7 @@ complete -c innernet-server -n "__fish_seen_subcommand_from new" -l auto-externa
|
|||
complete -c innernet-server -n "__fish_seen_subcommand_from new" -s h -l help -d 'Print help information'
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from uninstall" -s h -l help -d 'Print help information'
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "{kernel ,userspace }"
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l mtu -d 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)' -r
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l mtu -d 'Specify the desired MTU for your interface (default: 1280)' -r
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l no-routing -d 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -s h -l help -d 'Print help information'
|
||||
complete -c innernet-server -n "__fish_seen_subcommand_from add-peer" -l name -d 'Name of new peer' -r
|
||||
|
|
|
@ -26,7 +26,7 @@ Register-ArgumentCompleter -Native -CommandName 'innernet-server' -ScriptBlock {
|
|||
[CompletionResult]::new('-d', 'd', [CompletionResultType]::ParameterName, 'd')
|
||||
[CompletionResult]::new('--data-dir', 'data-dir', [CompletionResultType]::ParameterName, 'data-dir')
|
||||
[CompletionResult]::new('--backend', 'backend', [CompletionResultType]::ParameterName, 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability')
|
||||
[CompletionResult]::new('--mtu', 'mtu', [CompletionResultType]::ParameterName, 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)')
|
||||
[CompletionResult]::new('--mtu', 'mtu', [CompletionResultType]::ParameterName, 'Specify the desired MTU for your interface (default: 1280)')
|
||||
[CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Print help information')
|
||||
[CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Print help information')
|
||||
[CompletionResult]::new('-V', 'V', [CompletionResultType]::ParameterName, 'Print version information')
|
||||
|
@ -60,7 +60,7 @@ Register-ArgumentCompleter -Native -CommandName 'innernet-server' -ScriptBlock {
|
|||
}
|
||||
'innernet-server;serve' {
|
||||
[CompletionResult]::new('--backend', 'backend', [CompletionResultType]::ParameterName, 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability')
|
||||
[CompletionResult]::new('--mtu', 'mtu', [CompletionResultType]::ParameterName, 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)')
|
||||
[CompletionResult]::new('--mtu', 'mtu', [CompletionResultType]::ParameterName, 'Specify the desired MTU for your interface (default: 1280)')
|
||||
[CompletionResult]::new('--no-routing', 'no-routing', [CompletionResultType]::ParameterName, 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld')
|
||||
[CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Print help information')
|
||||
[CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Print help information')
|
||||
|
|
|
@ -20,7 +20,7 @@ _innernet-server() {
|
|||
'-d+[]:DATA_DIR: ' \
|
||||
'--data-dir=[]:DATA_DIR: ' \
|
||||
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]:BACKEND:(kernel userspace)' \
|
||||
'--mtu=[Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)]:MTU: ' \
|
||||
'--mtu=[Specify the desired MTU for your interface (default: 1280)]:MTU: ' \
|
||||
'-h[Print help information]' \
|
||||
'--help[Print help information]' \
|
||||
'-V[Print version information]' \
|
||||
|
@ -56,7 +56,7 @@ _arguments "${_arguments_options[@]}" \
|
|||
(serve)
|
||||
_arguments "${_arguments_options[@]}" \
|
||||
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]:BACKEND:(kernel userspace)' \
|
||||
'--mtu=[Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)]:MTU: ' \
|
||||
'--mtu=[Specify the desired MTU for your interface (default: 1280)]:MTU: ' \
|
||||
'--no-routing[Whether the routing should be done by innernet or is done by an external tool like e.g. babeld]' \
|
||||
'-h[Print help information]' \
|
||||
'--help[Print help information]' \
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.1.
|
||||
.TH INNERNET "8" "February 2022" "innernet 1.5.4-beta.4" "System Administration Utilities"
|
||||
.TH INNERNET "8" "March 2022" "innernet 1.5.4-beta.5" "System Administration Utilities"
|
||||
.SH NAME
|
||||
innernet \- manual page for innernet 1.5.4-beta.4
|
||||
innernet \- manual page for innernet 1.5.4-beta.5
|
||||
.SH DESCRIPTION
|
||||
innernet 1.5.4\-beta.4
|
||||
innernet 1.5.4\-beta.5
|
||||
Jake McGinty <jake@tonari.no>
|
||||
A client to manage innernet network interfaces.
|
||||
.SS "USAGE:"
|
||||
|
@ -30,8 +30,7 @@ auto\-select based on availability [default: kernel] [possible
|
|||
values: kernel, userspace]
|
||||
.TP
|
||||
\fB\-\-mtu\fR <MTU>
|
||||
Specify the desired MTU for your interface (default: 1420 for
|
||||
IPv4 and 1400 for IPv6)
|
||||
Specify the desired MTU for your interface (default: 1280)
|
||||
.TP
|
||||
\fB\-h\fR, \fB\-\-help\fR
|
||||
Print help information
|
||||
|
|
Binary file not shown.
|
@ -102,7 +102,7 @@ _innernet() {
|
|||
return 0
|
||||
;;
|
||||
--backend)
|
||||
COMPREPLY=($(compgen -W "kernel userspace" -- "${cur}"))
|
||||
COMPREPLY=($(compgen -W "" -- "${cur}"))
|
||||
return 0
|
||||
;;
|
||||
--mtu)
|
||||
|
|
|
@ -23,7 +23,7 @@ set edit:completion:arg-completer[innernet] = {|@words|
|
|||
cand -d 'd'
|
||||
cand --data-dir 'data-dir'
|
||||
cand --backend 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability'
|
||||
cand --mtu 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
|
||||
cand --mtu 'Specify the desired MTU for your interface (default: 1280)'
|
||||
cand -h 'Print help information'
|
||||
cand --help 'Print help information'
|
||||
cand -V 'Print version information'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
complete -c innernet -n "__fish_use_subcommand" -s c -l config-dir -r
|
||||
complete -c innernet -n "__fish_use_subcommand" -s d -l data-dir -r
|
||||
complete -c innernet -n "__fish_use_subcommand" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "{kernel ,userspace }"
|
||||
complete -c innernet -n "__fish_use_subcommand" -l mtu -d 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)' -r
|
||||
complete -c innernet -n "__fish_use_subcommand" -l mtu -d 'Specify the desired MTU for your interface (default: 1280)' -r
|
||||
complete -c innernet -n "__fish_use_subcommand" -s h -l help -d 'Print help information'
|
||||
complete -c innernet -n "__fish_use_subcommand" -s V -l version -d 'Print version information'
|
||||
complete -c innernet -n "__fish_use_subcommand" -s v -l verbose -d 'Verbose output, use -vv for even higher verbositude'
|
||||
|
|
|
@ -26,7 +26,7 @@ Register-ArgumentCompleter -Native -CommandName 'innernet' -ScriptBlock {
|
|||
[CompletionResult]::new('-d', 'd', [CompletionResultType]::ParameterName, 'd')
|
||||
[CompletionResult]::new('--data-dir', 'data-dir', [CompletionResultType]::ParameterName, 'data-dir')
|
||||
[CompletionResult]::new('--backend', 'backend', [CompletionResultType]::ParameterName, 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability')
|
||||
[CompletionResult]::new('--mtu', 'mtu', [CompletionResultType]::ParameterName, 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)')
|
||||
[CompletionResult]::new('--mtu', 'mtu', [CompletionResultType]::ParameterName, 'Specify the desired MTU for your interface (default: 1280)')
|
||||
[CompletionResult]::new('-h', 'h', [CompletionResultType]::ParameterName, 'Print help information')
|
||||
[CompletionResult]::new('--help', 'help', [CompletionResultType]::ParameterName, 'Print help information')
|
||||
[CompletionResult]::new('-V', 'V', [CompletionResultType]::ParameterName, 'Print version information')
|
||||
|
|
|
@ -20,7 +20,7 @@ _innernet() {
|
|||
'-d+[]:DATA_DIR: ' \
|
||||
'--data-dir=[]:DATA_DIR: ' \
|
||||
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]:BACKEND:(kernel userspace)' \
|
||||
'--mtu=[Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)]:MTU: ' \
|
||||
'--mtu=[Specify the desired MTU for your interface (default: 1280)]:MTU: ' \
|
||||
'-h[Print help information]' \
|
||||
'--help[Print help information]' \
|
||||
'-V[Print version information]' \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "netlink-request"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
edition = "2021"
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
|
|
|
@ -6,7 +6,7 @@ license = "MIT"
|
|||
name = "server"
|
||||
publish = false
|
||||
readme = "README.md"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
|
||||
[[bin]]
|
||||
name = "innernet-server"
|
||||
|
|
|
@ -4,7 +4,7 @@ edition = "2021"
|
|||
license = "MIT"
|
||||
name = "shared"
|
||||
publish = false
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
|
|
|
@ -7,7 +7,7 @@ license = "LGPL-2.1-or-later"
|
|||
name = "wireguard-control"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tonarino/innernet"
|
||||
version = "1.5.4-beta.4"
|
||||
version = "1.5.4-beta.5"
|
||||
|
||||
[dependencies]
|
||||
base64 = "0.13"
|
||||
|
|
Loading…
Reference in New Issue