- CheckMates
- :
- Products
- :
- CloudMates Products
- :
- CloudMates General
- :
- Cloudguard SSH login
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Are you a member of CheckMates?
×- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Cloudguard SSH login
Hi we have some cloudguards deployed in AWS, they are working fine and SIC established etc, but SSH login does not work, there are local usernames and passwords, but when we try and SSH to them we get a message after entering username, that it only supports public key based login.
I pushed a new username password via one time script but still the same error occurs. how can we enable user based login?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
the default settings in AWS instances is to only login with a public key.
to change it run on the instances these commands:
Via CLISH:
set ssh server password-authentication yes
set ssh server permit-root-login yes
or from the one time script in SmartConsole:
clish -s -c 'set ssh server password-authentication yes'
clish -s -c 'set ssh server permit-root-login yes'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try edit the /etc/ssh/sshd_config
file and ensure the PasswordAuthentication
parameter is set to "yes". Save with :wq!, restart ssh service -> service sshd restart and try again.
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
the default settings in AWS instances is to only login with a public key.
to change it run on the instances these commands:
Via CLISH:
set ssh server password-authentication yes
set ssh server permit-root-login yes
or from the one time script in SmartConsole:
clish -s -c 'set ssh server password-authentication yes'
clish -s -c 'set ssh server permit-root-login yes'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thats great that did the trick! thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Good to know Nir!
