diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-02-07 13:56:46 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-02-07 13:56:46 +0000 |
commit | cf89040c164d56afcb7a558c1da06f2163564b4c (patch) | |
tree | 224a6e8da053733fc2c078eb7ba62d97c404da7d /net-mgmt/nedi | |
parent | df7421d0cef5e55ce1a2f50095df6354d40fdf5e (diff) | |
download | ports-cf89040c164d56afcb7a558c1da06f2163564b4c.tar.gz ports-cf89040c164d56afcb7a558c1da06f2163564b4c.zip |
Add nedi , network Discovery and Monitoring tool.
PR: ports/108807
Submitted by: cristi
Notes
Notes:
svn path=/head/; revision=184492
Diffstat (limited to 'net-mgmt/nedi')
-rw-r--r-- | net-mgmt/nedi/Makefile | 61 | ||||
-rw-r--r-- | net-mgmt/nedi/distinfo | 3 | ||||
-rw-r--r-- | net-mgmt/nedi/files/patch-html-inc-drawrrd.php | 11 | ||||
-rw-r--r-- | net-mgmt/nedi/files/patch-html-inc-libmisc.php | 13 | ||||
-rw-r--r-- | net-mgmt/nedi/files/patch-inc-libmisc.pl | 24 | ||||
-rw-r--r-- | net-mgmt/nedi/files/patch-nedi.pl | 11 | ||||
-rw-r--r-- | net-mgmt/nedi/files/pkg-message.in | 29 | ||||
-rw-r--r-- | net-mgmt/nedi/pkg-descr | 10 | ||||
-rw-r--r-- | net-mgmt/nedi/pkg-plist | 839 |
9 files changed, 1001 insertions, 0 deletions
diff --git a/net-mgmt/nedi/Makefile b/net-mgmt/nedi/Makefile new file mode 100644 index 000000000000..42990d355d3b --- /dev/null +++ b/net-mgmt/nedi/Makefile @@ -0,0 +1,61 @@ +# New ports collection makefile for: nedi +# Date created: 2007-02-04 +# Whom: cristi +# +# $FreeBSD$ +# + +PORTNAME= nedi +DISTVERSION= 1.0.w-rc4 +CATEGORIES= net-mgmt +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +EXTRACT_SUFX= .tgz + +MAINTAINER= cristi@net.utcluj.ro +COMMENT= Network Discovery and Monitoring tool + +RUN_DEPENDS= ${SITE_PERL}/Net/SNMP.pm:${PORTSDIR}/net-mgmt/p5-Net-SNMP \ + ${SITE_PERL}/Net/Telnet/Cisco.pm:${PORTSDIR}/net-mgmt/p5-Telnet-Cisco \ + ${SITE_PERL}/Algorithm/Diff.pm:${PORTSDIR}/devel/p5-Algorithm-Diff \ + ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI + +WRKSRC= ${WRKDIR}/${PORTNAME} +NO_BUILD= yes + +# The options part is copied from databases/phpmyadmin +# and looks this way, because we have to USE_PHP +# before pre.mk, however WITH_*, WITHOUT_* are set only +# after pre.mk. The solution is to set them by ourselves. +OPTIONS= GD "Use GD" OFF + +PORT_DBDIR?= ${DESTDIR}/var/db/ports +LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} +OPTIONSFILE?= ${PORT_DBDIR}/${LATEST_LINK}/options + +.if exists(${OPTIONSFILE}) +.include "${OPTIONSFILE}" +.endif + +USE_PHP= session snmp mysql +WANT_PHP_WEB= yes + +.if defined(WITH_GD) && !defined(WITHOUT_GD) +USE_PHP+= gd +.endif + +NEDIDIR= ${PREFIX}/www/nedi + +SUB_FILES= pkg-message +SUB_LIST= NEDIDIR=${NEDIDIR} + +do-install: + @ ${MKDIR} -m 755 ${NEDIDIR} + @ ${CP} -r ${WRKSRC}/* ${NEDIDIR} + @ ${MV} ${NEDIDIR}/seedlist ${PREFIX}/etc/nedi.seedlist.sample + @ ${MV} ${NEDIDIR}/nedi.conf ${PREFIX}/etc/nedi.conf.sample + +post-install: + @ ${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/net-mgmt/nedi/distinfo b/net-mgmt/nedi/distinfo new file mode 100644 index 000000000000..d3d2d320319a --- /dev/null +++ b/net-mgmt/nedi/distinfo @@ -0,0 +1,3 @@ +MD5 (nedi-1.0.w-rc4.tgz) = 050933375bb23537ad34e382ee977e07 +SHA256 (nedi-1.0.w-rc4.tgz) = 66c5c6bf1b950b9c657724584838a9f752c5ad6a541305def4a882544786337f +SIZE (nedi-1.0.w-rc4.tgz) = 1668711 diff --git a/net-mgmt/nedi/files/patch-html-inc-drawrrd.php b/net-mgmt/nedi/files/patch-html-inc-drawrrd.php new file mode 100644 index 000000000000..430ee6912c64 --- /dev/null +++ b/net-mgmt/nedi/files/patch-html-inc-drawrrd.php @@ -0,0 +1,11 @@ +--- html/inc/drawrrd.php.orig Wed Dec 20 17:09:25 2006 ++++ html/inc/drawrrd.php Mon Feb 5 19:51:47 2007 +@@ -7,7 +7,7 @@ + //=============================== + */ + $rrdcmd = "rrdtool"; # point to rrdtool +-$rrdpath = "/var/nedi/rrd"; # point to rrds ++$rrdpath = "/usr/local/www/nedi/rrd"; # point to rrds + + # The above is the FASTEST way. People may argue to put this in nedi.conf. This enables 2 more ways, but I won't do it... + # LITTLE SLOWER and as dirty as above: diff --git a/net-mgmt/nedi/files/patch-html-inc-libmisc.php b/net-mgmt/nedi/files/patch-html-inc-libmisc.php new file mode 100644 index 000000000000..03e8b4a2ef68 --- /dev/null +++ b/net-mgmt/nedi/files/patch-html-inc-libmisc.php @@ -0,0 +1,13 @@ +--- html/inc/libmisc.php.orig Mon Feb 5 17:51:32 2007 ++++ html/inc/libmisc.php Mon Feb 5 17:51:32 2007 +@@ -16,8 +16,8 @@ + // Read configuration + function ReadConf($group) { + +- if (file_exists('/etc/nedi.conf')) { +- $conf = file('/etc/nedi.conf'); ++ if (file_exists('/usr/local/etc/nedi.conf')) { ++ $conf = file('/usr/local/etc/nedi.conf'); + }elseif (file_exists('/var/nedi/nedi.conf')) { + $conf = file('/var/nedi/nedi.conf'); + }else{ diff --git a/net-mgmt/nedi/files/patch-inc-libmisc.pl b/net-mgmt/nedi/files/patch-inc-libmisc.pl new file mode 100644 index 000000000000..3fdc51e3937c --- /dev/null +++ b/net-mgmt/nedi/files/patch-inc-libmisc.pl @@ -0,0 +1,24 @@ +--- inc/libmisc.pl.orig Mon Feb 5 17:51:32 2007 ++++ inc/libmisc.pl Mon Feb 5 17:58:33 2007 +@@ -24,8 +24,8 @@ + #=================================================================== + sub ReadConf { + +- if (-e "$main::p/nedi.conf"){ +- open ("CONF", "$main::p/nedi.conf"); ++ if (-e "/usr/local/etc/nedi.conf"){ ++ open ("CONF", "/usr/local/etc/nedi.conf"); + }elsif (-e "/etc/nedi.conf"){ + open ("CONF", "/etc/nedi.conf"); + }else{ +@@ -279,8 +279,8 @@ + $doip{"testing"} = $main::opt{t}; + print "$main::opt{t} added for testing\n"; + $s++; +- }elsif (-e "$main::p/$seedlist"){ +- open (LIST, "$main::p/$seedlist"); ++ }elsif (-e "$seedlist"){ ++ open (LIST, "$seedlist"); + my @list = <LIST>; + close(LIST); + chomp @list; diff --git a/net-mgmt/nedi/files/patch-nedi.pl b/net-mgmt/nedi/files/patch-nedi.pl new file mode 100644 index 000000000000..b7dc185f2bba --- /dev/null +++ b/net-mgmt/nedi/files/patch-nedi.pl @@ -0,0 +1,11 @@ +--- nedi.pl.orig Mon Feb 5 17:07:23 2007 ++++ nedi.pl Mon Feb 5 17:14:13 2007 +@@ -53,7 +53,7 @@ + if($opt{u}){ + $misc::seedlist = "$opt{u}"; + }else{ +- $misc::seedlist = "seedlist"; ++ $misc::seedlist = "/usr/local/etc/nedi.seedlist"; + } + # Disable buffering so we can see what's going on right away. + select(STDOUT); $| = 1; diff --git a/net-mgmt/nedi/files/pkg-message.in b/net-mgmt/nedi/files/pkg-message.in new file mode 100644 index 000000000000..c9c6ea1e5f67 --- /dev/null +++ b/net-mgmt/nedi/files/pkg-message.in @@ -0,0 +1,29 @@ + +To make NeDi work, do the following: + +1. In %%PREFIX%%/etc, edit 'nedi.seedlist' and 'nedi.conf'. + Use the samples contained in that directory. + +2. (Optional) Create a directory where you want NeDi to store its + RRD files and link it to %%NEDIDIR%%/rrd: + + rm -r %%NEDIDIR%%/rrd + mkdir -p /var/db/nedi/rrd + ln -s /var/db/nedi/rrd %%NEDIDIR%%/rrd + +2. Change the directory to %%NEDIDIR%%. + +3. Initialize the MySQL database. NeDi will do this for you, just type + ./nedi.pl -i + +4. Test whether NeDi knows all your devices: + ./nedi.pl -y + +5. Add a crontab entry like this: + +0 * * * * root %%NEDIDIR%%/nedi.pl -c > /tmp/nedi.lastrun + +6. Add an alias to Apache like this: + +Alias /nedi %%NEDIDIR%%/html + diff --git a/net-mgmt/nedi/pkg-descr b/net-mgmt/nedi/pkg-descr new file mode 100644 index 000000000000..11b08a5c2fbf --- /dev/null +++ b/net-mgmt/nedi/pkg-descr @@ -0,0 +1,10 @@ +NeDi is a tool to discover and monitor you network devices. It sucks +information through SNMP or CLI from your switches and routers and +stores information (such as MACs and IPs) in a MySQL database. + +Later, you can use its web interface to easily locate nodes withing your +network. + +WWW: http://nedi.sourceforge.net + +Cristian KLEIN <cristi@net.utcluj.ro> diff --git a/net-mgmt/nedi/pkg-plist b/net-mgmt/nedi/pkg-plist new file mode 100644 index 000000000000..2dc2cc01602f --- /dev/null +++ b/net-mgmt/nedi/pkg-plist @@ -0,0 +1,839 @@ +etc/nedi.conf.sample +etc/nedi.seedlist.sample +www/nedi/INSTALLATION.html +www/nedi/contrib/1.3.6.1.4.1.3076.1.2.1.1.1.2.def +www/nedi/contrib/1.3.6.1.4.1.3854.1.2.2.1.1.def +www/nedi/contrib/1.3.6.1.4.1.4935.1.3.def +www/nedi/contrib/1.3.6.1.4.1.9.1.122.def +www/nedi/contrib/1.3.6.1.4.1.9.1.248.def +www/nedi/contrib/1.3.6.1.4.1.9.1.278.def +www/nedi/contrib/1.3.6.1.4.1.9.1.283.def +www/nedi/contrib/1.3.6.1.4.1.9.1.287.def +www/nedi/contrib/1.3.6.1.4.1.9.1.367.def +www/nedi/contrib/1.3.6.1.4.1.9.1.485.def +www/nedi/contrib/1.3.6.1.4.1.9.1.507.def +www/nedi/contrib/1.3.6.1.4.1.9.1.516.def +www/nedi/contrib/1.3.6.1.4.1.9.1.522.def +www/nedi/contrib/1.3.6.1.4.1.9.1.564.def +www/nedi/contrib/1.3.6.1.4.1.9.1.565.def +www/nedi/contrib/1.3.6.1.4.1.9.1.634.def +www/nedi/contrib/1.3.6.1.4.1.9967.100.1100.1.def +www/nedi/contrib/1.3.6.1.4.1.9967.100.2100.1.def +www/nedi/contrib/install.sh +www/nedi/contrib/objid.txt +www/nedi/html/Devices-Config.php +www/nedi/html/Devices-Graph.php +www/nedi/html/Devices-List.php +www/nedi/html/Devices-Map.php +www/nedi/html/Devices-Status.php +www/nedi/html/Devices-Stock.php +www/nedi/html/Devices-Table.php +www/nedi/html/Devices-Write.php +www/nedi/html/Monitoring-Health.php +www/nedi/html/Monitoring-Incidents.php +www/nedi/html/Monitoring-Messages.php +www/nedi/html/Monitoring-Setup.php +www/nedi/html/Monitoring-Timeline.php +www/nedi/html/Nodes-List.php +www/nedi/html/Nodes-Status.php +www/nedi/html/Nodes-Stolen.php +www/nedi/html/Other-Calculator.php +www/nedi/html/Other-Defgen.php +www/nedi/html/Other-Export.php +www/nedi/html/Other-Info.php +www/nedi/html/Other-Linked.php +www/nedi/html/Other-Plot.php +www/nedi/html/Other-Template.php +www/nedi/html/Realtime-Multicast.php +www/nedi/html/Realtime-Routes.php +www/nedi/html/Realtime-Spanningtree.php +www/nedi/html/Reports-Devices.php +www/nedi/html/Reports-Incidents.php +www/nedi/html/Reports-Interfaces.php +www/nedi/html/Reports-Modules.php +www/nedi/html/Reports-Monitoring.php +www/nedi/html/Reports-Networks.php +www/nedi/html/Reports-Nodes.php +www/nedi/html/Reports-Wlan.php +www/nedi/html/User-Accounts.php +www/nedi/html/User-Logout.php +www/nedi/html/User-Profile.php +www/nedi/html/User-Radius.php +www/nedi/html/User-Radius_cp.php +www/nedi/html/img/12p45.png +www/nedi/html/img/16-orig/bomb.png +www/nedi/html/img/16-orig/chart.png +www/nedi/html/img/16-orig/clock.png +www/nedi/html/img/16-orig/cubs.png +www/nedi/html/img/16-orig/dumy.png +www/nedi/html/img/16-orig/form.png +www/nedi/html/img/16-orig/hwif.png +www/nedi/html/img/16-orig/idea.png +www/nedi/html/img/16-orig/neth.png +www/nedi/html/img/16-orig/paint.png +www/nedi/html/img/16-orig/pkg.png +www/nedi/html/img/16-orig/ring.png +www/nedi/html/img/16-orig/smil.png +www/nedi/html/img/16-orig/umgr.png +www/nedi/html/img/16-orig/wrte.png +www/nedi/html/img/16-xmas/._.DS_Store +www/nedi/html/img/16-xmas/bomb.png +www/nedi/html/img/16-xmas/chart.png +www/nedi/html/img/16-xmas/clock.png +www/nedi/html/img/16-xmas/cubs.png +www/nedi/html/img/16-xmas/dumy.png +www/nedi/html/img/16-xmas/form.png +www/nedi/html/img/16-xmas/hwif.png +www/nedi/html/img/16-xmas/idea.png +www/nedi/html/img/16-xmas/neth.png +www/nedi/html/img/16-xmas/paint.png +www/nedi/html/img/16-xmas/pkg.png +www/nedi/html/img/16-xmas/ring.png +www/nedi/html/img/16-xmas/smil.png +www/nedi/html/img/16-xmas/umgr.png +www/nedi/html/img/16-xmas/wrte.png +www/nedi/html/img/16/3d.png +www/nedi/html/img/16/acs.png +www/nedi/html/img/16/bchk.png +www/nedi/html/img/16/bcls.png +www/nedi/html/img/16/bcnl.png +www/nedi/html/img/16/bdwn.png +www/nedi/html/img/16/blft.png +www/nedi/html/img/16/bomb.png +www/nedi/html/img/16/book.png +www/nedi/html/img/16/brgt.png +www/nedi/html/img/16/brld.png +www/nedi/html/img/16/bstp.png +www/nedi/html/img/16/bup.png +www/nedi/html/img/16/cach.png +www/nedi/html/img/16/calc.png +www/nedi/html/img/16/cam.png +www/nedi/html/img/16/casp.png +www/nedi/html/img/16/cfg.png +www/nedi/html/img/16/cfg2.png +www/nedi/html/img/16/chart.png +www/nedi/html/img/16/clock.png +www/nedi/html/img/16/cnic.png +www/nedi/html/img/16/cog.png +www/nedi/html/img/16/cubs.png +www/nedi/html/img/16/db.png +www/nedi/html/img/16/dbmb.png +www/nedi/html/img/16/dcub.png +www/nedi/html/img/16/ddum.png +www/nedi/html/img/16/dev.png +www/nedi/html/img/16/dglb.png +www/nedi/html/img/16/dglg.png +www/nedi/html/img/16/dlet.png +www/nedi/html/img/16/dlog.png +www/nedi/html/img/16/dlok.png +www/nedi/html/img/16/dmobi.png +www/nedi/html/img/16/dmsc.png +www/nedi/html/img/16/dnet.png +www/nedi/html/img/16/dpie.png +www/nedi/html/img/16/dprt.png +www/nedi/html/img/16/dtap.png +www/nedi/html/img/16/dtxt.png +www/nedi/html/img/16/dumy.png +www/nedi/html/img/16/edit.png +www/nedi/html/img/16/err.png +www/nedi/html/img/16/exit.png +www/nedi/html/img/16/eyes.png +www/nedi/html/img/16/fiap.png +www/nedi/html/img/16/fido.png +www/nedi/html/img/16/find.png +www/nedi/html/img/16/fiqu.png +www/nedi/html/img/16/flop.png +www/nedi/html/img/16/fobl.png +www/nedi/html/img/16/fogr.png +www/nedi/html/img/16/fogy.png +www/nedi/html/img/16/foor.png +www/nedi/html/img/16/ford.png +www/nedi/html/img/16/form.png +www/nedi/html/img/16/foto.png +www/nedi/html/img/16/fovi.png +www/nedi/html/img/16/glob.png +www/nedi/html/img/16/glok.png +www/nedi/html/img/16/home.png +www/nedi/html/img/16/hwif.png +www/nedi/html/img/16/idea.png +www/nedi/html/img/16/impt.png +www/nedi/html/img/16/info.png +www/nedi/html/img/16/key.png +www/nedi/html/img/16/kons.png +www/nedi/html/img/16/lokc.png +www/nedi/html/img/16/loko.png +www/nedi/html/img/16/mail.png +www/nedi/html/img/16/mem.png +www/nedi/html/img/16/mobil.png +www/nedi/html/img/16/net.png +www/nedi/html/img/16/neth.png +www/nedi/html/img/16/neti.png +www/nedi/html/img/16/nglb.png +www/nedi/html/img/16/ngrn.png +www/nedi/html/img/16/nic.png +www/nedi/html/img/16/nwin.png +www/nedi/html/img/16/paint.png +www/nedi/html/img/16/pkg.png +www/nedi/html/img/16/powr.png +www/nedi/html/img/16/prt.png +www/nedi/html/img/16/ring.png +www/nedi/html/img/16/rout.png +www/nedi/html/img/16/save.png +www/nedi/html/img/16/say.png +www/nedi/html/img/16/scrn.png +www/nedi/html/img/16/smil.png +www/nedi/html/img/16/spkr.png +www/nedi/html/img/16/star.png +www/nedi/html/img/16/stat.png +www/nedi/html/img/16/sys.png +www/nedi/html/img/16/tab.png +www/nedi/html/img/16/tabi.png +www/nedi/html/img/16/tap.png +www/nedi/html/img/16/umgr.png +www/nedi/html/img/16/user.png +www/nedi/html/img/16/wglb.png +www/nedi/html/img/16/wrte.png +www/nedi/html/img/32-orig/bomb.png +www/nedi/html/img/32-orig/chart.png +www/nedi/html/img/32-orig/clock.png +www/nedi/html/img/32-orig/cubs.png +www/nedi/html/img/32-orig/dumy.png +www/nedi/html/img/32-orig/form.png +www/nedi/html/img/32-orig/hwif.png +www/nedi/html/img/32-orig/idea.png +www/nedi/html/img/32-orig/neth.png +www/nedi/html/img/32-orig/paint.png +www/nedi/html/img/32-orig/pkg.png +www/nedi/html/img/32-orig/ring.png +www/nedi/html/img/32-orig/smil.png +www/nedi/html/img/32-orig/umgr.png +www/nedi/html/img/32-orig/wrte.png +www/nedi/html/img/32-xmas/._.DS_Store +www/nedi/html/img/32-xmas/bomb.png +www/nedi/html/img/32-xmas/chart.png +www/nedi/html/img/32-xmas/clock.png +www/nedi/html/img/32-xmas/cubs.png +www/nedi/html/img/32-xmas/dumy.png +www/nedi/html/img/32-xmas/form.png +www/nedi/html/img/32-xmas/hwif.png +www/nedi/html/img/32-xmas/idea.png +www/nedi/html/img/32-xmas/neth.png +www/nedi/html/img/32-xmas/paint.png +www/nedi/html/img/32-xmas/pkg.png +www/nedi/html/img/32-xmas/ring.png +www/nedi/html/img/32-xmas/smil.png +www/nedi/html/img/32-xmas/umgr.png +www/nedi/html/img/32-xmas/wrte.png +www/nedi/html/img/32/3d.png +www/nedi/html/img/32/acs.png +www/nedi/html/img/32/bchk.png +www/nedi/html/img/32/bcls.png +www/nedi/html/img/32/bcnl.png +www/nedi/html/img/32/bdwn.png +www/nedi/html/img/32/blft.png +www/nedi/html/img/32/bomb.png +www/nedi/html/img/32/book.png +www/nedi/html/img/32/brgt.png +www/nedi/html/img/32/brld.png +www/nedi/html/img/32/bstp.png +www/nedi/html/img/32/bup.png +www/nedi/html/img/32/cach.png +www/nedi/html/img/32/calc.png +www/nedi/html/img/32/cam.png +www/nedi/html/img/32/casp.png +www/nedi/html/img/32/cfg.png +www/nedi/html/img/32/cfg2.png +www/nedi/html/img/32/chart.png +www/nedi/html/img/32/clock.png +www/nedi/html/img/32/cnic.png +www/nedi/html/img/32/cog.png +www/nedi/html/img/32/cubs.png +www/nedi/html/img/32/db.png +www/nedi/html/img/32/dbmb.png +www/nedi/html/img/32/dcub.png +www/nedi/html/img/32/ddum.png +www/nedi/html/img/32/dev.png +www/nedi/html/img/32/dglb.png +www/nedi/html/img/32/dglg.png +www/nedi/html/img/32/dlet.png +www/nedi/html/img/32/dlog.png +www/nedi/html/img/32/dlok.png +www/nedi/html/img/32/dmobi.png +www/nedi/html/img/32/dmsc.png +www/nedi/html/img/32/dnet.png +www/nedi/html/img/32/dpie.png +www/nedi/html/img/32/dprt.png +www/nedi/html/img/32/dtap.png +www/nedi/html/img/32/dtxt.png +www/nedi/html/img/32/dumy.png +www/nedi/html/img/32/edit.png +www/nedi/html/img/32/err.png +www/nedi/html/img/32/exit.png +www/nedi/html/img/32/eyes.png +www/nedi/html/img/32/fiap.png +www/nedi/html/img/32/fido.png +www/nedi/html/img/32/find.png +www/nedi/html/img/32/fiqu.png +www/nedi/html/img/32/flop.png +www/nedi/html/img/32/fobl.png +www/nedi/html/img/32/fogr.png +www/nedi/html/img/32/fogy.png +www/nedi/html/img/32/foor.png +www/nedi/html/img/32/ford.png +www/nedi/html/img/32/form.png +www/nedi/html/img/32/foto.png +www/nedi/html/img/32/fovi.png +www/nedi/html/img/32/glob.png +www/nedi/html/img/32/glok.png +www/nedi/html/img/32/home.png +www/nedi/html/img/32/hwif.png +www/nedi/html/img/32/idea.png +www/nedi/html/img/32/impt.png +www/nedi/html/img/32/info.png +www/nedi/html/img/32/key.png +www/nedi/html/img/32/kons.png +www/nedi/html/img/32/lokc.png +www/nedi/html/img/32/loko.png +www/nedi/html/img/32/mail.png +www/nedi/html/img/32/mem.png +www/nedi/html/img/32/mobil.png +www/nedi/html/img/32/net.png +www/nedi/html/img/32/neth.png +www/nedi/html/img/32/neti.png +www/nedi/html/img/32/nglb.png +www/nedi/html/img/32/ngrn.png +www/nedi/html/img/32/nic.png +www/nedi/html/img/32/nwin.png +www/nedi/html/img/32/paint.png +www/nedi/html/img/32/pkg.png +www/nedi/html/img/32/powr.png +www/nedi/html/img/32/proxy.png +www/nedi/html/img/32/prt.png +www/nedi/html/img/32/ring.png +www/nedi/html/img/32/rout.png +www/nedi/html/img/32/save.png +www/nedi/html/img/32/say.png +www/nedi/html/img/32/scrn.png +www/nedi/html/img/32/smil.png +www/nedi/html/img/32/spkr.png +www/nedi/html/img/32/star.png +www/nedi/html/img/32/stat.png +www/nedi/html/img/32/sys.png +www/nedi/html/img/32/tab.png +www/nedi/html/img/32/tabi.png +www/nedi/html/img/32/tap.png +www/nedi/html/img/32/umgr.png +www/nedi/html/img/32/user.png +www/nedi/html/img/32/wglb.png +www/nedi/html/img/32/wrte.png +www/nedi/html/img/4p45.png +www/nedi/html/img/ant.png +www/nedi/html/img/bg.png +www/nedi/html/img/bldb.png +www/nedi/html/img/bldbr.png +www/nedi/html/img/bldh.png +www/nedi/html/img/bldhr.png +www/nedi/html/img/bldm.png +www/nedi/html/img/bldmr.png +www/nedi/html/img/blds.png +www/nedi/html/img/bldsr.png +www/nedi/html/img/blu.png +www/nedi/html/img/blubg.png +www/nedi/html/img/bsw.png +www/nedi/html/img/bulbb.png +www/nedi/html/img/bulbg.png +www/nedi/html/img/bulbr.png +www/nedi/html/img/bulby.png +www/nedi/html/img/cal.png +www/nedi/html/img/chip.png +www/nedi/html/img/cityg.png +www/nedi/html/img/cityl.png +www/nedi/html/img/citym.png +www/nedi/html/img/citys.png +www/nedi/html/img/cityx.png +www/nedi/html/img/dev/adbl.png +www/nedi/html/img/dev/addb.png +www/nedi/html/img/dev/adgn.png +www/nedi/html/img/dev/adog.png +www/nedi/html/img/dev/adpu.png +www/nedi/html/img/dev/adrd.png +www/nedi/html/img/dev/adyw.png +www/nedi/html/img/dev/apbl.png +www/nedi/html/img/dev/apdb.png +www/nedi/html/img/dev/apgn.png +www/nedi/html/img/dev/apog.png +www/nedi/html/img/dev/appu.png +www/nedi/html/img/dev/aprd.png +www/nedi/html/img/dev/apyw.png +www/nedi/html/img/dev/bwbl.png +www/nedi/html/img/dev/bwdb.png +www/nedi/html/img/dev/bwgr.png +www/nedi/html/img/dev/bwog.png +www/nedi/html/img/dev/bwpu.png +www/nedi/html/img/dev/bwrd.png +www/nedi/html/img/dev/bwyw.png +www/nedi/html/img/dev/csbk.png +www/nedi/html/img/dev/csbl.png +www/nedi/html/img/dev/csgn.png +www/nedi/html/img/dev/csog.png +www/nedi/html/img/dev/csrd.png +www/nedi/html/img/dev/csyw.png +www/nedi/html/img/dev/d2bk.png +www/nedi/html/img/dev/d2bl.png +www/nedi/html/img/dev/d2db.png +www/nedi/html/img/dev/d2gn.png +www/nedi/html/img/dev/d2og.png +www/nedi/html/img/dev/d2pu.png +www/nedi/html/img/dev/d2rd.png +www/nedi/html/img/dev/d2yw.png +www/nedi/html/img/dev/d3be.png +www/nedi/html/img/dev/d3bk.png +www/nedi/html/img/dev/d3bl.png +www/nedi/html/img/dev/d3db.png +www/nedi/html/img/dev/d3gn.png +www/nedi/html/img/dev/d3gy.png +www/nedi/html/img/dev/d3pu.png +www/nedi/html/img/dev/d3rd.png +www/nedi/html/img/dev/fwbl.png +www/nedi/html/img/dev/fwgn.png +www/nedi/html/img/dev/fwog.png +www/nedi/html/img/dev/fwyw.png +www/nedi/html/img/dev/genc.png +www/nedi/html/img/dev/genf.png +www/nedi/html/img/dev/geng.png +www/nedi/html/img/dev/genh.png +www/nedi/html/img/dev/genn.png +www/nedi/html/img/dev/genr.png +www/nedi/html/img/dev/gens.png +www/nedi/html/img/dev/ldbk.png +www/nedi/html/img/dev/ldbl.png +www/nedi/html/img/dev/lddb.png +www/nedi/html/img/dev/ldgn.png +www/nedi/html/img/dev/ldog.png +www/nedi/html/img/dev/ldpu.png +www/nedi/html/img/dev/ldrd.png +www/nedi/html/img/dev/ldyw.png +www/nedi/html/img/dev/phbl.png +www/nedi/html/img/dev/phdb.png +www/nedi/html/img/dev/phgn.png +www/nedi/html/img/dev/phog.png +www/nedi/html/img/dev/phpu.png +www/nedi/html/img/dev/phrd.png +www/nedi/html/img/dev/phyw.png +www/nedi/html/img/dev/rbbl.png +www/nedi/html/img/dev/rbdb.png +www/nedi/html/img/dev/rbgn.png +www/nedi/html/img/dev/rbog.png +www/nedi/html/img/dev/rbpu.png +www/nedi/html/img/dev/rbrd.png +www/nedi/html/img/dev/rbyw.png +www/nedi/html/img/dev/rmbl.png +www/nedi/html/img/dev/rmdb.png +www/nedi/html/img/dev/rmgn.png +www/nedi/html/img/dev/rmog.png +www/nedi/html/img/dev/rmpu.png +www/nedi/html/img/dev/rmrd.png +www/nedi/html/img/dev/rmyw.png +www/nedi/html/img/dev/rsb2.png +www/nedi/html/img/dev/rsbl.png +www/nedi/html/img/dev/rsdb.png +www/nedi/html/img/dev/rsgn.png +www/nedi/html/img/dev/rsog.png +www/nedi/html/img/dev/rspu.png +www/nedi/html/img/dev/rsrd.png +www/nedi/html/img/dev/rsyw.png +www/nedi/html/img/dev/sprd.png +www/nedi/html/img/dev/v2bl.png +www/nedi/html/img/dev/v2db.png +www/nedi/html/img/dev/v2gn.png +www/nedi/html/img/dev/v2og.png +www/nedi/html/img/dev/v2pu.png +www/nedi/html/img/dev/v2rd.png +www/nedi/html/img/dev/v2yw.png +www/nedi/html/img/dev/vpbl.png +www/nedi/html/img/dev/vpgn.png +www/nedi/html/img/dev/w2bk.png +www/nedi/html/img/dev/w2bl.png +www/nedi/html/img/dev/w2br.png +www/nedi/html/img/dev/w2cm.png +www/nedi/html/img/dev/w2db.png +www/nedi/html/img/dev/w2dp.png +www/nedi/html/img/dev/w2gn.png +www/nedi/html/img/dev/w2gy.png +www/nedi/html/img/dev/w2lb.png +www/nedi/html/img/dev/w2lg.png +www/nedi/html/img/dev/w2lr.png +www/nedi/html/img/dev/w2og.png +www/nedi/html/img/dev/w2ov.png +www/nedi/html/img/dev/w2pi.png +www/nedi/html/img/dev/w2pu.png +www/nedi/html/img/dev/w2rd.png +www/nedi/html/img/dev/w2yw.png +www/nedi/html/img/dev/w3bl.png +www/nedi/html/img/dev/w3br.png +www/nedi/html/img/dev/w3cm.png +www/nedi/html/img/dev/w3db.png +www/nedi/html/img/dev/w3dp.png +www/nedi/html/img/dev/w3gn.png +www/nedi/html/img/dev/w3lb.png +www/nedi/html/img/dev/w3lg.png +www/nedi/html/img/dev/w3lr.png +www/nedi/html/img/dev/w3og.png +www/nedi/html/img/dev/w3pu.png +www/nedi/html/img/dev/w3rd.png +www/nedi/html/img/dev/w3yw.png +www/nedi/html/img/dl.png +www/nedi/html/img/dpx.png +www/nedi/html/img/favicon.ico +www/nedi/html/img/grn.png +www/nedi/html/img/gsw.png +www/nedi/html/img/ksw.png +www/nedi/html/img/lok.png +www/nedi/html/img/mail.png +www/nedi/html/img/n.png +www/nedi/html/img/nedi-n.png +www/nedi/html/img/nedi.png +www/nedi/html/img/nedib.png +www/nedi/html/img/nedie.jpg +www/nedi/html/img/nediord.jpg +www/nedi/html/img/nedispi.jpg +www/nedi/html/img/netg.png +www/nedi/html/img/neto.png +www/nedi/html/img/netr.png +www/nedi/html/img/org.png +www/nedi/html/img/oui/3com.png +www/nedi/html/img/oui/a27.png +www/nedi/html/img/oui/a93.png +www/nedi/html/img/oui/a95.png +www/nedi/html/img/oui/ab.png +www/nedi/html/img/oui/acc.png +www/nedi/html/img/oui/acr.png +www/nedi/html/img/oui/adt.png +www/nedi/html/img/oui/adtx.png +www/nedi/html/img/oui/adv.png +www/nedi/html/img/oui/agi.png +www/nedi/html/img/oui/aix.png +www/nedi/html/img/oui/amb.png +www/nedi/html/img/oui/apx.png +www/nedi/html/img/oui/asu.png +www/nedi/html/img/oui/atec.png +www/nedi/html/img/oui/atom.png +www/nedi/html/img/oui/ava.png +www/nedi/html/img/oui/axis.png +www/nedi/html/img/oui/bcm.png +www/nedi/html/img/oui/bek.png +www/nedi/html/img/oui/brc.png +www/nedi/html/img/oui/can.png +www/nedi/html/img/oui/cis.png +www/nedi/html/img/oui/cpl.png +www/nedi/html/img/oui/de.png +www/nedi/html/img/oui/dec.png +www/nedi/html/img/oui/dli.png +www/nedi/html/img/oui/emx.png +www/nedi/html/img/oui/ent.png +www/nedi/html/img/oui/fdry.png +www/nedi/html/img/oui/fic.png +www/nedi/html/img/oui/fs.png +www/nedi/html/img/oui/gen.png +www/nedi/html/img/oui/gig.png +www/nedi/html/img/oui/hp.png +www/nedi/html/img/oui/ibm.png +www/nedi/html/img/oui/iee.png +www/nedi/html/img/oui/igr.png +www/nedi/html/img/oui/int.png +www/nedi/html/img/oui/intr.png +www/nedi/html/img/oui/iwi.png +www/nedi/html/img/oui/ktc.png +www/nedi/html/img/oui/kyo.png +www/nedi/html/img/oui/lex.png +www/nedi/html/img/oui/lsy.png +www/nedi/html/img/oui/ltx.png +www/nedi/html/img/oui/min.png +www/nedi/html/img/oui/mot.png +www/nedi/html/img/oui/msi.png +www/nedi/html/img/oui/ncd.png +www/nedi/html/img/oui/next.png +www/nedi/html/img/oui/ngr.png +www/nedi/html/img/oui/nok.png +www/nedi/html/img/oui/nort.png +www/nedi/html/img/oui/ovl.png +www/nedi/html/img/oui/pla.png +www/nedi/html/img/oui/ply.png +www/nedi/html/img/oui/psi.png +www/nedi/html/img/oui/q.png +www/nedi/html/img/oui/qnt.png +www/nedi/html/img/oui/rad.png +www/nedi/html/img/oui/rar.png +www/nedi/html/img/oui/rco.png +www/nedi/html/img/oui/rtk.png +www/nedi/html/img/oui/rub.png +www/nedi/html/img/oui/sam.png +www/nedi/html/img/oui/sgi.png +www/nedi/html/img/oui/si.png +www/nedi/html/img/oui/smc.png +www/nedi/html/img/oui/snom.png +www/nedi/html/img/oui/sony.png +www/nedi/html/img/oui/sts.png +www/nedi/html/img/oui/sum.png +www/nedi/html/img/oui/sun.png +www/nedi/html/img/oui/sva.png +www/nedi/html/img/oui/tek.png +www/nedi/html/img/oui/tsa.png +www/nedi/html/img/oui/tya.png +www/nedi/html/img/oui/vm.png +www/nedi/html/img/oui/wdc.png +www/nedi/html/img/oui/wis.png +www/nedi/html/img/oui/xrx.png +www/nedi/html/img/oui/xylan.png +www/nedi/html/img/p45.png +www/nedi/html/img/plug.png +www/nedi/html/img/ppp.png +www/nedi/html/img/qg.png +www/nedi/html/img/qr.png +www/nedi/html/img/red.png +www/nedi/html/img/rj45.png +www/nedi/html/img/rsw.png +www/nedi/html/img/sep.png +www/nedi/html/img/smiles/1.png +www/nedi/html/img/smiles/10.png +www/nedi/html/img/smiles/11.png +www/nedi/html/img/smiles/12.png +www/nedi/html/img/smiles/13.png +www/nedi/html/img/smiles/14.png +www/nedi/html/img/smiles/15.png +www/nedi/html/img/smiles/16.png +www/nedi/html/img/smiles/17.png +www/nedi/html/img/smiles/18.png +www/nedi/html/img/smiles/19.png +www/nedi/html/img/smiles/2.png +www/nedi/html/img/smiles/20.png +www/nedi/html/img/smiles/21.png +www/nedi/html/img/smiles/22.png +www/nedi/html/img/smiles/23.png +www/nedi/html/img/smiles/24.png +www/nedi/html/img/smiles/25.png +www/nedi/html/img/smiles/26.png +www/nedi/html/img/smiles/27.png +www/nedi/html/img/smiles/28.png +www/nedi/html/img/smiles/29.png +www/nedi/html/img/smiles/3.png +www/nedi/html/img/smiles/30.png +www/nedi/html/img/smiles/31.png +www/nedi/html/img/smiles/32.png +www/nedi/html/img/smiles/33.png +www/nedi/html/img/smiles/34.png +www/nedi/html/img/smiles/35.png +www/nedi/html/img/smiles/36.png +www/nedi/html/img/smiles/37.png +www/nedi/html/img/smiles/38.png +www/nedi/html/img/smiles/39.png +www/nedi/html/img/smiles/4.png +www/nedi/html/img/smiles/40.png +www/nedi/html/img/smiles/41.png +www/nedi/html/img/smiles/42.png +www/nedi/html/img/smiles/43.png +www/nedi/html/img/smiles/44.png +www/nedi/html/img/smiles/45.png +www/nedi/html/img/smiles/46.png +www/nedi/html/img/smiles/47.png +www/nedi/html/img/smiles/48.png +www/nedi/html/img/smiles/49.png +www/nedi/html/img/smiles/5.png +www/nedi/html/img/smiles/50.png +www/nedi/html/img/smiles/51.png +www/nedi/html/img/smiles/52.png +www/nedi/html/img/smiles/53.png +www/nedi/html/img/smiles/54.png +www/nedi/html/img/smiles/55.png +www/nedi/html/img/smiles/56.png +www/nedi/html/img/smiles/57.png +www/nedi/html/img/smiles/58.png +www/nedi/html/img/smiles/59.png +www/nedi/html/img/smiles/6.png +www/nedi/html/img/smiles/60.png +www/nedi/html/img/smiles/61.png +www/nedi/html/img/smiles/62.png +www/nedi/html/img/smiles/63.png +www/nedi/html/img/smiles/64.png +www/nedi/html/img/smiles/65.png +www/nedi/html/img/smiles/66.png +www/nedi/html/img/smiles/67.png +www/nedi/html/img/smiles/68.png +www/nedi/html/img/smiles/69.png +www/nedi/html/img/smiles/7.png +www/nedi/html/img/smiles/70.png +www/nedi/html/img/smiles/8.png +www/nedi/html/img/smiles/9.png +www/nedi/html/img/spd.png +www/nedi/html/img/srv.png +www/nedi/html/img/stair.png +www/nedi/html/img/stp.png +www/nedi/html/img/tape.png +www/nedi/html/img/tel.png +www/nedi/html/img/ul.png +www/nedi/html/img/usw.png +www/nedi/html/img/wsw.png +www/nedi/html/img/xg.png +www/nedi/html/img/xr.png +www/nedi/html/inc/CISCO-PRODUCTS-MIB.oid +www/nedi/html/inc/Devsend.pl +www/nedi/html/inc/JSCookMenu.js +www/nedi/html/inc/ThemeN/arrow.gif +www/nedi/html/inc/ThemeN/folder.gif +www/nedi/html/inc/ThemeN/link.gif +www/nedi/html/inc/ThemeN/theme.css +www/nedi/html/inc/ThemeN/theme.js +www/nedi/html/inc/alarm1.mp3 +www/nedi/html/inc/alarm2.mp3 +www/nedi/html/inc/alarm3.mp3 +www/nedi/html/inc/browsedev.php +www/nedi/html/inc/cal.js +www/nedi/html/inc/drawrrd.php +www/nedi/html/inc/drawrrd.php.orig +www/nedi/html/inc/footer.php +www/nedi/html/inc/graph.php +www/nedi/html/inc/header.php +www/nedi/html/inc/lang-eng.php +www/nedi/html/inc/lang-ger.php +www/nedi/html/inc/libdev.php +www/nedi/html/inc/libgraph.php +www/nedi/html/inc/libmisc.php +www/nedi/html/inc/libmisc.php.orig +www/nedi/html/inc/libmon.php +www/nedi/html/inc/libmsq.php +www/nedi/html/inc/libnod.php +www/nedi/html/inc/snmpget.php +www/nedi/html/inc/snmpwalk.php +www/nedi/html/inc/style.css +www/nedi/html/index.php +www/nedi/html/test/calc.php +www/nedi/html/test/graph.php +www/nedi/html/test/write.php +www/nedi/inc/iab.txt +www/nedi/inc/libcli-sshnet.pl +www/nedi/inc/libmisc.pl +www/nedi/inc/libmisc.pl.orig +www/nedi/inc/libmon.pl +www/nedi/inc/libmsq.pl +www/nedi/inc/libsnmp.pl +www/nedi/inc/oui.txt +www/nedi/inc/wlan.txt +www/nedi/moni.pl +www/nedi/nedi.pl +www/nedi/nedi.pl.orig +www/nedi/syslog.pl +www/nedi/sysobj/1.3.6.1.4.1.11.2.3.7.11.19.def +www/nedi/sysobj/1.3.6.1.4.1.11.2.3.7.11.33.3.1.1.def +www/nedi/sysobj/1.3.6.1.4.1.1991.1.1.def +www/nedi/sysobj/1.3.6.1.4.1.1991.1.3.3.1.def +www/nedi/sysobj/1.3.6.1.4.1.3076.1.2.1.1.1.2.def +www/nedi/sysobj/1.3.6.1.4.1.3076.1.2.1.1.2.1.def +www/nedi/sysobj/1.3.6.1.4.1.3076.1.2.1.1.3.1.def +www/nedi/sysobj/1.3.6.1.4.1.311.1.1.3.1.2.def +www/nedi/sysobj/1.3.6.1.4.1.45.3.30.1.def +www/nedi/sysobj/1.3.6.1.4.1.45.3.30.2.def +www/nedi/sysobj/1.3.6.1.4.1.45.3.35.1.def +www/nedi/sysobj/1.3.6.1.4.1.5205.2.18.def +www/nedi/sysobj/1.3.6.1.4.1.5205.2.9.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.110.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.122.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.125.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.14.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.186.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.19.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.217.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.218.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.221.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.222.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.223.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.246.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.248.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.27.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.278.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.282.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.283.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.30.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.301.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.313.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.324.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.325.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.359.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.362.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.367.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.368.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.414.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.416.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.427.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.428.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.429.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.431.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.448.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.466.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.467.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.469.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.471.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.480.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.485.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.497.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.501.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.502.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.503.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.507.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.516.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.525.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.533.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.540.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.544.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.552.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.558.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.563.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.564.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.565.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.576.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.577.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.578.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.614.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.615.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.616.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.617.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.620.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.634.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.685.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.694.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.716.def +www/nedi/sysobj/1.3.6.1.4.1.9.1.717.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.28.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.34.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.38.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.39.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.40.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.42.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.44.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.45.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.46.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.58.def +www/nedi/sysobj/1.3.6.1.4.1.9.5.59.def +www/nedi/sysobj/other.def +www/nedi/trap.pl +@dirrm www/nedi/sysobj +@exec mkdir -p %D/www/nedi/rrd +@dirrm www/nedi/rrd +@dirrm www/nedi/inc +@dirrm www/nedi/html/test +@exec mkdir -p %D/www/nedi/html/log +@dirrm www/nedi/html/log +@dirrm www/nedi/html/inc/ThemeN +@dirrm www/nedi/html/inc +@dirrm www/nedi/html/img/smiles +@dirrm www/nedi/html/img/oui +@dirrm www/nedi/html/img/dev +@dirrm www/nedi/html/img/32-xmas +@dirrm www/nedi/html/img/32-orig +@dirrm www/nedi/html/img/32 +@dirrm www/nedi/html/img/16-xmas +@dirrm www/nedi/html/img/16-orig +@dirrm www/nedi/html/img/16 +@dirrm www/nedi/html/img +@dirrm www/nedi/html +@dirrm www/nedi/contrib +@dirrm www/nedi |