Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Comments on Mac SSH sends some environment variables by default

Post

Mac SSH sends some environment variables by default

+1
−0

Why does the default SSH client behavior for MacOS send LANG and LC_* environment variables to the server? If I consult man ssh_config, it says

SendEnv

[…] The default is not to send any environment variables.

Why would Apple decide to override it? (And if so, why leave the documentation with its original text?)

This snippet is at the bottom of /etc/ssh/ssh_config:

Host *
    SendEnv LANG LC_*
History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

2 comment threads

You may be misunderstanding the meaning of "default" here (1 comment)
Not unique to Apple (2 comments)
You may be misunderstanding the meaning of "default" here

"why leave the documentation with its original text?" – Because "the default" the manual talks about will be applied if there is no SendEnv in the config at all. Any SendEnv inside /etc/ssh/ssh_config is not "the default" in this context, merely by its existence.

For comparison: in Debian the manual states "that the Debian openssh-client package sets several options as standard in /etc/ssh/ssh_config which are not the default in ssh(1)", then it explicitly mentions SendEnv LANG LC_* as one of them. So it calls this "standard", not "the default", and where it explains SendEnv it says "the default is not to send any environment variables".

I note the manual does use the word "default" also to describe entries in config files ("more host-specific declarations should be given near the beginning of the file, and general defaults at the end"), so it's not as strict as it should be. No wonder you called the modified value "the default SSH client behavior" and got confused.