Recomendations to monitor remote netsight server
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-29-2016 09:33 AM
Hi
I was looking for recomended ways of monitoring a remote Netsight server. I did think about nagios/cacti etc, but it seems overkill just to monitor a remote netsight linux server. I also don't want to use the native linux tools incase it breaks Netsight.
I was looking for recomended ways of monitoring a remote Netsight server. I did think about nagios/cacti etc, but it seems overkill just to monitor a remote netsight linux server. I also don't want to use the native linux tools incase it breaks Netsight.
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎05-05-2016 10:03 AM
Does anyone know how would i enable SNMP on the Netsight VM server so it can be monitored via SNMP
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎05-05-2016 10:03 AM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-29-2016 04:30 PM
I just want to ensure the server is up and available, so we can get the alarm emails.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎04-29-2016 04:30 PM
The scheduler is a good way to get email sent on a regular basis. You can schedule reports at a given interval. If you don't get a report, you know something is potentially up.
Alternatively you can run a bash script to down an interface via snmp or port and run it at a regular interval via cron if using Linux server. Then use alarm manager to alert you when said action took place.
Something like
In Crontab
0 10,12,15,18,21 * * * /root/scripts/NMCCronCheckin
Then the script would just
/usr/bin/snmpset -v 3 -a SHA -A "SNMPPassword" -l authNoPriv -u "Account" "Switch IP" .1.3.6.1.2.1.2.2.1.7.22016 i 2 [22016 is an interface I would want to down]
/bin/sleep 240 [240 is seconds of a poll cycle, change to whatever you poll at]
/usr/bin/snmpset -v 3 -a SHA -A "SNMPPassword" -l authNoPriv -u "Account" "Switch IP" .1.3.6.1.2.1.2.2.1.7.22016 i 1
Alternatively you can run a bash script to down an interface via snmp or port and run it at a regular interval via cron if using Linux server. Then use alarm manager to alert you when said action took place.
Something like
In Crontab
0 10,12,15,18,21 * * * /root/scripts/NMCCronCheckin
Then the script would just
/usr/bin/snmpset -v 3 -a SHA -A "SNMPPassword" -l authNoPriv -u "Account" "Switch IP" .1.3.6.1.2.1.2.2.1.7.22016 i 2 [22016 is an interface I would want to down]
/bin/sleep 240 [240 is seconds of a poll cycle, change to whatever you poll at]
/usr/bin/snmpset -v 3 -a SHA -A "SNMPPassword" -l authNoPriv -u "Account" "Switch IP" .1.3.6.1.2.1.2.2.1.7.22016 i 1
