-`LIBGKFS_OFI_INTERFACE` - Force the client-side libfabric interface to use (equivalent to `FI_SOCKETS_IFACE`). For `ofi+sockets`, GekkoFS validates that the named local interface exists before initializing Margo.
-`LIBGKFS_RPC_LOOKUP_RETRIES` - Endpoint lookup attempts during client startup and malleability control RPC setup, in `[1,20]` (default: `3`).
-`LIBGKFS_RPC_LOOKUP_BACKOFF_MS` - Initial endpoint-lookup retry backoff, in milliseconds, in `[1,10000]`; retries use bounded exponential backoff with jitter (default: `50`).
-`LIBGKFS_RPC_TIMEOUT_MS` - Optional per-RPC deadline, in milliseconds, in
`[0,600000]` (default: `0`, disabled). The value is read once during client
startup. A deadline cancels the local Thallium request and reports a timeout;
it does not retry writes or other potentially non-idempotent operations.
This prevents clients from binding to loopback (`127.0.0.1`) when daemons are on real NICs (e.g., `ib0`).
Required in malleable/HPC environments where the client may resolve to a loopback address.