Add restricted SSH admin shell
This commit is contained in:
parent
64e0168dbf
commit
59ccf6c748
9 changed files with 358 additions and 14 deletions
|
|
@ -150,7 +150,9 @@ The bootstrap implementation provides:
|
|||
- `geth ssh revocation export --out <path> [--format jsonl|openssh-krl-spec|openssh-krl] [--subject <principal>]`
|
||||
- `geth ssh revocation import <path> [--format jsonl|openssh-krl-spec] [--subject <principal>]`
|
||||
- `geth ssh revocation sync <node-id> [--bearer-secret <secret>]`
|
||||
- SSH proxy over Iroh: `geth ssh proxy <node-id> [--bearer-secret <secret>]`
|
||||
- SSH proxy/admin over Iroh:
|
||||
`geth ssh proxy <node-id> [--bearer-secret <secret>]` and
|
||||
`geth ssh admin-shell <node-id> <help|status|node-id> [--bearer-secret <secret>]`
|
||||
- pipe registry/message commands:
|
||||
`geth pipe listen <name> [--node <node-id>] [--bearer-secret <secret>]`,
|
||||
`geth pipe connect <name> [--node <node-id>] [--bearer-secret <secret>]`,
|
||||
|
|
@ -242,6 +244,10 @@ ALPN, the remote daemon validates the caller's endpoint/card binding and
|
|||
requires `ssh_proxy.connect` on `resource:ssh-proxy:local`, and only then
|
||||
connects the stream to `127.0.0.1:22`. SSH remains normal OpenSSH on top of that
|
||||
byte stream; SSH is not a geth transport backend.
|
||||
`geth ssh admin-shell <node-id> <command>` is a restricted geth admin workflow
|
||||
over the protected Iroh control path. It requires `ssh_proxy.admin_shell` on the
|
||||
same resource and supports only built-in commands (`help`, `status`, `node-id`);
|
||||
it does not execute host shell commands.
|
||||
Document sync is a bootstrap JSON last-writer-wins path before Automerge:
|
||||
manual `geth document sync <node-id> <name>` and background live-sync require
|
||||
`document.read` on `resource:document:<name>` and import only state that is not
|
||||
|
|
|
|||
Loading…
Reference in a new issue