syslog
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 211
SQLsyslogd 0.2
SQLsyslogd is a C# utility that allows syslog-ng to export logging information to a database. more>>
A utility for feeding log messages from syslog-ng into a database.
Main features:
- Written in C#, tested with Mono 1.1.7/1.1.8 and syslog-ng 1.6.x
- Set to work with PGSQL and MySQL, but can be easily extended to use other databases (like Oracle or MS SQL or even an embedded DB)
- Only works with the default syslog template
- Supports a buffered mode so that if DB writes take a while, it will not block on reading the log information
<<lessMain features:
- Written in C#, tested with Mono 1.1.7/1.1.8 and syslog-ng 1.6.x
- Set to work with PGSQL and MySQL, but can be easily extended to use other databases (like Oracle or MS SQL or even an embedded DB)
- Only works with the default syslog template
- Supports a buffered mode so that if DB writes take a while, it will not block on reading the log information
Download (0.33MB)
Added: 2005-06-30 License: The Apache License 2.0 Price:
1578 downloads
syslog-async 0.1
syslog-async project is a non-blocking syslog() replacement. more>>
syslog-async project is a non-blocking syslog() replacement.
It is not widely known that the standard Unix syslog() library routine can block waiting for the syslog daemon, but it is generally true. On some systems, using a datagram socket for /dev/log avoids endless waits, but on Linux, even this does not work. Try typing
killall -STOP syslogd
into a root terminal on a non-critical box: Eventually, everything will stop.
This library provides a version of syslog() which never blocks: the code was originally written for dnsmasq, to fix a deadlock between syslod and dnsmasq where syslogd uses dnsmasq for DNS, and dnsmasq uses syslogd for logging. It should be generally useful for any daemon where its more important that the daemon continue to function than that it continue to log.
The code has been tested on Linux 2.6, OpenBSD 4.0 and FreeBSD 6.0. It has been run with syslogd and syslog-ng. Note that it is not, currently, threadsafe.
The header file, syslog_async.h is extensively commented, and details how to use the library. It is, as far as possible, API compatible with the POSIX-standard syslog.
<<lessIt is not widely known that the standard Unix syslog() library routine can block waiting for the syslog daemon, but it is generally true. On some systems, using a datagram socket for /dev/log avoids endless waits, but on Linux, even this does not work. Try typing
killall -STOP syslogd
into a root terminal on a non-critical box: Eventually, everything will stop.
This library provides a version of syslog() which never blocks: the code was originally written for dnsmasq, to fix a deadlock between syslod and dnsmasq where syslogd uses dnsmasq for DNS, and dnsmasq uses syslogd for logging. It should be generally useful for any daemon where its more important that the daemon continue to function than that it continue to log.
The code has been tested on Linux 2.6, OpenBSD 4.0 and FreeBSD 6.0. It has been run with syslogd and syslog-ng. Note that it is not, currently, threadsafe.
The header file, syslog_async.h is extensively commented, and details how to use the library. It is, as far as possible, API compatible with the POSIX-standard syslog.
Download (0.012MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
955 downloads
Linksys Syslog 1.0
Linksys Syslog captures the snmp trap messages from a Linksys router and saves these to syslog. more>>
Linksys Syslog captures the snmp trap messages from a Linksys router and saves these to syslog. This daemon is very small robust and it does its job.
Ive gotten this router from a customer/partner DH computers to look at the VPN capabilities. Eventhough these broadband routers are small and cheap their VPN cabalities are okay. Its certainly not a Cisco PIX, but then again the Linksys costs 4 times less. The Linksys is very usable for the SOHO market and with no effort at all you can configure this device as a xDSL/Cable router.
After having looked at the specs I wanted to return this device to our customer/partner he told me that he gave it to me and if I didnt find a use for it that the company I worked for IT=it could keep it. So I decided to use this device because it has a 4 ports 100Mb/sec switch and I was still working on a 16 port hub at home.
After having updated the firmware to properly support MXSTREAM/PPTP I configured the router. But I wanted to setup logging for all in and outgoing traffic the way that I also had with my FreeBSD ipfw and ipf firewall. So I switched on Logging to my FreeBSD box. It struck me that I couldnt set the syslog facility and warning level, so it didnt seem like syslog. A quick snif with tcpdump revealed that the Linksys uses snmptrap to send the log requests. I used Ethereal to look in the packet to determine the layout of the snmptrap packet. The first 73 bytes are control data telling how large the payload, snmp version, etc. So I decided to only focus on the data from char 73 to the rest of the packet.
The program is very simple and straight forward. A UDP socket is opened and bound to port 162, the snmptrap port. The program goes in a loop and waits for data to be read; the programming works blocking. When data is in the read buffer the data is parsed by setting the string pointer to the 73 character. It is then being send to the syslog using syslog(), for the BSD version I used the SECURITY facility, for the non-BSD I use the DAEMON facility. The server is not multi client, which is not necesarry for this application. The handling is done so fast that theres no need for forking new processes or spawning threads. And since it is UDP we will not have to handle an accepts asynchronously to the actual client handler any way, data is being send and stored in the receive buffer by the IP stack.
<<lessIve gotten this router from a customer/partner DH computers to look at the VPN capabilities. Eventhough these broadband routers are small and cheap their VPN cabalities are okay. Its certainly not a Cisco PIX, but then again the Linksys costs 4 times less. The Linksys is very usable for the SOHO market and with no effort at all you can configure this device as a xDSL/Cable router.
After having looked at the specs I wanted to return this device to our customer/partner he told me that he gave it to me and if I didnt find a use for it that the company I worked for IT=it could keep it. So I decided to use this device because it has a 4 ports 100Mb/sec switch and I was still working on a 16 port hub at home.
After having updated the firmware to properly support MXSTREAM/PPTP I configured the router. But I wanted to setup logging for all in and outgoing traffic the way that I also had with my FreeBSD ipfw and ipf firewall. So I switched on Logging to my FreeBSD box. It struck me that I couldnt set the syslog facility and warning level, so it didnt seem like syslog. A quick snif with tcpdump revealed that the Linksys uses snmptrap to send the log requests. I used Ethereal to look in the packet to determine the layout of the snmptrap packet. The first 73 bytes are control data telling how large the payload, snmp version, etc. So I decided to only focus on the data from char 73 to the rest of the packet.
The program is very simple and straight forward. A UDP socket is opened and bound to port 162, the snmptrap port. The program goes in a loop and waits for data to be read; the programming works blocking. When data is in the read buffer the data is parsed by setting the string pointer to the 73 character. It is then being send to the syslog using syslog(), for the BSD version I used the SECURITY facility, for the non-BSD I use the DAEMON facility. The server is not multi client, which is not necesarry for this application. The handling is done so fast that theres no need for forking new processes or spawning threads. And since it is UDP we will not have to handle an accepts asynchronously to the actual client handler any way, data is being send and stored in the receive buffer by the IP stack.
Download (0.011MB)
Added: 2006-06-28 License: BSD License Price:
721 downloads
php syslog viewer 7.2.0
php syslog viewer is a free web application written in PHP for viewing and searching system logs stored in a MySQL database. more>>
php syslog viewer is a free web application written in PHP for viewing and searching system logs stored in a MySQL database.
Good system administrators review the logs from each system they administer. As the number of systems gets bigger, this becomes a more complex and time consuming task. Eventually the system administrator would like a way to combine the log messages from all of the systems into one central location, but that is not enough. Without a good search facility, finding the information the system administrator needs is like finding a needle in a haystack.
This is where php syslog viewer comes to the rescue. Using a few common Free Software tools (syslog-ng, stunnel, MySQL, apache, and php), php syslog viewer provides a total solution for centralized logging and log management. Client systems send their log files to a server which stores them in a database. php syslog viewer provides the system administrator with a view into that database. php syslog viewer also includes a tool for optimizing searches and archiving older data so that it takes up less room on the disk.
php syslog viewer is Free Software licensed under the GNU GPL (version 2 or later) as published by the Free Software Foundation.
Main features:
- Log Searching
- Real Time Log Viewer
- Automatic Log Rotation
- User Authentication Possibilities
- LDAP
- Active Directory
- Built-in Authentication
- 3rd Party Client API (outputs XML)
- OSI Certified Open Source Software
- Log Archiving
<<lessGood system administrators review the logs from each system they administer. As the number of systems gets bigger, this becomes a more complex and time consuming task. Eventually the system administrator would like a way to combine the log messages from all of the systems into one central location, but that is not enough. Without a good search facility, finding the information the system administrator needs is like finding a needle in a haystack.
This is where php syslog viewer comes to the rescue. Using a few common Free Software tools (syslog-ng, stunnel, MySQL, apache, and php), php syslog viewer provides a total solution for centralized logging and log management. Client systems send their log files to a server which stores them in a database. php syslog viewer provides the system administrator with a view into that database. php syslog viewer also includes a tool for optimizing searches and archiving older data so that it takes up less room on the disk.
php syslog viewer is Free Software licensed under the GNU GPL (version 2 or later) as published by the Free Software Foundation.
Main features:
- Log Searching
- Real Time Log Viewer
- Automatic Log Rotation
- User Authentication Possibilities
- LDAP
- Active Directory
- Built-in Authentication
- 3rd Party Client API (outputs XML)
- OSI Certified Open Source Software
- Log Archiving
Download (0.036MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
1004 downloads
rsyslog 1.0.4 / 1.19.1
Rsyslog is an enhanced syslogd. more>>
Rsyslog is a FREE software, GPL lincesed enhanced syslogd. Among others, it offers support for MySQL and fully configurable output formats (including great timestamps). Rsyslog was initiated by Rainer Gerhards. It has been forked from the sysklogd standard package.
The goal of the rsyslog project is to provide a more configurable and reliable syslog deamon. By "reliable", we mean support for reliable transmission modes like TCP or RFC 3195 (syslog-reliable). We do NOT imply that the sysklogd package is unreliable.
In fact, the opposite is the case and we assume that for the time being the well-used sysklogd package offers better program reliability than our brand-new modifications to it.
The name "rsyslog" stems back to the planned support for syslog-reliable. Ironically, the initial release of rsyslog does NEITHER support syslog-reliable NOR tcp based syslog. Instead, it contains enhanced configurability and other enhancements (like database support).
The reason for this is that full support for RFC 3195 would require even more changes and especially fundamental architectural changes. Also, questions asked on the loganalysis list and at other places indicated that RFC3195 is NOT a prime priority for users, but rather better control over the output format.
So here we are, with a rsyslod that covers a lot of enhancements, but not a single one of these that made its name
The next enhancement scheduled is support for the new syslog-protocol internet draft format, not the least to see how easy/complicated it is to implement. We already know that some subleties of syslog-protocol will require at least one considerable architectural change to the syslogd and this might delay things a little.
Our immediate goal is to receive feedback and get the bugs out of the current release. Only after that we intend to advance the code and introduce new features.
Whats New in 1.19.1 Development Release:
- a bug that caused a high load when a TCP/UDP connection was closed is fixed now - Thanks mildew for solving this issue
- fixed a bug which caused a segfault on reinit - Thx varmojfekoj for the patch
- changed the hardcoded module path "/lib/rsyslog" to $(pkglibdir) in order to avoid trouble e.g. on 64 bit platforms (/lib64) - many thanks Peter Vrabec and darix, both provided a patch for solving this issue
- enhanced the unloading of modules - thanks again varmojfekoj
- applied a patch from varmojfekoj which fixes various little things in MySQL output module
<<lessThe goal of the rsyslog project is to provide a more configurable and reliable syslog deamon. By "reliable", we mean support for reliable transmission modes like TCP or RFC 3195 (syslog-reliable). We do NOT imply that the sysklogd package is unreliable.
In fact, the opposite is the case and we assume that for the time being the well-used sysklogd package offers better program reliability than our brand-new modifications to it.
The name "rsyslog" stems back to the planned support for syslog-reliable. Ironically, the initial release of rsyslog does NEITHER support syslog-reliable NOR tcp based syslog. Instead, it contains enhanced configurability and other enhancements (like database support).
The reason for this is that full support for RFC 3195 would require even more changes and especially fundamental architectural changes. Also, questions asked on the loganalysis list and at other places indicated that RFC3195 is NOT a prime priority for users, but rather better control over the output format.
So here we are, with a rsyslod that covers a lot of enhancements, but not a single one of these that made its name
The next enhancement scheduled is support for the new syslog-protocol internet draft format, not the least to see how easy/complicated it is to implement. We already know that some subleties of syslog-protocol will require at least one considerable architectural change to the syslogd and this might delay things a little.
Our immediate goal is to receive feedback and get the bugs out of the current release. Only after that we intend to advance the code and introduce new features.
Whats New in 1.19.1 Development Release:
- a bug that caused a high load when a TCP/UDP connection was closed is fixed now - Thanks mildew for solving this issue
- fixed a bug which caused a segfault on reinit - Thx varmojfekoj for the patch
- changed the hardcoded module path "/lib/rsyslog" to $(pkglibdir) in order to avoid trouble e.g. on 64 bit platforms (/lib64) - many thanks Peter Vrabec and darix, both provided a patch for solving this issue
- enhanced the unloading of modules - thanks again varmojfekoj
- applied a patch from varmojfekoj which fixes various little things in MySQL output module
Download (0.29MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
806 downloads
POE::Component::Server::Syslog 1.03
POE::Component::Server::Syslog is a Perl module with syslog services for POE. more>>
POE::Component::Server::Syslog is a Perl module with syslog services for POE.
SYNOPSIS
POE::Component::Server::Syslog->spawn(
Type => udp, # or tcp
BindAddress => 127.0.0.1,
BindPort => 514,
InputState => &input,
);
sub input {
my $message = $_[ARG0];
# .. do stuff ..
}
<<lessSYNOPSIS
POE::Component::Server::Syslog->spawn(
Type => udp, # or tcp
BindAddress => 127.0.0.1,
BindPort => 514,
InputState => &input,
);
sub input {
my $message = $_[ARG0];
# .. do stuff ..
}
Download (0.015MB)
Added: 2007-04-18 License: Perl Artistic License Price:
919 downloads
Andutteye Software Suite 2.3 (Syslog)
Andutteye Software Suite is a systems management tool. more>>
Andutteye Software Suite is a systems management tool. Andutteye Software Suite has a modular design and every module targets different tasks of systems management.
Andutteye Software Suite will let you manage all aspects of the IT infrastructure, helping to ensure availability, monitor, tune, and optimize performance.
Andutteye Software Suite will make it easier to support and maintain your entire enterprise as a single entity from a central point of operation.
The webinterface has oustanding features like:
- css stylesheet and theme support
- Language support
- Support and complete integration for monitoring, management and change module
- Role based access control to aes objects
- Centralized configuration administration for monitoring and management
- Tweak and present aes gathered data with graphs or reports
- Rss syndication support
<<lessAndutteye Software Suite will let you manage all aspects of the IT infrastructure, helping to ensure availability, monitor, tune, and optimize performance.
Andutteye Software Suite will make it easier to support and maintain your entire enterprise as a single entity from a central point of operation.
The webinterface has oustanding features like:
- css stylesheet and theme support
- Language support
- Support and complete integration for monitoring, management and change module
- Role based access control to aes objects
- Centralized configuration administration for monitoring and management
- Tweak and present aes gathered data with graphs or reports
- Rss syndication support
Download (0.008MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1102 downloads
passlogd 0.1F
passlogd is a purpose-built sniffer for capturing syslog messages in transit. more>>
passlogd is a purpose-built sniffer for capturing syslog messages in transit. This allows for backup logging to be performed on a machine with no open ports. Useful if your log server is compromised or you dont want to sift through a terabyte of sniffer logs. Passlogd is currently under development, so check back here for bugfixes, new features, etc. If you find bugs, please let me know, and by all means, send me a patch.
[COPYRIGHT-=1]
-h display this message
-s log captured messages to local syslog
-r reverse lookup ip addresses
-d debug mode
-i ignore packets from
-p listen for syslog packets to (default: 514)
-e set the interface to listen on
-f log to (default: /var/log/passlog)
-S use syslog format in logfile
Enhancements:
- fixed a problem with the -e option that caused a crash, and updated to allow use of the all interface. thanks to Alberto Roman Linacero for the patch.
- updated copyright information.
<<less[COPYRIGHT-=1]
-h display this message
-s log captured messages to local syslog
-r reverse lookup ip addresses
-d debug mode
-i ignore packets from
-p listen for syslog packets to (default: 514)
-e set the interface to listen on
-f log to (default: /var/log/passlog)
-S use syslog format in logfile
Enhancements:
- fixed a problem with the -e option that caused a crash, and updated to allow use of the all interface. thanks to Alberto Roman Linacero for the patch.
- updated copyright information.
Download (0.008MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1207 downloads
hslogger 1.0.1
hslogger is a logging framework for Haskell, roughly similar to Pythons logging module. more>>
hslogger is a logging framework for Haskell, roughly similar to Pythons logging module. The project lets each log message have a priority and source be associated with it.
The programmer can then define global handlers that route or filter messages based on the priority and source. hslogger also has a syslog handler built in.
Main features:
- Each log message has a priority and a source associated with it
- Multiple log writers can be on the system
- Configurable global actions based on priority and source
- Extensible log writers (handlers)
- Default handlers that write to the console, file handles, or syslog
- Easy to use operation
<<lessThe programmer can then define global handlers that route or filter messages based on the priority and source. hslogger also has a syslog handler built in.
Main features:
- Each log message has a priority and a source associated with it
- Multiple log writers can be on the system
- Configurable global actions based on priority and source
- Extensible log writers (handlers)
- Default handlers that write to the console, file handles, or syslog
- Easy to use operation
Download (0.028MB)
Added: 2006-12-07 License: LGPL (GNU Lesser General Public License) Price:
1051 downloads
scanlogd 2.2.6
scanlogd is a system daemon which attempts to log all portscans of a host to the syslog, in a secure fashion. more>>
scanlogd project is a system daemon which attempts to log all portscans of a host to the syslog, in a secure fashion.
This release of scanlogd can be built with support for one of several packet capture interfaces. In addition to the raw socket interface on Linux (which does not require any libraries), scanlogd is now aware of libnids and libpcap.
The use of libpcap alone is discouraged. If youre on a system other than Linux and/or want to monitor the traffic of an entire network at once, you should be using libnids in order to handle fragmented IP packets.
<<lessThis release of scanlogd can be built with support for one of several packet capture interfaces. In addition to the raw socket interface on Linux (which does not require any libraries), scanlogd is now aware of libnids and libpcap.
The use of libpcap alone is discouraged. If youre on a system other than Linux and/or want to monitor the traffic of an entire network at once, you should be using libnids in order to handle fragmented IP packets.
Download (0.010MB)
Added: 2006-03-13 License: BSD License Price:
1322 downloads
Rxlogd 0.2
Rxlogd is a receive-only syslog server (collector) that can coexist with sysklogd. more>>
Rxlogd is a receive-only syslog server (collector) that can coexist with sysklogd. The project features simplicity, ease of use and a built-in dns cache for high performance.
An example logrotate configuration file is provided.
The intended audience is users of enterprise systems stuck with sysklogd or administrators who dont need more complex syslog server solutions.
Written in Python, rxlogd is architecture-independent. It was tested on i386 and x86_64.
No extra libraries are required.
Usage:
- Install the RPM or the sources from the download page on the machine intended to store syslog for others.
- Red Hat users can simply install the RPM and enjoy the defaults: logs will be stored in /var/log/remote (which will be created for you) and the daemon will run as user nobody. Also, logrotate will rotate 5 copies of your logfiles in that directory.
- Optionally, edit /etc/sysconfig/rxlogd for username to run as (examples are provided). Edit /etc/logrotate.d/rxlogd to change log rotation/retention parameters and to update changes made to the config file.
- Refer to the syslog documentation on how to configure the clients (the machines which will send syslog to your server).
Enhancements:
- Logrotate now uses a separate directory to store old logs in, fixing a bug.
- Minor cosmetic changes to init script.
<<lessAn example logrotate configuration file is provided.
The intended audience is users of enterprise systems stuck with sysklogd or administrators who dont need more complex syslog server solutions.
Written in Python, rxlogd is architecture-independent. It was tested on i386 and x86_64.
No extra libraries are required.
Usage:
- Install the RPM or the sources from the download page on the machine intended to store syslog for others.
- Red Hat users can simply install the RPM and enjoy the defaults: logs will be stored in /var/log/remote (which will be created for you) and the daemon will run as user nobody. Also, logrotate will rotate 5 copies of your logfiles in that directory.
- Optionally, edit /etc/sysconfig/rxlogd for username to run as (examples are provided). Edit /etc/logrotate.d/rxlogd to change log rotation/retention parameters and to update changes made to the config file.
- Refer to the syslog documentation on how to configure the clients (the machines which will send syslog to your server).
Enhancements:
- Logrotate now uses a separate directory to store old logs in, fixing a bug.
- Minor cosmetic changes to init script.
Download (0.006MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
822 downloads
ulogd 1.24
ulogd is a Userspace Packet Logging for netfilter. more>>
ulogd is a replacement for traditional syslog-based logging (using the LOG target) in iptables-based firewalls. ULOG/ulogd has a different concept.
Packets get copied to a special logging daemon, which can do very detailed logging to different targets (plaintext files, MySQL databases, ...). ulogd supports plugins for different output formats, as well as for new protocols/...
<<lessPackets get copied to a special logging daemon, which can do very detailed logging to different targets (plaintext files, MySQL databases, ...). ulogd supports plugins for different output formats, as well as for new protocols/...
Download (0.17MB)
Added: 2006-02-01 License: GPL (GNU General Public License) Price:
1362 downloads
Log4c 1.2.0
Log4c is a library of C for flexible logging to files, syslog and other destinations. more>>
Log4c is a library of C for flexible logging to files, syslog and other destinations. The project is modeled after the Log for Java library, staying as close to their API as is reasonable. Here is a short introduction to Log4j which describes the API, and design rationale.
Mark Mendel started a parallel log4c projet with a different philosophy. The design is macro oriented, so much lighter and faster which perfect for kernel development.
Supported Platforms:
- HP-UX release 11.00
- Tru 64 release 4.0F and 5.1
- Red Hat Linux Intel release 7.x, 8, 9
- Red Hat Enterprise Linux 3, 4
- Solaris Intel release 8, 9, 10
- FreeBSD 6.1-RELEASE
- AIX 5.3 (witk xlc compiler)
- Mac OS X
- Windows X
<<lessMark Mendel started a parallel log4c projet with a different philosophy. The design is macro oriented, so much lighter and faster which perfect for kernel development.
Supported Platforms:
- HP-UX release 11.00
- Tru 64 release 4.0F and 5.1
- Red Hat Linux Intel release 7.x, 8, 9
- Red Hat Enterprise Linux 3, 4
- Solaris Intel release 8, 9, 10
- FreeBSD 6.1-RELEASE
- AIX 5.3 (witk xlc compiler)
- Mac OS X
- Windows X
Download (0.49MB)
Added: 2007-06-22 License: LGPL (GNU Lesser General Public License) Price:
858 downloads
GoogLog 1.18
GoogLog is a CGI part (the research part) of GoogLog. more>>
GoogLog is a CGI part (the research part) of GoogLog.
SYNOPSIS
GoogLog is a easy and simple web tool to search inside your syslog files. If you want to search inside your syslog files from a web interface, this tool is made for you.
Install it in the cgi-bin directory of your web server, and configure some variable below.
The goal of Googlog is to be simple to install and use. so theres not a lot of functionnality, but, from my point of vue, it is simple to install and use and fast to search into syslogs files.
<<lessSYNOPSIS
GoogLog is a easy and simple web tool to search inside your syslog files. If you want to search inside your syslog files from a web interface, this tool is made for you.
Install it in the cgi-bin directory of your web server, and configure some variable below.
The goal of Googlog is to be simple to install and use. so theres not a lot of functionnality, but, from my point of vue, it is simple to install and use and fast to search into syslogs files.
Download (0.010MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1032 downloads
LooperNG 1.3
LooperNG is an intelligent event routing daemon. more>>
LooperNG is an intelligent event routing daemon. Primarily used for Network Management, this application can be used to accomplish a variety of tasks related to logging and alerting.
It is a modularised, rules-based event routing system that is flexible and easy to use. It is primarily deployed by network / security management groups as a central event gateway or an SNMP trap collection and forwarding station.
LooperNG events can be in the form of SNMP traps, Syslog Alerts, lines in a Log File, Sockets etc. Events can be received and generated such that an event can arrive in one form (e.g., SNMP) and forwarded in another form (e.g., Syslog). LooperNG can also receive events from systems like Nagios, Snort, Mon etc. and forward to other systems like a MySQL database, Netcool/OMNIbus, or just send an e-mail. Modules for new types of events can be easily written.
LooperNG was designed to improve on some of the limitations Looper (muthanna.com/looper). It is built completely from scratch with a cleaner more scalable architecture and is based on the Perl language.
Main features:
- SNMP Trap forwarding, exploding and rewriting (enhancing).
- Event generation for demos, debugging, troubleshooting etc.
- Event Enrichment and Escalation.
- Intelligent routing, rerouting and processing of events and alerts.
- Monitoring logfiles, syslog events, intrusion events etc.
- Forwarding alert history to databases, logfiles etc.
- Used as ad-hoc Netcool Probes.
- Used to replace HP Openview NNMs trap collection features.
- Centralize alerts in a LooperDB database.
<<lessIt is a modularised, rules-based event routing system that is flexible and easy to use. It is primarily deployed by network / security management groups as a central event gateway or an SNMP trap collection and forwarding station.
LooperNG events can be in the form of SNMP traps, Syslog Alerts, lines in a Log File, Sockets etc. Events can be received and generated such that an event can arrive in one form (e.g., SNMP) and forwarded in another form (e.g., Syslog). LooperNG can also receive events from systems like Nagios, Snort, Mon etc. and forward to other systems like a MySQL database, Netcool/OMNIbus, or just send an e-mail. Modules for new types of events can be easily written.
LooperNG was designed to improve on some of the limitations Looper (muthanna.com/looper). It is built completely from scratch with a cleaner more scalable architecture and is based on the Perl language.
Main features:
- SNMP Trap forwarding, exploding and rewriting (enhancing).
- Event generation for demos, debugging, troubleshooting etc.
- Event Enrichment and Escalation.
- Intelligent routing, rerouting and processing of events and alerts.
- Monitoring logfiles, syslog events, intrusion events etc.
- Forwarding alert history to databases, logfiles etc.
- Used as ad-hoc Netcool Probes.
- Used to replace HP Openview NNMs trap collection features.
- Centralize alerts in a LooperDB database.
Download (1.7MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1211 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above syslog search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed