maintenance:general:file_transfer_account_setup
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
maintenance:general:file_transfer_account_setup [2019/11/27 16:42] – [MySecureShell setup] yspeerte | maintenance:general:file_transfer_account_setup [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== File-transfer Account setup ===== | ||
+ | ==== Introduction ==== | ||
+ | |||
+ | NetYCE supports with the introduction of version 7.1.x the file-transfer protocols **SCP**, **SFTP**, **FTP** and **TFTP**. These file-transfers concern primarily the transfers between the NetYCE servers and the network devices but could be applied to other sources if desired. | ||
+ | |||
+ | Where the previous NetYCE releases used primarily TFTP for file transfers, this protocol is now considered outdated, insecure and too slow for modern operations. The FTP protocol is considered a step up in security since it requires authentication, | ||
+ | |||
+ | With the release of version 7.0.x support of the SFTP and FTP protocols was optionally available and was used selectively by some of the vendor modules. Now all four protocols are supported consistently throughout all vendor modules, provided the vendor supports it. | ||
+ | |||
+ | Several requirements apply to the server in order to support the file-transfers in the way the vendor modules expect it. They reflect authentication and security aspects when dealing with incoming transfer requests: | ||
+ | |||
+ | * A dedicated functional (transfer)user with (non-expiry) password | ||
+ | * that has the SAME file permissions as the ' | ||
+ | * and is allowed to access the SCP, SFTP and FTP services ONLY (no shell login). | ||
+ | * The SCP, SFTP and FTP services will be contacted by the devices to connect INTO the NetYCE server to pull or push the files. | ||
+ | * These incoming transfer sessions are initiated by the NetYCE change jobs, never ' | ||
+ | * SCP, SFTP and FTP sessions must be able to both read and write files. File ownership for ' | ||
+ | * The SCP, SFTP and FTP directory trees will be shared with the TFTP service. | ||
+ | * All transfer sessions will be locked within the SCP/ | ||
+ | |||
+ | |||
+ | For the server to securely offer these four protocols, several services need to be installed, activated and configured properly. This article describes the steps required to do this. | ||
+ | |||
+ | |||
+ | ==== Definitions ==== | ||
+ | |||
+ | NetYCE will support SCP, SFTP and FTP and TFTP: | ||
+ | |||
+ | **SCP** - SSH Copy | ||
+ | A variant of BSD '' | ||
+ | |||
+ | **SFTP** - SSH File Transfer Protocol | ||
+ | SFTP runs over an SSH session. A file transfer protocol that has nothing in common with original FTP and has been around since late 1990s. SFTP is sometimes called " | ||
+ | |||
+ | **FTP** - File Transfer Protocol | ||
+ | The plain old FTP protocol that has been around since 1970s. Uses unencrypted authentication and sessions. | ||
+ | |||
+ | **TFTP** - Trivial File Transfer Protocol | ||
+ | This protocol uses no authentication, | ||
+ | |||
+ | NetYCE will //not// support Secure FTP over SSL: | ||
+ | |||
+ | **Secure FTP** | ||
+ | Plain FTP over TLS/SSL channel. This name is the most confusing, because it is used to refer to either of the two different protocols. Whenever this name is used, it is necessary to specify whether the SSH-based or SSL-based file transfer protocol is meant. | ||
+ | |||
+ | |||
+ | ==== Ycicle user ==== | ||
+ | |||
+ | The dedicated '' | ||
+ | |||
+ | The SCP, SFTP and FTP configurations will ensure the dedicated '' | ||
+ | |||
+ | The '' | ||
+ | |||
+ | A sample of the relevant lines from ''/ | ||
+ | |||
+ | Example of ''/ | ||
+ | < | ||
+ | yce: | ||
+ | ycicle: | ||
+ | </ | ||
+ | |||
+ | The default password for the '' | ||
+ | |||
+ | <code bash> | ||
+ | $ ./ | ||
+ | missing userid | ||
+ | usage: api_crypt.sh (-e|-d) < | ||
+ | -e | ||
+ | -d | ||
+ | |||
+ | $ ./ | ||
+ | encrypting password for ' | ||
+ | U2FsdGVkX18v5ZAiL69H/ | ||
+ | |||
+ | $ ./ | ||
+ | decrypting password for ' | ||
+ | ycicle | ||
+ | </ | ||
+ | |||
+ | The created encrypted password is then entered in the ''/ | ||
+ | < | ||
+ | our $sftp_user = " | ||
+ | our $sftp_passwd = " | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== Firewall settings ==== | ||
+ | |||
+ | Since it is common to position a firewall between the network devices and the NetYCE servers, care should be taken to install the appropriate rules to allow the file transfers using the various protocols. | ||
+ | |||
+ | In all cases the file transfers will be initiated by the devices when contacting the NetYCE servers. Normally a ssh/telnet session is established from the NetYCE server to the device first, then the device cli is used to retrieve the desired files. The file transfer authentication is therefore entered on the device by the NetYCE job session. | ||
+ | |||
+ | The (default) port numbers and protocol(s) the various services use: | ||
+ | |||
+ | ^ Service ^ proto ^ port-number(s) ^ | ||
+ | | Telnet | tcp | 23 | | ||
+ | | SSH | tcp | 22 | | ||
+ | | SCP | tcp | 22 | | ||
+ | | SFTP | tcp | 22 | | ||
+ | | FTP | tcp | 20, 21 | | ||
+ | | TFTP | udp | 69 | | ||
+ | |||
+ | |||
+ | ==== Required packages ==== | ||
+ | |||
+ | Two additional Rhel/Centos packages are required to support SCP, SFTP and FTP. | ||
+ | |||
+ | == MySecureShell== | ||
+ | To enforce a jail for SCP and SFTP sessions to lock the transfers within the / | ||
+ | |||
+ | RHEL6.x / CentOS6.x: Install the package '' | ||
+ | RHEL7.x / CentOS7.x: Install the package '' | ||
+ | |||
+ | The rpm package can be downloaded from [[http:// | ||
+ | |||
+ | To install using '' | ||
+ | Add the following as the content of this file: | ||
+ | <code ini> | ||
+ | [mysecureshell] | ||
+ | name=MySecureShell | ||
+ | baseurl=http:// | ||
+ | enabled=1 | ||
+ | gpgcheck=0 | ||
+ | </ | ||
+ | |||
+ | The yum install command then becomes (as root): | ||
+ | < | ||
+ | # yum install mysecureshell | ||
+ | </ | ||
+ | |||
+ | This will install the binary ''/ | ||
+ | |||
+ | |||
+ | == VsFtpd == | ||
+ | The FTP protocol requires a separate daemon to offer the service. NetYCE uses the commonly used package " | ||
+ | |||
+ | RHEL6.x / CentOS6.x: Install the package '' | ||
+ | RHEL7.x / CentOS7.x: Install the package '' | ||
+ | |||
+ | The rpm files can be downloaded from centos.pkgs.org for | ||
+ | [[https:// | ||
+ | [[https:// | ||
+ | |||
+ | The yum install command (as root): | ||
+ | < | ||
+ | # yum install vsftpd | ||
+ | </ | ||
+ | |||
+ | == Ftp and Sftp clients == | ||
+ | For testing purposes it can be very useful to install ftp and sftp clients. Again '' | ||
+ | |||
+ | |||
+ | ==== SCP and SFTP Setup ==== | ||
+ | |||
+ | The SFTP implementation uses the Secure FTP server that is part of '' | ||
+ | |||
+ | These requirements are met using: | ||
+ | |||
+ | * an ' | ||
+ | * ensuring that the ' | ||
+ | * changing the tftp root from ''/ | ||
+ | * The entire directory tree **public** must ' | ||
+ | * change the sshd configuration in ''/ | ||
+ | |||
+ | < | ||
+ | # NetYCE 2019 | ||
+ | |||
+ | Protocol 2 | ||
+ | |||
+ | SyslogFacility AUTHPRIV | ||
+ | |||
+ | PasswordAuthentication yes | ||
+ | |||
+ | ChallengeResponseAuthentication no | ||
+ | |||
+ | GSSAPIAuthentication yes | ||
+ | GSSAPICleanupCredentials yes | ||
+ | |||
+ | UsePAM yes | ||
+ | PermitRootLogin no | ||
+ | |||
+ | AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES | ||
+ | AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT | ||
+ | AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE | ||
+ | AcceptEnv XMODIFIERS | ||
+ | |||
+ | X11Forwarding no | ||
+ | IgnoreRhosts yes | ||
+ | PrintLastLog yes | ||
+ | |||
+ | # Set Ciphers and MACs | ||
+ | Ciphers aes128-ctr, | ||
+ | MACs hmac-ripemd160, | ||
+ | |||
+ | # no reverse lookups | ||
+ | UseDNS no | ||
+ | |||
+ | # use default subsystem, not the internal-sftp | ||
+ | # Subsystem | ||
+ | Subsystem | ||
+ | |||
+ | # ' | ||
+ | # do not use the chroot or forcecommand options. | ||
+ | Match User ycicle | ||
+ | | ||
+ | | ||
+ | # ChrootDirectory / | ||
+ | # ForceCommand internal-sftp | ||
+ | # ForceCommand / | ||
+ | |||
+ | </ | ||
+ | |||
+ | > Note: NetYCE patch nr ' | ||
+ | |||
+ | This patch can be executed (as ' | ||
+ | <code bash> | ||
+ | $ cd / | ||
+ | $ / | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== MySecureShell setup === | ||
+ | |||
+ | MySecureShell is an essential part of the SCP and SFTP configuration in that it allows to create chroot-ed environments for both SSH and SFTP without interfering with the FTP setup. | ||
+ | |||
+ | Its configuration file is ''/ | ||
+ | |||
+ | Create the following in '' | ||
+ | The limited download speeds (100mbps global and 10mbps per session) are intended as guidelines to prevent multiple | ||
+ | OS-file transfers to consume too much bandwidth. These values can be adjusted to suit server and network capabilities. | ||
+ | |||
+ | |||
+ | < | ||
+ | # MySecureShell Configuration File ## | ||
+ | # NetYCE 2019 | ||
+ | |||
+ | # Default rules for everybody | ||
+ | < | ||
+ | GlobalDownload | ||
+ | # o -> bytes k -> kilo bytes m -> mega bytes | ||
+ | GlobalUpload | ||
+ | Download | ||
+ | Upload | ||
+ | StayAtHome | ||
+ | VirtualChroot | ||
+ | LimitConnection | ||
+ | LimitConnectionByUser | ||
+ | LimitConnectionByIP | ||
+ | Home / | ||
+ | Shell / | ||
+ | IdleTimeOut | ||
+ | ResolveIP | ||
+ | IgnoreHidden | ||
+ | DirFakeUser | ||
+ | DirFakeGroup | ||
+ | DirFakeMode | ||
+ | #Add execution right for directory if read right is set | ||
+ | HideNoAccess | ||
+ | # | ||
+ | # | ||
+ | # | ||
+ | DefaultRights | ||
+ | # | ||
+ | ShowLinksAsLinks | ||
+ | ConnectionMaxLife | ||
+ | # | ||
+ | </ | ||
+ | |||
+ | <User ycicle> | ||
+ | Shell / | ||
+ | Home / | ||
+ | VirtualChroot | ||
+ | ResolveIP | ||
+ | IgnoreHidden | ||
+ | ShowLinksAsLinks | ||
+ | </ | ||
+ | |||
+ | #Include / | ||
+ | |||
+ | </ | ||
+ | |||
+ | ==== FTP Setup ==== | ||
+ | |||
+ | FTP access can be setup to function in conjunction with SFTP. It depends on the '' | ||
+ | |||
+ | The vsftpd package uses the configuration directory ''/ | ||
+ | |||
+ | < | ||
+ | -rw-r--r-- 1 root root 25 Mar 24 2017 chroot_list | ||
+ | -rw------- 1 root root 125 Mar 22 2017 ftpusers | ||
+ | -rw------- 1 root root 361 Mar 22 2017 user_list | ||
+ | -rw------- 1 root root 547 Mar 24 2017 vsftpd.conf | ||
+ | </ | ||
+ | |||
+ | The configuration file '' | ||
+ | |||
+ | == vsftpd.conf RHEL6/ | ||
+ | < | ||
+ | # NetYCE 2018 | ||
+ | |||
+ | anonymous_enable=NO | ||
+ | local_enable=YES | ||
+ | write_enable=YES | ||
+ | local_umask=002 | ||
+ | dirmessage_enable=YES | ||
+ | xferlog_enable=YES | ||
+ | connect_from_port_20=YES | ||
+ | xferlog_file=/ | ||
+ | vsftpd_log_file=/ | ||
+ | xferlog_std_format=YES | ||
+ | chroot_list_enable=YES | ||
+ | listen=YES | ||
+ | |||
+ | pam_service_name=vsftpd | ||
+ | userlist_enable=YES | ||
+ | tcp_wrappers=YES | ||
+ | |||
+ | local_root=/ | ||
+ | secure_chroot_dir=/ | ||
+ | chown_username=yce.nms | ||
+ | guest_enable=NO | ||
+ | |||
+ | force_dot_files=NO | ||
+ | hide_file={.yce_prop} | ||
+ | delete_failed_uploads=YES | ||
+ | log_ftp_protocol=NO | ||
+ | reverse_lookup_enable=NO | ||
+ | </ | ||
+ | |||
+ | == vsftpd.conf RHEL7/ | ||
+ | < | ||
+ | # NetYCE 2018 | ||
+ | # vsftpd IPv4 + IPv6, binds all addresses | ||
+ | |||
+ | anonymous_enable=NO | ||
+ | local_enable=YES | ||
+ | write_enable=YES | ||
+ | local_umask=002 | ||
+ | dirmessage_enable=YES | ||
+ | xferlog_enable=YES | ||
+ | connect_from_port_20=YES | ||
+ | xferlog_file=/ | ||
+ | vsftpd_log_file=/ | ||
+ | xferlog_std_format=YES | ||
+ | chroot_list_enable=YES | ||
+ | listen=NO | ||
+ | listen_ipv6=YES | ||
+ | |||
+ | pam_service_name=vsftpd | ||
+ | userlist_enable=YES | ||
+ | tcp_wrappers=YES | ||
+ | |||
+ | local_root=/ | ||
+ | secure_chroot_dir=/ | ||
+ | chown_username=yce.nms | ||
+ | guest_enable=NO | ||
+ | force_dot_files=NO | ||
+ | hide_file={.yce_prop} | ||
+ | delete_failed_uploads=YES | ||
+ | log_ftp_protocol=NO | ||
+ | </ | ||
+ | |||
+ | The setup refers to the '' | ||
+ | < | ||
+ | # NetYCE 2018 | ||
+ | |||
+ | ycicle | ||
+ | ftp | ||
+ | |||
+ | </ | ||
+ | |||
+ | The '' | ||
+ | |||
+ | The vsftpd is like the other daemons and application processes under control of yce_psmon. | ||
+ | |||
+ | > Note: The logfile ''/ | ||
+ | |||
+ | ==== download scp-config files ==== | ||
+ | |||
+ | This tgz contains MysecureShell rpm file and the config files shown above | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | |||