﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>LogViewPlus Support » LogViewPlus Support » Features &amp; Suggestions  » SSH auth options</title><generator>InstantForum 2017-1 Final</generator><description>LogViewPlus Support</description><link>https://www.logviewplus.com/forum/</link><webMaster>LogViewPlus Support</webMaster><lastBuildDate>Tue, 12 May 2026 03:33:14 GMT</lastBuildDate><ttl>20</ttl><item><title>SSH auth options</title><link>https://www.logviewplus.com/forum/post/982</link><description>Hi,&lt;br/&gt;Have used the trial on recommendation of a friend who's a paying customer and it seems great and do what I want (and what he's wanted for awhile).&lt;br/&gt;&lt;br/&gt;The issue is that I have moved all my ssh auth over to a yubikey, but logview doesnt seem to support the 2 ways I can currently auth to my servers.&lt;br/&gt;&lt;br/&gt;Could a pageant style authentication method be added? (so no need for cert, password, etc) as this is handled in the background. This works fine with putty, winscp, filezilla pro etc&lt;br/&gt;&lt;br/&gt;OR&lt;br/&gt;&lt;br/&gt;I also have setup a ed25519-sk key (ecdsa-sk is also supported by later versions of OpenSSH), but you only seem to support the PPK format, which you cant seem to currently convert ecdsa-sk/ed25519-sk OpenSSH to PPK format. So the question is could&amp;nbsp; OpenSSH key formats (including&amp;nbsp;ecdsa-sk/ed25519-sk) be supported directly?&lt;br/&gt;&lt;br/&gt;I think the pageant method is probably best - this way any future changes to keys/dongles/etc are supported by the agent and dont require updating your app.&lt;br/&gt;&lt;br/&gt;This is currently a deal breaker for me and also causing the friend who recommended me issues as hes in the process of moving to a yubikey too.&lt;br/&gt;&lt;br/&gt;Thanks!</description><pubDate>Mon, 30 Aug 2021 12:51:08 GMT</pubDate><dc:creator>SlackR84</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/1127</link><description>Thanks Slack.&amp;nbsp; I will post back here when we have something available in beta.</description><pubDate>Mon, 30 Aug 2021 12:51:08 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/1126</link><description>Ok, well in that case I would probably have the batch file launch putty, do a connection test and then have the batch file close - which should give logview what it needs.&lt;br/&gt;&lt;br/&gt;I could always have the initial batch file spawn another batch file that exists in a loop (testing connectivity, reconnecting if needed) until LogViewPlus.exe doesnt exist anymore (closed, therefore not needed).&lt;br/&gt;&lt;br/&gt;What you propose should work fine</description><pubDate>Mon, 30 Aug 2021 12:39:33 GMT</pubDate><dc:creator>SlackR84</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/1124</link><description>My preference would be to execute the command once before the initial connection on a per-file basis.&amp;nbsp; Spawning a new process for every connection attempt would only need to happen once to annoy a user - especially if those processes were expensive.&amp;nbsp; I also don't want to add something that the user then needs to 'work around'.&amp;nbsp;&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Also, note that LogViewPlus can wait for a program to exit, but it does not check the return code status.</description><pubDate>Mon, 30 Aug 2021 12:26:28 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/1123</link><description>I would probably not run the putty command directly, I would probably craft a batch file that will launch putty and confirm connectivity to the server (and reconnect if required). So that would all be handled externally, so far as logview is concerned - its no different to any other network/remote share.&lt;br/&gt;&lt;br/&gt;If logview executed the command/batch on all reconnect attempts (rather than just initial connection) I could add some logic around that too.&lt;br/&gt;&lt;br/&gt;All that would be needed would be logview to launch the command and await a successful return code, the rest could be handled externally via the ran command.</description><pubDate>Mon, 30 Aug 2021 12:17:09 GMT</pubDate><dc:creator>SlackR84</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/1122</link><description>Glad to hear you got it working Slack - thanks for sharing!&lt;br/&gt;&lt;br/&gt;Running a command before connecting is currently not supported.&amp;nbsp; However, LogViewPlus does support &lt;a href="https://www.logviewplus.com/docs/external_commands.html" id="if_insertedNode_1630325160240"&gt;External Commands&lt;/a&gt;.&amp;nbsp; This might help if you wanted to run a command before connecting, but this would still need to be a manual action.&amp;nbsp; &lt;a href="https://www.logviewplus.com/docs/open_actions.html" id="if_insertedNode_1630325230997"&gt;Open Actions&lt;/a&gt; would not work in this case as they are executed after the file is initially downloaded.&lt;br/&gt;&lt;br/&gt;Executing a command before connecting is tricky as re-connections happen frequently.&amp;nbsp; Also, there may be multiple files open from the same server.&amp;nbsp; &lt;br/&gt;&lt;br/&gt;I think what we might need to do here is add a configuration option to Open Actions which allows the user to specify if the command should be executed before or after the file is downloaded.&amp;nbsp; I will add this to our feature request list.&lt;br/&gt;&lt;br/&gt;Hope that helps,&lt;br/&gt;&lt;br/&gt;Toby</description><pubDate>Mon, 30 Aug 2021 12:11:49 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/1120</link><description>Hi again,&lt;br/&gt;&lt;br/&gt;So I have worked around this issue as follows:&lt;br/&gt;putty has support for authenticating via gpg-agent, so I connect to the server that is pubkey only auth remotely and set up a tunnel:&lt;br/&gt;9229 -&amp;gt; 127.0.0.1:9229&lt;br/&gt;I allow password auth on the server on 127.0.0.1 only:&lt;br/&gt;sshd_config -&lt;br/&gt;Match Address 127.0.0.1&lt;br/&gt;&amp;nbsp; PasswordAuthentication yes&lt;br/&gt;&lt;br/&gt;I can then connect logview to the server on 127.0.0.1:9229 and it all works fine.&lt;br/&gt;&lt;br/&gt;Is there a plugin or the ability to add a command to run BEFORE connecting? I could call putty before attempting to access the remote fillesystem with "putty.exe - load "profile name here". If logview could run a command before connecting, this would work around the auth issue without needing upstream support for pageant etc.&lt;br/&gt;&lt;br/&gt;Thanks!</description><pubDate>Mon, 30 Aug 2021 11:45:56 GMT</pubDate><dc:creator>SlackR84</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/987</link><description>Thanks for your understanding Slack.&amp;nbsp; Please let me know if you have any further questions or issues.&lt;br/&gt;&lt;br/&gt;Toby</description><pubDate>Tue, 11 May 2021 15:00:29 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/986</link><description>OK, thanks for your response. Appreciate hands are tied as waiting on upstream library. I will keep checking back.&lt;br/&gt;&lt;br/&gt;Thanks!</description><pubDate>Tue, 11 May 2021 14:55:55 GMT</pubDate><dc:creator>SlackR84</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/985</link><description>Thanks for the clarification.&lt;br/&gt;&lt;br/&gt;I am afraid I do not have a good solution.&amp;nbsp; Our networking library is largely provided by a third party (Rebex) and it seems they do not yet support Pageant or ed25519-sk.&lt;br/&gt;&lt;br/&gt;We monitor Rebex closely and I will keep an eye out for changes.&amp;nbsp; I know that Pageant is planned, but I am not sure when this will be available.&lt;br/&gt;&lt;br/&gt;Hope that helps,&lt;br/&gt;&lt;br/&gt;Toby</description><pubDate>Tue, 11 May 2021 14:16:09 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/984</link><description>Hi,&lt;br/&gt;&lt;br/&gt;Glad to hear pageant might/is/will be coming!&lt;br/&gt;&lt;br/&gt;ed25519 support isnt ed25519-sk support. ed25519-sk generates a key that mostly lives on a FIDO2 security token, the file on the PC is just a stub of sorts that points to the security token.</description><pubDate>Tue, 11 May 2021 12:46:41 GMT</pubDate><dc:creator>SlackR84</dc:creator></item><item><title>RE: SSH auth options</title><link>https://www.logviewplus.com/forum/post/983</link><description>Hi Slack,&lt;br/&gt;&lt;br/&gt;Thanks for the feedback.&lt;br/&gt;&lt;br/&gt;Pageant is not currently supported.&amp;nbsp; This is something we will look at in a future release.&lt;br/&gt;&lt;br/&gt;However, we do support ed25519.&amp;nbsp; We introduced this in v2.5.14 as a plugin, but the latest version of LogViewPlus supports ed25519 without requiring a plugin.&amp;nbsp; Please see the latest &lt;a href="https://www.logviewplus.com/download.html" id="if_insertedNode_1620730590250"&gt;BETA version&lt;/a&gt;.&amp;nbsp;&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Hope that helps,&lt;br/&gt;&lt;br/&gt;Toby&lt;br/&gt;&lt;br/&gt;</description><pubDate>Tue, 11 May 2021 10:58:26 GMT</pubDate><dc:creator>LogViewPlus Support</dc:creator></item></channel></rss>