What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general.

Learn more

PRTG Network Monitor

Intuitive to Use. Easy to manage.
More than 500,000 users rely on Paessler PRTG every day. Find out how you can reduce cost, increase QoS and ease planning, as well.

Free Download

Top Tags


View all Tags

SSH Script Advanced dropdown blank

Votes:

0

The dropdown that lists available scripts for type 'SSH Script Advanced' is blank and I can't figure out why.

Other SSH sensors against this target work great.
The following directories exist: /var/prtg, /var/prtg/scripts, and /var/prtg/scriptsxml
These directories have '777' permissions to ensure it's not a permissions issue.
This target is accessed by PRTG using the root credentials.

No errors are given in the PRTG web UI, so I have nothing to start my troubleshooting.

custom-sensor linux sensorsxml

Created on Dec 12, 2022 4:52:39 PM

Last change on Dec 14, 2022 11:29:12 AM by  Felix Wiesneth [Paessler Support]



5 Replies

Votes:

0

Hello,

first troubleshooting in this case would be if the sshd actually gets a connection request from the PRTG server. Depending on your used sshd there are different troubleshooting steps required for this

Please also check the remarks in Monitoring via SSH in our manual regarding remarks and possible limitations like usable encryption ciphers.


Kind regards,
Johannes Beyerlein, Technical Support Team

Created on Dec 15, 2022 7:08:06 PM by  Johannes Beyerlein [Paessler Support]



Votes:

0

For those of you following along at home...

Start by logging in to the PRTG console and pause all of the sensors pointing at your target so additional SSH traffic will not be logged.

Obtain the IP address of your probe: "aaa.bbb.ccc.ddd". Use this IP address to filter the SSHD logs on the target.

journalctl -t sshd -f | grep -i 'aaa\.bbb\.ccc\.ddd'

Look at the last timestamp in the log as shown on screen. Ignore this date and everything that came before it.

Go back to PRTG and add a new sensor to this VM. Technology Used? SSH Monitor What? Custom Sensors Choose: "SSH Script Advanced"

At this point, the web browser will show a spinny wheel for 2 or 3 seconds, then present a page to select your custom script. Also during this time, a new log entry should show up on the target system showing how the probe attempted and succeeded or failed.

In my case, the log on attempt succeeded. So yes Johannes, SSHD actually gets a connection request from the PRTG server and it succeeded. What is the next troubleshooting step?

Created on Dec 16, 2022 7:38:10 PM



Votes:

0

Hello,

PRTG uses the following commands to retrieve a list of the available scripts.

LANG=C ls -la /var/prtg/scripts/ | grep [w-]''x''[r-] | awk '!/^d/ {for (i = NF; i >= 1; i--) { if (($i ~ /^[0-9][0-9]:?[0-9][0-9]$/)) {for (j=i+1; j <= NF; j++) { if ($j == "->") break; printf $j } break;}} print ""}'

LANG=C ls -la /var/prtg/scriptsxml/ | grep [w-]''x''[r-] | awk '!/^d/ {for (i = NF; i >= 1; i--) { if (($i ~ /^[0-9][0-9]:?[0-9][0-9]$/)) {for (j=i+1; j <= NF; j++) { if ($j == "->") break; printf $j } break;}} print ""}'

Please make sure to have your scripts executable, otherwise it will not show up.
Please also make sure you have ls, awk and grep available in your SSH shell.
If there are no scripts showing up here, then the sensor won't show any sensors in the selection menu.


Kind regards,
Johannes Beyerlein, Technical Support Team

Created on Dec 22, 2022 12:14:48 PM by  Johannes Beyerlein [Paessler Support]

Last change on Dec 22, 2022 12:16:01 PM by  Johannes Beyerlein [Paessler Support]



Votes:

0

AH HA!!!!

The commands you posted above were failing at grep. PRTG was configured to use a specific account to talk to this Linux box. I connected via SSH using that account to run this command... LANG=C ls -la /var/prtg/scriptsxml/ | grep [w-]''x''[r-] ...which would fail with this message: zsh: no matches found: [w-]x[r-]

When I saw "zsh" in the output, I started to get suspicious. I created a new account on the Linux VM and ensured that its environment used bash instead of zsh. Then I updated the account credentials that are registered inside PRTG and attempted to add another custom sensor. This time the names of the scripts appeared in the list.

Problem solved.

Created on Dec 28, 2022 9:34:29 PM



Votes:

0

Thank you for this information!

Glad you found the issue and could resolve this.
I will keep this for the future in mind, that our current script requires bash as default shell for this sensor and will relay the information to my team.


Kind regards,
Johannes Beyerlein, Technical Support Team

Created on Dec 29, 2022 3:41:29 PM by  Johannes Beyerlein [Paessler Support]




Disclaimer: The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.