Page 2 of 2 FirstFirst 12
Results 11 to 11 of 11

Thread: How to LOGIN as root on my Ubuntu Server

  1. #11

    Re: How to LOGIN as root on my Ubuntu Server

    https://www.digitalocean.com/communi...on-a-linux-vps

    Strong ssh-key generation:
    Code:
    ssh-keygen -f /path/to/keyfile_rsa -t rsa -N '' -b 4096 -q
    Basic usage:
    Code:
    ssh -i /path/to/keyfile_rsa <user>@host
    wrt: /etc/ssh/sshd_config
    and
    Code:
    PermitRootLogin yes
    PasswordAuthentication yes
    is just wrong, Wrong, Wrong on public-facing servers.

    In a controlled environment like Virtualbox, meh, have to practice somewhere. Right?

    Very Important distinction.
    Last edited by Habitual; September 13th, 2016 at 09:53 PM.
    Windows assumes the user is an idiot.
    Linux demands proof.

Page 2 of 2 FirstFirst 12

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •