Раздельный ФТП доступ

12 3
D
На сайте с 28.06.2008
Offline
1101
2337

Есть впс с Дебианом 8 без панели. Сделал клон сайта и хочу дать ФТП доступ разработчику. Дайте плиз ссылочку как проще всего добавить нового юзера, который бы имел доступ для правки только в указанную директорию?

baas
На сайте с 17.09.2012
Offline
161
#1
Dram:
Есть впс с Дебианом 8 без панели. Сделал клон сайта и хочу дать ФТП доступ разработчику. Дайте плиз ссылочку как проще всего добавить нового юзера, который бы имел доступ для правки только в указанную директорию?

Я так для ограничивал sftp посещаемость для прогеров.

Настройка BSD систем. (https://www.fryaha.ru) Знание сила, незнание Рабочая сила!
D
На сайте с 28.06.2008
Offline
1101
#2

У меня есть каталог /var/www/com

Может можно как-то создать нового юзера и дать ему права на этот каталог?

---------- Добавлено 10.08.2017 в 11:34 ----------

Так , юзера создал.

useradd -m -d /var/www/com com

При попытке зайти через sftp Файлзилы - он попадает в нужную директорию, НО может пониматься выше.

Как запретить подниматься выше?

S2
На сайте с 30.12.2015
Offline
307
#3
Dram:
У меня есть каталог /var/www/com
Может можно как-то создать нового юзера и дать ему права на этот каталог?

---------- Добавлено 10.08.2017 в 11:34 ----------

Так , юзера создал.


При попытке зайти через sftp Файлзилы - он попадает в нужную директорию, НО может пониматься выше.

Как запретить подниматься выше?

А какой FTP сервер стоит?

DefaultRoot ~

в конфиге должно помочь.

D
На сайте с 28.06.2008
Offline
1101
#4

FTP сервер сервера нет, я подключаюсь через sftp Файлзилы. И хочу дать доступ так де по sftp на нужный каталог для программиста

---------- Добавлено 10.08.2017 в 11:54 ----------

Добавил в ssh_config

Subsystem sftp internal-sftp
Match User com
X11Forwarding no
AllowTcpForwarding no
AllowAgentForwarding no
ermitTunnel no
ForceCommand internal-sftp
ChrootDirectory /var/www/com

перезапустил ssh - не помогло. Юзер com по прежнему может подниматься выше домашенй категории

baas
На сайте с 17.09.2012
Offline
161
#5
Dram:
FTP сервер сервера нет, я подключаюсь через sftp Файлзилы. И хочу дать доступ так де по sftp на нужный каталог для программиста

---------- Добавлено 10.08.2017 в 11:54 ----------

Добавил в ssh_config



перезапустил ssh - не помогло. Юзер com по прежнему может подниматься выше домашенй категории

Должно работать.

Subsystem       sftp    internal-sftp

Match User наш_пользователь
ChrootDirectory /usr/local/www
AllowTCPForwarding no
X11Forwarding no

Покажи конфиг sshd_config

И покажи запись пользователя в файле /etc/passwd

D
На сайте с 28.06.2008
Offline
1101
#6
baas:
И покажи запись пользователя в файле /etc/passwd

com:x:1000:1000::/var/www/com:/bin/sh

# This is the ssh client system-wide configuration file. See

# ssh_config(5) for more information. This file provides defaults for

# users, and the values can be changed in per-user configuration files

# or on the command line.

# Configuration data is parsed as follows:

# 1. command line options

# 2. user-specific file

# 3. system-wide file

# Any configuration value is only changed the first time it is set.

# Thus, host-specific definitions should be at the beginning of the

# configuration file, and defaults at the end.

# Site-wide defaults for some commonly used options. For a comprehensive

# list of available options, their meanings and defaults, please see the

# ssh_config(5) man page.

Host *

# ForwardAgent no

# ForwardX11 no

# ForwardX11Trusted yes

# RhostsRSAAuthentication no

# RSAAuthentication yes

# PasswordAuthentication yes

# HostbasedAuthentication no

# GSSAPIAuthentication no

# GSSAPIDelegateCredentials no

# GSSAPIKeyExchange no

# GSSAPITrustDNS no

# BatchMode no

# CheckHostIP yes

# AddressFamily any

# ConnectTimeout 0

# StrictHostKeyChecking ask

# IdentityFile ~/.ssh/identity

# IdentityFile ~/.ssh/id_rsa

# IdentityFile ~/.ssh/id_dsa

# Port 22

# Protocol 2,1

# Cipher 3des

# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc

# MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160

# EscapeChar ~

# Tunnel no

# TunnelDevice any:any

# PermitLocalCommand no

# VisualHostKey no

# ProxyCommand ssh -q -W %h:%p gateway.example.com

# RekeyLimit 1G 1h

SendEnv LANG LC_*

HashKnownHosts no

GSSAPIAuthentication yes

GSSAPIDelegateCredentials no

Subsystem sftp internal-sftp

Match User com

X11Forwarding no

AllowTcpForwarding no

AllowAgentForwarding no

ermitTunnel no

ForceCommand internal-sftp

ChrootDirectory /var/www/com

---------- Добавлено 10.08.2017 в 13:46 ----------

такое впечатление что файл ssh_config не обрабатывается.

прописал туда

DenyGroups com

в надежде открубить доступ юзера по ssh (юзер в группу добавил и проверил что он там), перезагрузил ssh - но доступ остался.

baas
На сайте с 17.09.2012
Offline
161
#7
Dram:
com:x:1000:1000::/var/www/com:/bin/sh


# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.

# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.

# Site-wide defaults for some commonly used options. For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.

Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
# GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# GSSAPIKeyExchange no
# GSSAPITrustDNS no
# BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
# MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
# VisualHostKey no
# ProxyCommand ssh -q -W %h:%p gateway.example.com
# RekeyLimit 1G 1h
SendEnv LANG LC_*
HashKnownHosts no
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no

Subsystem sftp internal-sftp
Match User com
X11Forwarding no
AllowTcpForwarding no
AllowAgentForwarding no
ermitTunnel no
ForceCommand internal-sftp
ChrootDirectory /var/www/com

---------- Добавлено 10.08.2017 в 13:46 ----------

такое впечатление что файл ssh_config не обрабатывается.
прописал туда

в надежде открубить доступ юзера по ssh (юзер в группу добавил и проверил что он там), перезагрузил ssh - но доступ остался.

Укажи настройки в этом файле /etc/ssh/sshd_config

D
На сайте с 28.06.2008
Offline
1101
#8
baas:
Укажи настройки в этом файле /etc/ssh/sshd_config

ну выше ведь добавил


# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.

# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.

# Site-wide defaults for some commonly used options. For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.

Host *
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
# GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# GSSAPIKeyExchange no
# GSSAPITrustDNS no
# BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
# MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
# VisualHostKey no
# ProxyCommand ssh -q -W %h:%p gateway.example.com
# RekeyLimit 1G 1h
SendEnv LANG LC_*
HashKnownHosts no
GSSAPIAuthentication yes
GSSAPIDelegateCredentials no

DenyGroups com

Subsystem sftp internal-sftp
Match User com
X11Forwarding no
AllowTcpForwarding no
AllowAgentForwarding no
ermitTunnel no
ForceCommand internal-sftp
ChrootDirectory /var/www/com
baas
На сайте с 17.09.2012
Offline
161
#9
Dram:
ну выше ведь добавил

Это разные файлы если присмотреться.

такое впечатление что файл ssh_config не обрабатывается.

/etc/ssh/sshd_config

D
На сайте с 28.06.2008
Offline
1101
#10

Сори, не заметил

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
HostKey /etc/ssh/ssh_host_ed25519_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 1024

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes



---------- Добавлено 10.08.2017 в 14:28 ----------

ааа так я не втот файл все добавлял :)))

---------- Добавлено 10.08.2017 в 15:27 ----------

Теперь такая беда

прописываю в конец файла sshd_config

#sftp-server
Subsystem sftp internal-sftp

Match User com
X11Forwarding no
AllowTcpForwarding no
ForceCommand internal-sftp
ChrootDirectory /var/www/com

перезапускаю сервис и уменя вырубает ssh у всех в том числе и у рута. Слава богу ссесию не закрывает и можно откатить изменения.

Что не так?

12 3

Авторизуйтесь или зарегистрируйтесь, чтобы оставить комментарий