RHEL: Enabling standard ftp/telnet

# Tested on RHEL 5

# By default system is as secured as to be accesible only via ssh/sftp.


# Enabling ftp
# ------------------------------------------------------------------------------------------

# 1.- Edit File /etc/xinetd.d/gssftp and change following line:

# from

   disable = yes

# to

   disable = no

# This modification can be carried out by issuing 'chkconfig' command too:

chkconfig gssftp [ on | off ]


# In the same file, replace this line:

   server_args = -l -a

# by

   server_args = -l



# 2.- Reiniciar el demonio xinetd

/etc/init.d/xinetd restart

# or

service xinetd restart

# or

skill -HUP xinetd

# or

kill -HUP <xinetd_PID>




# Enabling telnet
# ------------------------------------------------------------------------------------------

# 1.- If not installed, install a telnet server, for instance telnet-server-0.17-39.el5


# 2.- Disable (if enabled) kerberos telnet service and enabled the new one:

chkconfig krb5-telnet off
chkconfig ekrb5-telnet off

chkconfig telnet on

chkconfig --list | grep -i telnet
   ekrb5-telnet:   off
   krb5-telnet:    off
   telnet:         off


# 3.- Edit /etc/securetty file and add new access for pts connections:
[...]
    pts/0
    pts/1
    pts/2
    pts/3
    pts/4
    pts/5
    pts/6
    pts/7
    pts/8
    pts/9
    pts/10
    pts/11


# 4.- Restart xinetd daemon

/etc/init.d/xinetd restart

# or

service xinetd restart

# or

skill -HUP xinetd

# or

kill -HUP xinetd


# 5.- In case of access problems, comment out following line in /etc/pam.d/login file:

   auth required pam_securetty.so

# and restart xinetd daemon



# Note: Take into account that it may be necessary to adjust conveniently iptables subsystem.
#       In addition to this, on RHEL 6, if active, we'll have to adjust SELinux configuration.

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Understanding logrotate utility part 1
Viewed 1482 times since Fri, Nov 30, 2018
Easily Monitor CPU Utilization in Linux Terminal With Stress Terminal UI
Viewed 3658 times since Thu, Apr 18, 2019
Linux - How to monitor CPU usage
Viewed 6111 times since Fri, Jun 8, 2018
RHEL: Allowing users to ’su’ to "root" / Allowing ’root’ to login directly to the system using ’ssh’
Viewed 2503 times since Sat, Jun 2, 2018
20 Linux YUM (Yellowdog Updater, Modified) Commands for Package Management YUM
Viewed 10996 times since Thu, Oct 25, 2018
UUIDs and Linux: Everything you ever need to know [Update]
Viewed 4716 times since Tue, Jul 17, 2018
Linux Cluster Tutorial
Viewed 1720 times since Sat, Sep 29, 2018
Df command in Linux not updating actual diskspace, wrong data
Viewed 2573 times since Wed, May 30, 2018
Fix rpmdb: Thread died in Berkeley DB library
Viewed 20620 times since Fri, Feb 14, 2020
Secure Remote Logging to Central Log Server Using RSYSLOG on CentOS 6 / CentOS 7 and stunnel
Viewed 3291 times since Sun, Dec 6, 2020