Which version of Linux
Question ID: 107933
1
0

I’m using SiteScope to monitor by ubuntu Linux server. I see that SiteScope uses Telnet to make the connection. How to I get Telnet active on my Linux server?

Marked as spam
Posted by (Questions: 23, Answers: 4)
Asked on October 26, 2017 5:28 pm
29 views
Answers (1)
1
Private answer

You will need both the xinetd and telnetd packages. Just run the command:
sudo apt-get install xinetd telnetd

Next, edit/etc/inetd.confusing your favorite file editor with root permissions, adding this line:

telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd

Next, edit/etc/xinetd.conf, and make its content look like following: If the file doesn't exit, create the file and make sure that the file permissions are --rw-rw-r- using chmod u=rw,g=rw,o=r xinetd.conf

# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}

Marked as spam
Posted by (Questions: 4, Answers: 41)
Answered on October 26, 2017 5:29 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top