How can we show the TOKEN value while sshing to a remote server?
How can we show the TOKEN value while sshing to a remote server?
from the man page of sshd_config I see belows:
TOKENS Arguments to some keywords can make use of tokens, which are expanded at runtime: %% A literal `%'. %D The routing domain in which the incoming connection was received. %F The fingerprint of the CA key. %f The fingerprint of the key or certificate. %h The home directory of the user. %i The key ID in the certificate. %K The base64-encoded CA key. %k The base64-encoded key or certificate for authentication. %s The serial number of the certificate. %T The type of the CA key. %t The key or certificate type. %U The numeric user ID of the target user. %u The username.
and from the man page of ssh_config I find belows:
TOKENS Arguments to some keywords can make use of tokens, which are expanded at runtime: %% A literal `%'. %C Hash of %l%h%p%r. %d Local user's home directory. %h The remote hostname. %i The local user ID. %L The local hostname. %l The local hostname, including the domain name. %n The original remote hostname, as given on the command line. %p The remote port. %r The remote username. %T The local tun(4) or tap(4) network interface assigned if tunnel forwarding was requested, or "NONE" otherwise. %u The local username.
Basically I want them to expand to some echo command so that I can see what is the current value when I ssh to a box, both from the client side and server side. I would really appreciate if someone can direct on how to achive it.
Maybe describe what exactly you're trying to see + someone can assist.