Remote Monitoring

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Infrastructure Monitoring Remote Monitoring
# 1  
Old 03-15-2010
Remote Monitoring

Hi All,

I am writing a tool which remotely monitors network devices and sends an alarm if the device does not respond just like an NMS.

Can I use Threads module and invoke a simultaneous ping/snmpwalk to 100 or more devices and raise an alarm if any of the devices do no respond?

Please guide me and help me with any tips to achieve the above task.


Thanks in Advance

Guru
# 2  
Old 03-16-2010
The Magical Perl is... and it always surprises me.

I got an SNMP::Multi module which does just what I want. I can specify hosts and the OIDs to poll and the Multi does an snmpget to the hosts and returns the values.

I need figure if there could be any issues if my host list is exhaustive
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

scp auto logon to remote using remote authorized_keys

Hi~ i have an authorized key which it made remote host(B). i want log on without password from local(A) to the remote host(B) using authorized key of remote host. what shell i do? anybody help me. (1 Reply)
Discussion started by: tomato00
1 Replies

2. Shell Programming and Scripting

awk remote multiple hosts print remote hostname and output

Hi all, i'm trying to gether multiple pattern on remote hosts, and trying to print hostname and the pattern, ssh remoteserver1 -C 'hostname 2>&1;cat /var/log/server1.log | awk -F ";" '"'"'{ print " "$2" "$5}'"'"'| sort | uniq -c | sort -g -r ' The output is the following, remoteserver1 ... (8 Replies)
Discussion started by: charli1
8 Replies

3. Shell Programming and Scripting

Check/get the exit status of a remote command executed on remote host through script

Geeks, Could you please help me out in my script and identify the missing piece. I need to check/get the exit status of a remote command executed on remote host through script and send out an email when process/processes is/are not running on any/all server(s). Here's the complete... (5 Replies)
Discussion started by: lovesaikrishna
5 Replies

4. Shell Programming and Scripting

How to store remote variable from remote cat file ??

I am trying to cat on a file located on remote server and assign it to remote variable. I have both local and remote variables. Running below script from local. test.sh J_NAME=XXX2 J_IP=XXX ssh $J_IP "ps auxw |grep java | grep -v grep |grep $J_NAME | awk '{print ... (2 Replies)
Discussion started by: oraclermanpt
2 Replies

5. Shell Programming and Scripting

Triggering remote UNIX shell script from Remote desktop

I m trying to run a batch script in remote desktop which executes unix commands on the unix server...the problem is i wnt the output in HTML format.so in my batch script i m giving the cmd like ssh hostname path ksh HC_Report.ksh>out.html ...but it generates the HTML file in remote desktop .i... (2 Replies)
Discussion started by: navsan
2 Replies

6. Solaris

how to login with ssh to remote system with out applying the remote root/usr password

how to login with ssh to remote system with out applying the remote root/user password with rlogin we can ujse .rhosts file but with ssh howits possible plz guide (2 Replies)
Discussion started by: tv.praveenkumar
2 Replies

7. Shell Programming and Scripting

Help me monitoring the IO for remote server

Hi guys i have purchased sun server for my visualization project. Request you to help me finding the io for disk . I have put storage(disks) on different location (File Server) and on server (Application) i have configured 4 virtual machines. How would i monitor the io for file server from... (0 Replies)
Discussion started by: pinga123
0 Replies

8. AIX

remote monitoring AIX

peepz, do any of you use Remote monitoring for your aix boxes?? I mean something like SNMP or third party monitoring? I've looked some things up and this came out popular: SNMP for AIX NET-SNMP opensource program Tivoli Netview Server to monitor the servers AIX RMC Ganglia for... (1 Reply)
Discussion started by: kvanelshocht
1 Replies

9. Solaris

Remote Dial-up Modem Printing With Out Cpu On The Remote Side!

I am looking for a dial-up remote printing solution as under : 1. We have a Centralized location where Sun Solaris (A) is installed. From here printing command will be despatched. 2. This printing command will be routed to WAN cloud to Main Branches (B1,B2,B3)and from there, printer at... (0 Replies)
Discussion started by: jayvee
0 Replies

10. Shell Programming and Scripting

remote monitoring of device by telnet

There is programm of monitoring by telnet. The main body of script is mkfifo pipe0 telnet $host $port < pipe0 > file0 & then after analizing of file0 printf "commands\r" > pipe0 This programm worked till then I kill pipe0 during working of programm. Now this script dont... (1 Reply)
Discussion started by: ILA
1 Replies
Login or Register to Ask a Question