Hi, Has anyone installed ABSI SuiteApp and configu...
# administration
m
Hi, Has anyone installed ABSI SuiteApp and configured the bank connection? I need to get Host Key and don't know how. SA87020 doesn't help.
d
Couldn't find anything friendlier than the ssh-keyscan page from the OpenSSH Manuals
As per the SuiteAnswer page, you need to know: • key type (e.g.
rsa
,
ecdsa
,
ed25519
) • port (typically, but not necessarily
22
) • host domain (e.g.
<http://test.rebex.net|test.rebex.net>
)
Copy code
ssh-keyscan -t <hostKeyType> -p <port> <hostDomain>
m
Thanks @David B. I had checked Open SSH manual, but couldn't figure out
d
Here's a final example, hope it helps. Let's use a free public sFTP servers to get a host key: Free Public SFTP Servers - SFTP.net for the rebex one, the you'd type this into the command line:
ssh-keyscan -t rsa -p 22 <http://test.rebex.net|test.rebex.net>
which gives us the host key:
Copy code
<http://test.rebex.net|test.rebex.net> ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAkRM6RxDdi3uAGogR3nsQMpmt43X4WnwgMzs8VkwUCqikewxqk4U7EyUSOUeT3CoUNOtywrkNbH83e6/yQgzc3M8i/eDzYtXaNGcKyLfy3Ci6XOwiLLOx1z2AGvvTXln1RXtve+Tn1RTr1BhXVh2cUYbiuVtTWqbEgErT20n4GWD4wv7FhkDbLXNi8DX07F9v7+jH67i0kyGm+E3rE+SaCMRo3zXE6VO+ijcm9HdVxfltQwOYLfuPXM2t5aUSfa96KJcA0I4RCMzA/8Dl9hXGfbWdbD2hK1ZQ1pLvvpNPPyKKjPZcMpOznprbg+jIlsZMWIHt7mq2OJXSdruhRrGzZw==