Hi Daniel,
It seems in camel-ssh component, the ssh sessions and channels should be
created with right options to enforce known_hosts awareness.
Not sure if this is supported yet.
For now it seems, keyverifier somehow passes through the lines as below.
https://github.com/apache/mina-sshd/blob/ma
Using Camel-ssh, every time I connect to an ssh target, I have this message:
[sshd-SshClient[5be46f9d]-nio2-thread-1] WARN
org.apache.sshd.client.keyverifier.AcceptAllServerKeyVerifier - Server at
/: presented unverified EC key: ac:...:6a
Is there any way to get rid of this? I'd have expected a
-Message d'origine-
De : Claus Ibsen [mailto:claus.ib...@gmail.com]
Envoyé : 16 juillet 2017 03:16
À : users@camel.apache.org
>
> You should use the versions of the JARs that Apache Camel is built with.
>
> When you use Maven you get this "for free" here is what camel-ssh has a
> dependen
Hi
You should use the versions of the JARs that Apache Camel is built with.
When you use Maven you get this "for free" here is what camel-ssh has
a dependency:tree
[INFO] org.apache.camel:camel-ssh:jar:2.20.0-SNAPSHOT
[INFO] +- org.apache.camel:camel-core:jar:2.20.0-SNAPSHOT:compile
[INFO] | \
I'm a raw beginner with Camel.
I'm trying to work out an ssh query-response route using Camel. The java 8
code is very simply this:
package ...;
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.impl.DefaultCamelContext;
public cl