I was able to change the Telnet link in the NodeDetails widget to SSH. I had to edit the following files.
C:\inetpub\SolarWinds\Orion\NetPerfMon\Resources\NodeDetails\NodeDetails.ascx
Changed:
<%= Resources.CoreWebContent.WEBDATA_VB0_75 %>
telnet://{{ HrefIPAddress }}
To:
<%= Resources.CoreWebContent.WEBDATA_VB0_75 %>
ssh://{{ HrefIPAddress }}
NodeDetails.ascx references Resources.CoreWebContent.WEBDATA_VB0_75 for a PropertyHeader. That is set to “Telnet” in CoreWebContent.resx.
C:\inetpub\SolarWinds\App_GlobalResources\CoreWebContent.resx
- Search for: WEBDATA_VB0_75
Change:
Telnet
Usage:"text in table"Appears In:"NodeDetails.aspx in Node Actions control"
To:
SSH
Usage:"text in table"Appears In:"NodeDetails.aspx in Node Actions control"
Question, why isn't this the default? Telnet was removed from OS X in 2018. Microsoft disabled telnet by default back in Windows 7.