ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Securing SSH

    IT Discussion
    ssh ssh keys security
    11
    60
    5.2k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller @hobbit666
      last edited by

      @hobbit666 said in Securing SSH:

      Do i need a user called myname (or [email protected]) on the zabbix server?

      No, you use any name you want on Zabbix.

      JaredBuschJ 1 Reply Last reply Reply Quote 0
      • JaredBuschJ
        JaredBusch @scottalanmiller
        last edited by

        @scottalanmiller said in Securing SSH:

        @hobbit666 said in Securing SSH:

        Do i need a user called myname (or [email protected]) on the zabbix server?

        No, you use any name you want on Zabbix.

        More specifically, on your desktop get used to typing ssh [email protected] instead of just ssh ip.add.re.ss

        Or create a command alias: https://docs.microsoft.com/en-us/windows/console/console-aliases

        1 Reply Last reply Reply Quote 2
        • hobbit666H
          hobbit666
          last edited by

          Updated 2nd post

          1 Reply Last reply Reply Quote 0
          • DashrenderD
            Dashrender @hobbit666
            last edited by

            @hobbit666 said in Securing SSH:

            Steps I used to connect to my Zabbix Server (CentOS 😎 from Win10

            created a folder c:\users<username>.ssh
            in powershell ran this command

             ssh-keygen -o -a 100 -t ed25519 -C "[email protected] Desktop"
            

            Typed on the password i wanted to use (you can run a different command to have a password less key - see below)
            This generated two files in .ssh - id_ed25519 and id_ed25519.pub

            still in powershell i ssh'd onto the zabbix server

            ssh <user>@<ip>
            

            Once in ran the following commands

            sudo mkdir ~/.ssh
            sudo nano ~/.ssh/authorized_keys
            

            copy the contents of the .pub file on the windows machine

            sudo chown YourUserName:YourUserName ~/.ssh -R
            sudo chmod 700 ~/.ssh
            sudo chmod 600 ~/.ssh/authorized_keys
            

            Then from powershell ssh <user>@<ip> and it just asked me for the key password and i'm in 😄

            Updated - 28/02/2020

            So all of the public keys go into that single authorized_keys file? or does each user on the remote system have their own authorized_keys file?

            hobbit666H JaredBuschJ 2 Replies Last reply Reply Quote 0
            • hobbit666H
              hobbit666 @Dashrender
              last edited by hobbit666

              @Dashrender To be honest that's my next step is now to make some keys for my laptop, and see how and where they go 🙂
              but my guess is in the same authorized_keys file on a separate line

              JaredBuschJ 1 Reply Last reply Reply Quote 0
              • JaredBuschJ
                JaredBusch @Dashrender
                last edited by

                @Dashrender said in Securing SSH:

                So all of the public keys go into that single authorized_keys file?

                It is in the user directory. All of that user's keys are there.

                But again, these are public keys.

                DashrenderD 1 Reply Last reply Reply Quote 0
                • JaredBuschJ
                  JaredBusch @hobbit666
                  last edited by JaredBusch

                  @hobbit666 said in Securing SSH:

                  @Dashrender To be honest that's my next step is now to make some keys for my laptop, and see how and where they go 🙂
                  but my guess is in the same authorized_keys file on a separate line

                  This is your friend.

                  ssh-copy-id -i ~/.ssh/id_ed25519.pub user@ip
                  

                  if you only have a single public key you can simplify it to

                  ssh-copy-id user@ip
                  

                  I specify because my desktop has a few different generated keys.
                  3ff95aa0-de1f-4a83-b1c3-74c0919f78c8-image.png

                  hobbit666H wirestyle22W 2 Replies Last reply Reply Quote 2
                  • DashrenderD
                    Dashrender @JaredBusch
                    last edited by

                    @JaredBusch said in Securing SSH:

                    @Dashrender said in Securing SSH:

                    So all of the public keys go into that single authorized_keys file?

                    It is in the user directory. All of that user's keys are there.

                    But again, these are public keys.

                    Yeah, I wasn't worried about a security situation... but I'm guessing by making the keys part of the profile on the end controlled device, that is what sets what user is logged in via the key, since there is no username associated with the key itself.
                    Just talking this through to myself.

                    Thanks.

                    JaredBuschJ 1 Reply Last reply Reply Quote 0
                    • JaredBuschJ
                      JaredBusch @Dashrender
                      last edited by

                      @Dashrender said in Securing SSH:

                      @JaredBusch said in Securing SSH:

                      @Dashrender said in Securing SSH:

                      So all of the public keys go into that single authorized_keys file?

                      It is in the user directory. All of that user's keys are there.

                      But again, these are public keys.

                      Yeah, I wasn't worried about a security situation... but I'm guessing by making the keys part of the profile on the end controlled device, that is what sets what user is logged in via the key, since there is no username associated with the key itself.
                      Just talking this through to myself.

                      Thanks.

                      The username is specified at login. this has nothing to do with the key.

                      ssh user@ip
                      

                      you can easily use this key for root if you like to be unsecure.

                      ssh root@ip
                      
                      DashrenderD 1 Reply Last reply Reply Quote 1
                      • hobbit666H
                        hobbit666 @JaredBusch
                        last edited by

                        @JaredBusch said in Securing SSH:

                        This is your friend.

                        ssh-copy-id -i ~/.ssh/id_ed25519.pub user@ip
                        

                        command not found in powershell 🙂 bu that's a windows problem.

                        DustinB3403D 1 Reply Last reply Reply Quote 0
                        • DustinB3403D
                          DustinB3403 @hobbit666
                          last edited by

                          @hobbit666 said in Securing SSH:

                          @JaredBusch said in Securing SSH:

                          This is your friend.

                          ssh-copy-id -i ~/.ssh/id_ed25519.pub user@ip
                          

                          command not found in powershell 🙂 bu that's a windows problem.

                          That's because windows doesn't have an ssh-copy-id function. You're expected to know to manually copy the file into .ssh

                          JaredBuschJ 1 Reply Last reply Reply Quote 1
                          • DashrenderD
                            Dashrender @JaredBusch
                            last edited by

                            @JaredBusch said in Securing SSH:

                            @Dashrender said in Securing SSH:

                            @JaredBusch said in Securing SSH:

                            @Dashrender said in Securing SSH:

                            So all of the public keys go into that single authorized_keys file?

                            It is in the user directory. All of that user's keys are there.

                            But again, these are public keys.

                            Yeah, I wasn't worried about a security situation... but I'm guessing by making the keys part of the profile on the end controlled device, that is what sets what user is logged in via the key, since there is no username associated with the key itself.
                            Just talking this through to myself.

                            Thanks.

                            The username is specified at login. this has nothing to do with the key.

                            ssh user@ip
                            

                            you can easily use this key for root if you like to be unsecure.

                            ssh root@ip
                            

                            Thanks, I stand corrected.

                            1 Reply Last reply Reply Quote 0
                            • JaredBuschJ
                              JaredBusch @DustinB3403
                              last edited by

                              @DustinB3403 said in Securing SSH:

                              @hobbit666 said in Securing SSH:

                              @JaredBusch said in Securing SSH:

                              This is your friend.

                              ssh-copy-id -i ~/.ssh/id_ed25519.pub user@ip
                              

                              command not found in powershell 🙂 bu that's a windows problem.

                              That's because windows doesn't have an ssh-copy-id function. You're expected to know to manually copy the file into .ssh

                              That's his problem for using a shitty OS, not mine.

                              hobbit666H 1 Reply Last reply Reply Quote 4
                              • hobbit666H
                                hobbit666 @JaredBusch
                                last edited by

                                @JaredBusch :face_with_stuck-out_tongue_winking_eye: :face_with_stuck-out_tongue_winking_eye: :face_with_stuck-out_tongue_closed_eyes: :face_with_stuck-out_tongue_closed_eyes:
                                I'll try moving to Fedora again at some point.

                                1 Reply Last reply Reply Quote 1
                                • hobbit666H
                                  hobbit666
                                  last edited by

                                  So, I've done the keys and all is working with my Zabbix and Unifi servers. Not disabled password logins yet (apart from root).

                                  DustinB3403D 1 Reply Last reply Reply Quote 1
                                  • DustinB3403D
                                    DustinB3403 @hobbit666
                                    last edited by

                                    @hobbit666 said in Securing SSH:

                                    So, I've done the keys and all is working with my Zabbix and Unifi servers. Not disabled password logins yet (apart from root).

                                    If you're keys work, you should disable the password logins.

                                    hobbit666H 1 Reply Last reply Reply Quote 0
                                    • hobbit666H
                                      hobbit666 @DustinB3403
                                      last edited by

                                      @DustinB3403 I will once i've played around a bit more with changing other settings for SSH.

                                      DustinB3403D 1 Reply Last reply Reply Quote 0
                                      • DustinB3403D
                                        DustinB3403 @hobbit666
                                        last edited by

                                        @hobbit666 Don't forget that you can set a password on your keys if you really want to have a more secured access process.

                                        hobbit666H 1 Reply Last reply Reply Quote 0
                                        • hobbit666H
                                          hobbit666 @DustinB3403
                                          last edited by

                                          @DustinB3403 I've already got the password on the keys. I've just not disabled password logins in case i kill something and need to get access :). Planning on removing it once i've "SSH Key's" the other servers.

                                          DustinB3403D pmonchoP 2 Replies Last reply Reply Quote 0
                                          • DustinB3403D
                                            DustinB3403 @hobbit666
                                            last edited by

                                            @hobbit666 said in Securing SSH:

                                            @DustinB3403 I've already got the password on the keys. I've just not disabled password logins in case i kill something and need to get access :). Planning on removing it once i've "SSH Key's" the other servers.

                                            Have you confirmed that key based login works? If so, then you login as user@ip and elevate to root. Disable root login period via ssh and only allow elevation.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 3 / 3
                                            • First post
                                              Last post