Extra configuration
See original GitHub issueI had to do two extra bits of configuration before I could get chiadog to work with a remote harvester.
First I had to add the remotes harvester’s ssh fingerprints to my known hosts file using:
ssh-keyscan -H harvester_IP >> ~/.ssh/known_hosts
Then I had to add a banner to my harvester’s ssh server by adding this line to /etc/ssh/sshd_config:
Banner /etc/ssh/my_banner
Then I had to create that banner file with any text inside it using:
echo "My banner" >> /etc/ssh/my_banner
Then restart sshd using:
systemctl restart sshd
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Specifying Advanced Virtual Machine Settings with - VMWARE
OVF ExtraConfig elements provide a flexible way of including key=value pairs in the configuration of a virtual machine. The keys and values are...
Read more >Extra Configuration - Oracle Help Center
Configure and Generate Custom WebReport for ORDER Packing Slip · From the Web Report UI: Create a web report for category: “Order”. ·...
Read more >Additional configuration - IBM
Configure connectivity as described in Defining Connectivity Components. Configure node resources (LUs) as described in Configuring APPC communication or ...
Read more >Extra Configuration — Dallinger 9.0.0pre documentation
Extra Configuration · 'n' is a string with the name of the parameter, · int is its type, · [] is a list...
Read more >Extra Configuration — Pulp Project 2.16.3 documentation
SSL Configuration¶. By default, all of the client components of Pulp will require validly signed SSL certificates from the servers on remote ends...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

My harvester machine is manjaro/arch. Monitoring is done on my farmer/node which is ubuntu server on a pi 4.
I did not have the harvester host fingerprints on my farmer because my farmer had never connected to my harvester using ssh. I had received this banner protocol error. I was able to solve it by adding a banner. https://github.com/paramiko/paramiko/issues/965 I did disable the banner again to see if I get the protocol error again, however I no longer receive the protocol error. So maybe it is unnecessary. I only know chiadog began working after adding the banner.