Telnet and system root password can differ?

-1

I am just curious of this, so:

if I change my "root" password using passwd, does this by default change my telnet and ftp password?

Also, is it possible to change telnet and ftp "root" account password differently from the system "root" account password?

Susan Alley

Posted 2012-07-30T08:04:37.900

Reputation: 11

If you don't have a valid reason to use telnet, I would advice to use Secure Shell instead (SSH). – Marco – 2012-07-30T08:17:00.137

Answers

1

usually telnet ftp and so on on Linux rely on PAM.

root will therefore always have the same password to be used with different services.

Some ftp implementations maintain their own user db and may not rely on PAM and you may have different passwords then.

Anyway it's verly likely that services as telnet, ftp will not allow root user, as they do not transfer data encrypted but plain and anyone on the network could read the passwords

user118305

Posted 2012-07-30T08:04:37.900

Reputation:

0

Telnet and ftp servers usually use Linux users for login. So if you change root password, root passwords for telnet and ftp will also change.

For the second question. You can add another user, login as him and run su command to change user to root. Or you can use sudo for commands that need root privileges.

netuser24

Posted 2012-07-30T08:04:37.900

Reputation: 21