You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new session with OpenSSH you inherit only a limited number of environment variables:
DISPLAY
HOME
LOGNAME
MAIL
PATH
SSH_ASKPASS
SSH_AUTH_SOCK
SSH_CONNECTION
SSH_ORIGINAL_COMMAND
SSH_TTY
TZ
USER
After that, if PermitUserEnvironment true is set in sshd_config, sshd will read in ~/.ssh/environment and set these in your environment.
At the moment, Teleport supports the first half (getting the predefined set of environment variables), Teleport should also respect and environment file if it exists and this feature is enabled on the server.
The text was updated successfully, but these errors were encountered:
And if you tsh localhost (as yourself) you should see the full environment at the time of teleport start exposed to your session, so echo $FOO will print "BAR".
* display audit log events with UTC time
* added UTC to column headers on recordings and audit log
* prettier
* moved utc creation to api response
* move timezone offset to display time function
* removed unused imports
* display date string only
When creating a new session with OpenSSH you inherit only a limited number of environment variables:
After that, if
PermitUserEnvironment true
is set insshd_config
,sshd
will read in~/.ssh/environment
and set these in your environment.At the moment, Teleport supports the first half (getting the predefined set of environment variables), Teleport should also respect and environment file if it exists and this feature is enabled on the server.
The text was updated successfully, but these errors were encountered: