Configuration reference — Profiles

Each SSH profile is one connection target. Every field is configured per-profile under SettingsProfiles → click a profile.

Identification

FieldTypeDefaultDescription
Profile namestringNew ProfileDisplay label only
Hoststring(required)Hostname or IP — anything ssh accepts
Portnumber22TCP port
Usernamestring(required)Remote SSH user

Authentication

FieldTypeDefaultDescription
AuthenticationenumprivateKeyOne of privateKey, password, agent
Private key pathstringPath to private key file; ~ expanded at runtime

See SSH config & keys for what each method means.

Remote vault

FieldTypeDefaultDescription
Remote vault pathstring(required)Absolute or ~-relative path; e.g. /home/pi/notes, ~/work/vault. Must exist; the plugin will not auto-create it.

Transport

FieldTypeDefaultDescription
Modeenumsftpsftp (direct SFTP — current default) or rpc (auto-deploys daemon, lower latency)
Daemon socket pathstring.obsidian-remote/server.sock (home-relative)Unix socket the daemon listens on (rpc mode)
Daemon token pathstring.obsidian-remote/token (home-relative)Auth token file location (rpc mode)

The remote daemon binary path is fixed at ~/.obsidian-remote/server (not user-configurable in the current UI).

rpc mode is faster (~10x lower per-op latency than SFTP) and supports server-push notifications via fs.watch. sftp is the safer fallback when you cannot deploy a binary on the remote.

Jump hosts

Click Add jump host under a profile. Each entry has its own Host / Port / Username / Auth. Hops chain in order. See Jump hosts for the model.

Where settings live

<vault>/.obsidian/plugins/remote-ssh/data.json

Passwords are never persisted. Private key paths are stored; the keys themselves are NOT copied into the plugin (read fresh each connect).

If you sync your .obsidian directory across machines, your profile list syncs too — be aware that Private key path is a path that may not exist on every device.

For the on-disk schema (every field, every default, hand-editing rules), see data.json schema reference.

Next: This device.