top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Why should you avoid the Telnet to administer a Linux system remotely?

+2 votes
390 views
Why should you avoid the Telnet to administer a Linux system remotely?
posted Feb 11, 2016 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Telnet use most insecure method for communication. It send data across the network in plain text format. Someone easily find out the password using the network tool.

answer Feb 11, 2016 by Manikandan J
Similar Questions
+1 vote

I've been asked to give someone sudo rights across an entire environment without the benefit of something like puppet or chef or cfengine et al.

What I've come up with so far is this:

ssh -t miaprbicsra04v sudo -S /bin/echo "rsherman ALL=(ALL) NOPASSWD: /sbin/service /bin/rm /usr/bin/du /bin/df" >> sudo tee /etc/sudoers

Right now that's just to one host, but I plan on substituting a list of hosts once I get farther along. Problem is, the output hangs on the tee command. Not sure why. Any suggestions?

+2 votes

I have a setup where eth0 and eth1 interfaces are in same broadcast domain.

But i have a virtual IP configured on eth1 and a physical ip on eth0.
It is observed that if eth0 is default route then eth0 will respond to arp request for the IP configured on eth1.

This would cause an issue since traffic will be routed via eth0.

...