Add authorized Unix pipe forwarding
This commit is contained in:
parent
6bc2666993
commit
3d0da22eae
8 changed files with 491 additions and 16 deletions
|
|
@ -148,6 +148,7 @@ The bootstrap implementation provides:
|
|||
`geth pipe send <name> [message|--in <path>|--in -] [--node <node-id>] [--bearer-secret <secret>]`,
|
||||
`geth pipe recv <name> [--peek]`, and
|
||||
`geth pipe forward-tcp --listen 127.0.0.1:<port> --node <node-id> --target 127.0.0.1:<port>`
|
||||
or `geth pipe forward-unix --listen /tmp/local.sock --node <node-id> --target /tmp/remote.sock`
|
||||
|
||||
`geth peer export/import/list` is for untrusted peer-card exchange. Peer cards
|
||||
include the Iroh EndpointID plus currently known relay/direct addresses.
|
||||
|
|
@ -216,6 +217,10 @@ stream to the peer. The remote daemon validates the signed endpoint/card binding
|
|||
and requires `pipe.forward` on `resource:pipe-tcp:<target>` before connecting to
|
||||
the remote loopback TCP target. This is loopback-only in the prototype to avoid
|
||||
turning geth into an accidental open proxy.
|
||||
`geth pipe forward-unix --listen <local-socket> --node <node-id> --target
|
||||
<remote-socket>` uses the same `/geth/pipe/1` byte stream and requires
|
||||
`pipe.forward` on `resource:pipe-unix:<target>` before connecting to the remote
|
||||
Unix socket. Unix socket paths must be absolute.
|
||||
`geth ssh proxy <node-id>` is usable as an OpenSSH `ProxyCommand`: the CLI opens
|
||||
a local daemon stream, the daemon opens the dedicated `/geth/ssh-proxy/1` Iroh
|
||||
ALPN, the remote daemon validates the caller's endpoint/card binding and
|
||||
|
|
|
|||
Loading…
Reference in a new issue