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

    Access denied - SSH login

    IT Discussion
    7
    27
    3.0k
    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.
    • JaredBuschJ
      JaredBusch @AdamF
      last edited by

      @fuznutz04 said in Access denied - SSH login:

      I have a new FreePBX box that I setup SSH access for, and I cannot login. I'm attempting to login with a password, on another port, and I keep receiving access denied messages. I went through the same process as I always do for enabling SSH connectivity. Either something is wrong that I've never run into before, or I'm just having a brain fail this morning.

      Added a user

      useradd user1
      passwd user1
      

      Added user to wheel group

      gpasswd -a user1 wheel
      

      Edited the /etc/ssh/sshd_config file and:
      Changed the port number
      Added AllowGroups wheel
      Changed PermitRootLogin to no.

      Restarted the SSH service

      Tail of secure says:

      Failed password for user1 from xxx.xxx.xxx.xxx port 52293 ssh
      

      What am I missing?

      Reset the password for the user account again?

      AdamFA 1 Reply Last reply Reply Quote 0
      • AdamFA
        AdamF @JaredBusch
        last edited by

        @JaredBusch Yep, and I also created another user just to be sure. No dice. Also restarted the entire server for good measure.

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

          @fuznutz04 said in Access denied - SSH login:

          @JaredBusch Yep, and I also created another user just to be sure. No dice. Also restarted the entire server for good measure.

          Reenable root login via SSH and see if that works on the new port setup.

          1 Reply Last reply Reply Quote 0
          • AdamFA
            AdamF
            last edited by

            Nope, Permission denied after allowing root, changing root's password, and restarting ssh

            1 Reply Last reply Reply Quote 0
            • RamblingBipedR
              RamblingBiped
              last edited by

              Up the verbosity when you connect and see if it provides any additional clues.

              ssh -vvv user@host

              1 Reply Last reply Reply Quote 0
              • AdamFA
                AdamF
                last edited by

                After entering password:

                debug2: we sent a password packet, wait for reply
                debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
                Permission denied, please try again.
                1 Reply Last reply Reply Quote 0
                • RamblingBipedR
                  RamblingBiped
                  last edited by

                  Have you tried stopping Fail2Ban? Anything strange showing up in your Fail2Ban logs?

                  1 Reply Last reply Reply Quote 0
                  • RamblingBipedR
                    RamblingBiped
                    last edited by

                    This will show your Fail2Ban jails and display whether your IP blacklisted.

                    sudo iptables -L -n

                    1 Reply Last reply Reply Quote 0
                    • AdamFA
                      AdamF
                      last edited by

                      Nothing is blacklisted. In fact, in both Fail2Ban as well as the Responsive firewall in firewall, the IP I'm trying to connect from is whitelisted/in the trusted zone.

                      For good measure, I stopped Fail2Ban, and still receive the same messages.

                      1 Reply Last reply Reply Quote 0
                      • RamblingBipedR
                        RamblingBiped
                        last edited by

                        <sarcasm>
                        Are you certain CAPS-LOCK isn't on?
                        </sarcasm>

                        1 Reply Last reply Reply Quote 2
                        • RamblingBipedR
                          RamblingBiped
                          last edited by

                          Are you monitoring the /var/log/secure file as you are trying to connect? Have you tried connecting to the freepbx IP instead of hostname?

                          1 Reply Last reply Reply Quote 1
                          • AdamFA
                            AdamF
                            last edited by

                            Just tried, and it says Failed password for invalid user root from IP port xxxxx ssh2

                            1 Reply Last reply Reply Quote 0
                            • RamblingBipedR
                              RamblingBiped
                              last edited by

                              "invalid user root"

                              What does your sshd_config file look like? Is root allowed? Have you restarted the ssh server since you made the last changes to the config file?

                              AdamFA 1 Reply Last reply Reply Quote 1
                              • AdamFA
                                AdamF @RamblingBiped
                                last edited by

                                @RamblingBiped said in Access denied - SSH login:

                                "invalid user root"

                                What does your sshd_config file look like? Is root allowed? Have you restarted the ssh server since you made the last changes to the config file?

                                Yes, service is restarted. The only changes to the stock sshd_config flle is:

                                PermitRootLogin yes
                                AllowGroups wheel
                                Port xxxx
                                AddressFamily inet

                                1 Reply Last reply Reply Quote 0
                                • A
                                  Alex Sage
                                  last edited by

                                  Firewall?

                                  1 Reply Last reply Reply Quote 0
                                  • scottalanmillerS
                                    scottalanmiller
                                    last edited by

                                    Test the login from the box itself using the loopback 127.0.0.1

                                    AdamFA 1 Reply Last reply Reply Quote 2
                                    • AdamFA
                                      AdamF @scottalanmiller
                                      last edited by

                                      @scottalanmiller said in Access denied - SSH login:

                                      Test the login from the box itself using the loopback 127.0.0.1

                                      No go. Permission denied, using the same password that I just logged in with.

                                      scottalanmillerS 1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller @AdamF
                                        last edited by

                                        @fuznutz04 said in Access denied - SSH login:

                                        @scottalanmiller said in Access denied - SSH login:

                                        Test the login from the box itself using the loopback 127.0.0.1

                                        No go. Permission denied, using the same password that I just logged in with.

                                        Okay, so you can rule out networking, both firewalls, etc. It's all down to SSH configuration at this point.

                                        AdamFA 1 Reply Last reply Reply Quote 2
                                        • AdamFA
                                          AdamF @scottalanmiller
                                          last edited by

                                          @scottalanmiller said in Access denied - SSH login:

                                          @fuznutz04 said in Access denied - SSH login:

                                          @scottalanmiller said in Access denied - SSH login:

                                          Test the login from the box itself using the loopback 127.0.0.1

                                          No go. Permission denied, using the same password that I just logged in with.

                                          Okay, so you can rule out networking, both firewalls, etc. It's all down to SSH configuration at this point.

                                          Thanks for the tip. That definitely narrowed it down. So after playing with the config file for a while, I concluded that the problem is the line:

                                          AllowGroups wheel
                                          

                                          If I comment that out, it works perfect. if it's uncommented, it doesn't allow access, even to root.

                                          (looks up and to the right while squinting eyes, confused...)

                                          travisdh1T 1 Reply Last reply Reply Quote 0
                                          • scottalanmillerS
                                            scottalanmiller
                                            last edited by

                                            Yeah, that is a bit odd.

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