<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to FAQ</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>Recent changes to FAQ</description><atom:link href="https://sourceforge.net/p/csi-rcmd/wiki/FAQ/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 08 Nov 2024 22:11:51 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/csi-rcmd/wiki/FAQ/feed" rel="self" type="application/rss+xml"/><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v23
+++ v24
@@ -22,7 +22,7 @@
     18. Can i be root user using use one non-root remote user as default login without local?
     19. Can i enable public access in my private keys?
     20. How i assign special TCP Port for specific node?
-    21. How i fix the ssh error "unable to negotiate with [my_ip] port 22: no matching host key type found. their offer: [client_key]"
+    21. How can i fix: "unable to negotiate with [my_ip] port 22: no matching host key type found. their offer: [client_key]"


 **ANSWERS**
@@ -190,7 +190,7 @@
     and
         # rcmd [myclient] ...

-FAQ: How i fix the ssh error "unable to negotiate with [my_ip] port 22: no matching host key type found. their offer: [client_key]"
+FAQ:  How can i fix: "unable to negotiate with [my_ip] port 22: no matching host key type found. their offer: [client_key]"

     - 'my_ip' is the client ip address and;
     - 'client_key' is the client supported ssl keys as try for the remote access)
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Fri, 08 Nov 2024 22:11:51 -0000</pubDate><guid>https://sourceforge.netff21e1af893498067b56c6ca936a60492bb1cd69</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v22
+++ v23
@@ -21,6 +21,9 @@
     17. Can i be root using one non-root user as default login to send the commands?
     18. Can i be root user using use one non-root remote user as default login without local?
     19. Can i enable public access in my private keys?
+    20. How i assign special TCP Port for specific node?
+    21. How i fix the ssh error "unable to negotiate with [my_ip] port 22: no matching host key type found. their offer: [client_key]"
+

 **ANSWERS**

@@ -174,5 +177,65 @@
 FAQ: Can i enable public access in my private keys

         Answer: YES, but is not recommended, is not a best security practices.
+        
+FAQ: How i assign special TCP Port for specific node?
+
+    i.e:
+
+        # ssh -p [myport] [myclient] ...
+
+        # rcmd -ssh_port [myport] [myclient] ...
+    or
+        # rcmdmgnt -assign -option ssh_port:[myport] [myclient]
+    and
+        # rcmd [myclient] ...
+
+FAQ: How i fix the ssh error "unable to negotiate with [my_ip] port 22: no matching host key type found. their offer: [client_key]"
+
+    - 'my_ip' is the client ip address and;
+    - 'client_key' is the client supported ssl keys as try for the remote access)
+    - the RCMD-0.3.2 is required
+
+    BEWARE: This schenarios are obsoletes and may be unsecure connection.
+    The best practices is refresh the SSH client and server to supported versions.
+
+    Check the SSH options that to you need assign on the client.
+
+    i.e:
+
+       # ssh -o HostKeyAlgorithms=+[mytypes]
+           -o PubkeyAcceptedAlgorithms+[mykeys]
+           -c [mycipher_specs] [myclient1] [mycommand]
+
+    a) using options by command:
+
+        # rcmd -ssh-option HostKeyAlgorithms=+[mytypes]
+        -ssh-option PubkeyAcceptedAlgorithms+[mykeys]
+        -ssh-cipher [mycipher_specs] [myclient1,myclient2] [mycommand]
+
+       NOTE: This format will be applied for all clients in [myclient list]
+
+    b) based /etc/rcmd.d/rcmd.conf:
+
+       set SSH_OPTION HostKeyAlgorithms=+[mytypes
+       set SSH_OPTION PubkeyAcceptedAlgorithms+[mykeys]
+       set SSH_CIPHER [mycipher_specs]
+
+        # rcmd [myclient] [mycommand]
+
+       NOTE: This option will be enforced for all clients in [myclient list]
+
+    c) assigning in the client:
+
+        # rcmdmgnt -assign
+        -option ssh_options:HostKeyAlgorithms=+[mytypes]
+        -option ssh_options:PubkeyAcceptedAlgorithms+[mykeys]
+        -option ssh_cipher:[mycipher_specs] myclient1
+       and
+        # rcmd [myclient1,myclient2] [mycommand]
+
+       NOTE: The clients will be different ssh options.
+       NOTE: The special options will be for 'myclient1' only.
+       NOTE: If the 'myclient1' has been system refreshed (SSH upgrades) you must review the options.

 **ENDED**
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Fri, 08 Nov 2024 22:10:34 -0000</pubDate><guid>https://sourceforge.net5ede20ad79ed11d4597645254de5d02ff4538f79</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v21
+++ v22
@@ -124,7 +124,7 @@

         Answer: YES, the re-install process do not make any changes in your database.

-FAQ: Can i be root using one non-root user as default login to send the commands?
+FAQ: Can i be root using one local non-root  user as default login to send the commands?

         Answer: YES

@@ -146,6 +146,8 @@
         d) assign the [mylogin] in the /etc/rcmd.d/rcmd.conf

              set SSH_LOGIN [mylogin]
+
+            NOTE: you dont need defines the SSH_PRIVATE_KEY, the RCMD will use the '.ssh' as default.

         e) export the created keys for your clients.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 13:54:29 -0000</pubDate><guid>https://sourceforge.net777e60da219b4908bda74c5f71fc99c2445c770a</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v20
+++ v21
@@ -24,7 +24,7 @@

 **ANSWERS**

-FAQ: Can i request free support to instal or use?
+FAQ: Can i request free support to install or use?

         Answer: YES, open the ticket in the project

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 13:39:38 -0000</pubDate><guid>https://sourceforge.net599bab9428e7249d2257ee09788c1a02989276df</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v19
+++ v20
@@ -2,7 +2,7 @@

 **QUESTIONS**

-    1. Can i request free support to instal or use?
+    1. Can i request free support to install or use?
     2. Which commands are available?
     3. Which commands i must keep in non-root users clients?
     4. Does RCMD have a command to copy files?
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 13:39:08 -0000</pubDate><guid>https://sourceforge.netcc220dd4107b0c812d42bc9bbf3d179c5008194b</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v18
+++ v19
@@ -136,6 +136,8 @@

           # ssh-key-gen ...

+            NOTE: The 'ssh-keygen' will create the .ssh folder
+    
         c) create config file in .ssh folder (optional)

            # echo StrictHostKeyChecking no &amp;gt; ~[mylogin]/.ssh/config
@@ -155,8 +157,8 @@

         a) create the ssh keys into [mykeyfolder] folder (i.e: /etc/rcmd.d/keys)

-            mkdir /etc/rcmd.d/keys
-            chmod 0500 /etc/rcmd.d/keys
+            # mkdir /etc/rcmd.d/keys
+            # chmod 0500 /etc/rcmd.d/keys

         b) add the line in the /etc/rcmd.d/rcmd.conf

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 10:45:12 -0000</pubDate><guid>https://sourceforge.net4f2aa71341a979216387d51f614afc8c8585ff26</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v17
+++ v18
@@ -155,6 +155,9 @@

         a) create the ssh keys into [mykeyfolder] folder (i.e: /etc/rcmd.d/keys)

+            mkdir /etc/rcmd.d/keys
+            chmod 0500 /etc/rcmd.d/keys
+            
         b) add the line in the /etc/rcmd.d/rcmd.conf

             set SSH_LOGIN [mylogin]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 10:43:23 -0000</pubDate><guid>https://sourceforge.neta606f96b06d02f0e6557438b7d3ab20e9d6a2e60</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -136,7 +136,7 @@

           # ssh-key-gen ...

-        c) create config file in .ssh folder
+        c) create config file in .ssh folder (optional)

            # echo StrictHostKeyChecking no &amp;gt; ~[mylogin]/.ssh/config
            # chown [mylogin] ~[mylogin]/.ssh/config
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 10:41:25 -0000</pubDate><guid>https://sourceforge.net6cbed98ebe2d1f3d186262a7c630d07ad9d58590</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -83,7 +83,7 @@

         Answer: YES. The 'sudoers' may be required.

-FAQ: What means "File History Error, permission denied"
+FAQ: What means "File History Error, permission denied"?

         The command has ben executed without R/W permission access in the work area
         You must create a local group for non-root users 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 10:34:09 -0000</pubDate><guid>https://sourceforge.neta087bed9344feb9305e98eccd79473a030d2cf24</guid></item><item><title>FAQ modified by Carlos Celso de Almeida</title><link>https://sourceforge.net/p/csi-rcmd/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -2,25 +2,25 @@

 **QUESTIONS**

-Can i request free support to instal or use?
-Which commands are available?
-Which commands i must keep in non-root users clients?
-Does RCMD have a command to copy files?
-Can i use a remote database engine?
-How to check if my credentials not working?
-Can i use an other database engine?
-Can i use non-root users?
-Can i use multiple users?
-What means "File History Error, permission denied"
-Do i have a history of all commands or scripts sent by RCMD?
-Can i debug the probe process
-Can i assign system ENVIRONMENT before ssh commands?
-Can i assign additional options in the ssh commands?
-Whats means 'RCMD INTERNAL ERROR' message?
-Can i re-install the rcmd modules without rebuild my database?
-Can i be root using one non-root user as default login to send the commands?
-Can i be root user using use one non-root remote user as default login without local?
-Can i enable public access in my private keys
+    1. Can i request free support to instal or use?
+    2. Which commands are available?
+    3. Which commands i must keep in non-root users clients?
+    4. Does RCMD have a command to copy files?
+    5. Can i use a remote database engine?
+    6. How to check if my credentials not working?
+    7. Can i use an other database engine?
+    8. Can i use non-root users?
+    9. Can i use multiple users?
+    10. What means "File History Error, permission denied"
+    11. Do i have a history of all commands or scripts sent by RCMD?
+    12. Can i debug the probe process?
+    13. Can i assign system ENVIRONMENT before ssh commands?
+    14. Can i assign additional options in the ssh commands?
+    15. Whats means 'RCMD INTERNAL ERROR' message?
+    16. Can i re-install the rcmd modules without rebuild my database?
+    17. Can i be root using one non-root user as default login to send the commands?
+    18. Can i be root user using use one non-root remote user as default login without local?
+    19. Can i enable public access in my private keys?

 **ANSWERS**

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Carlos Celso de Almeida</dc:creator><pubDate>Mon, 28 Oct 2024 10:33:24 -0000</pubDate><guid>https://sourceforge.nete3c4eeb5f7c8d2d333a30968fb3a909aac7e385c</guid></item></channel></rss>