I have client1 and client2 both are linux machines. From client1:
client1$ssh root@client2 "env"
it displays list of ssh variables from client2.
Things I did on client2:
I want to add new variable to client2 . So I edited sshd_config to
PermitUserEnvironment yes
and created a file environment under ssh with following entry Hi=Hello
then restart sshd
/etc/init.d/sshd
Now from client1 trying the same command
client1$ssh root@client2 "env"
didn't provide the new variable "Hi".
ref: http://www.raphink.info/2008/09/forcing-environment-in-ssh.html http://www.netexpertise.eu/en/ssh/environment-variables-and-ssh.html/comment-page-1#comment-1703
/etc/ssh/environmentfor sure, but/etc/environmentshould work (at least it does for me). – Raphink Sep 16 '10 at 16:37