At that time, I simply thought that it is umask. So I added umask to ~/.bashrc and ~/.bash_profile.
But nothing to change. It means that I need think logically.
User login -> ssh -> pam.d/ssh -> /etc/profile (~/.bash_profile)
Why?
A few second I see that user's ssh/ sftp has shell environment is /sbin/nologin. So it is not affected by ~/.bash_profile, also /etc/profile
And then I need to add "umask" on "ssh" step of flowchart:
User login -> ssh -> pam.d/ssh -> /etc/profile (~/.bash_profile)
I go to /etc/ssh/sshd_config
# override default of no subsystems#Subsystem sftp /usr/libexec/openssh/sftp-serverSubsystem sftp internal-sftpGatewayPorts no
add "-u 0022" umask as below
# override default of no subsystems
#Subsystem sftp /usr/libexec/openssh/sftp-server
Subsystem sftp internal-sftp -u 0022
GatewayPorts no
After that, I re-login & create a file and I see that umask' file is 0022.
That's cool!
Tiến Phan - R0039
Knowledge is Endless
Sharing for Success
0 nhận xét:
Post a Comment