Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - anw

#1
General Support / Re: Issues after latest Upgrade
February 22, 2018, 10:53:49 PM
Thanks!

exaclty this was the issue - my bad

Best
#2
General Support / Issues after latest Upgrade
February 14, 2018, 02:12:12 PM
Hey
after the recent last upgrade to the newest version 2.2.3 and the the needed DB (postgres) update , we encounter a lot of issues

For e.g. the SyslogParser is not showing correctly anymore
also the Performance Tab on the Object Detail Overview is giving errors, not working at all.

See attached pictures

Any idea how to fix this?

Best
#3
solved thanks

java 8 was installed, but tomcat was still using java7  :-X
#4
Hey

I have problems setting up Tomcat7 Webserver
My netxms server runs on a Debian Jessie machine
i installed Tomcat7, and deployed the .war file to /var/lib/tomcat7/webapps/nxmc-2.1.war
The file gets autodeployed  to nxmc-2.1
But if i go to the adress ServerIP:8080/nxmc-2.1

i get the error above, here a screenshot
Any suggestions what to do here?

Thanks
#5
Configueration Poll is set to default  -> 3600
#6
Could you give an example for this? i know how to create scheduled tasks - but how is the command to only check for interfaces ?
about hook script - im not sure how to start there

Thanks
#7
General Support / Automated Interface Name poll Script
January 16, 2017, 09:58:48 PM
Hey guy,

i want to setup a script which runs every x hours and re checks all the interface descriptions (aliases) - the default poll - poll interface names works - but i would like to do this automatically on a template with ~50 switches.
Any help how to set this up would be appreciated

Best
#8
ok thanks!  i got it working now  - but not on templates directly - but on containers which i created under infrastructure service instead. this works perfect.

Would be nice to get it working on template folders directly - do you know how?

thanks and best regards
#9
Hey
im trying to execute a simple script every 10 minutes on my Switches .. but i cant seem to apply it to a group.. it never works , but if i choose one specific switch, it works fine?
What am i doing wrong here? or any suggestion how this can be done?
i tried ExecuteGroup  Templates.. specific template.. entere network... infrastructure services... nothing seems to work?

i dont want to add scripts for all 200 switches ? and have to change all the time if i add a switch..?

thanks
#10
ok thanks, but i wouldnt like to add a prefix - i would like to add the port description. not sure how to do it
#11
Hey

if found this solution for automation and filtering of dcis for my switches:
Description: Traffic, IN {instance-name}
Instance Discovery
Snmpwalk OID
Base OID
.1.3.6.1.2.1.31.1.1.1.1
filtering script
snmp = CreateSNMPTransport($node);
/* nur wenn PortSpeed > 0 */
x = SNMPGetValue(snmp, ".1.3.6.1.2.1.2.2.1.5.".$1);
y = SNMPGetValue(snmp, ".1.3.6.1.2.1.31.1.1.1.17.".$1);
if (x>0 && y!=2) return 1;
else return 0;




I would like to integrate the alias/port description in the description part
so the ouput would be

Description: Traffic {alias}, IN {instance-name}



how could i do this ?

regards
#12
General Support / Automate NXSL Script [SOLVED]
April 02, 2016, 09:39:23 PM
Hi
i have written a tiny script for my switches - which changes the expected interface states to ignore, unless an alias/port description is set.
i would like to auto run it for all my switches every X hours - how can i realise that?  i dont really get the scheduled tasks - where can i define which script to run ? and what to enter into the cron schedule?

thanks guys


edit: thanks tomaskir, that was easier than i thought :)
#13
ok got it working

thank you very much
#14
awesome thank you

i created a new event, and setup EPP notification to send me an email.

how can forward the actual Kernel Version to the notification?
so i get an email like: "JUNOS is out of date, running Version XXX"

thanks!
#15
Hi
i want to monitor my Switch OS Versions.
Could you help me transform the Value i get after doing snmp check
the value i get is:
Juniper Networks, Inc. ex2200-c-12t-2g Ethernet Switch, kernel JUNOS 12.3R11.2, Build date: 2015-09-24 11:55:10 UTC Copyright (c) 1996-2015 Juniper Networks, Inc.

how can i transform this to only check the "JUNOS 12.3R11.2" part  , and setup notifications if its not version XXX

thanks