Thank you for your respond.
It is more a general problem. Infact I have to tune my alertprofile to filter out dns-mismatch.
I can tell you which line to change in the source code if you want to try.
Yes please
Does this dns-match have anything with the fact that boxes I have registred in DNS turn up under parsing errors in the Syslog Analyzer. And boxes that I have not registred turn up right in the Syslog Analyzer.
Peder
Kristian Eide kreide@gmail.com 11.01.2006 18:33:56 >>>
As we see the sysname is without the domain-name. Do I have to
rename
all my boxes to include domain-name?
No. The check which is being done here is if the DNS name of the IP (sysname field in netbox table) starts with the collected sysname from the device.
That said, it does seem a bit strange that the above will give a dnsMismatch error. The string "volda-XXX.hivolda.no" does indeed start with "volda-XXX". Do you get this error only for this particular device or is it a more general problem? There could potentially be a whitespace issue which throws off the check, but that is at least very easy to fix (I can tell you which line to change in the source code if you want to try).
-- Kristian
From roger.kristiansen at cc.uit.no Thu Jan 12 11:16:37 2006
From: roger.kristiansen at cc.uit.no (Roger Kristiansen) Date: Thu Jan 12 11:16:48 2006 Subject: [Nav-users] Feature requests anyone? In-Reply-To: 1087.129.240.76.159.1137055274.squirrel@webmail.uio.no References: 200601100953.k0A9rrTV049797@dis.cc.uit.no Pine.LNX.4.64.0601120025060.13344@tyholt-ng.uninett.no 1087.129.240.76.159.1137055274.squirrel@webmail.uio.no Message-ID: 43C62C85.7010201@cc.uit.no
Kjetil Otter Olsen wrote:
- A more generic RADIUS-module to match 802.1x user-login to IP-address and port switch-port
We made something like this at UiT? last year, and I think it will be included in NAV some time in the future. If you want to try it out before it is included, I can send it to you? It would be nice to see if anyone else can get it running!
- Roger
From Borge.Brunes at cc.uit.no Thu Jan 12 11:54:27 2006
From: Borge.Brunes at cc.uit.no (Borge Brunes) Date: Thu Jan 12 11:54:35 2006 Subject: [Nav-users] getBoksMacs.sh and java.lang.NullPointerException In-Reply-To: Message from Kristian Eide kreide@gmail.com b4c110fd0601111020w6862674ek60e23e4491f395ea@mail.gmail.com Message-ID: 200601121054.k0CAsRDF086647@duke.cc.uit.no
kreide@gmail.com said:
java.lang.NullPointerException at QueryBoks.processMacEntry(QueryBoks.java:917) How could I debug this? The fix is to change line 917 in that file from: if (macVlan.size() == 0) continue; To: if (macVlan == null || macVlan.size() == 0) continue; I can check this into svn later.
Yes! It fixed the problem. Thanks.
B?rge