-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/CESNET/nemea
- Loading branch information
Showing
8 changed files
with
73 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,27 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.63]) | ||
AC_INIT([nemea], [2.1.0], [[email protected]]) | ||
AC_INIT([nemea], [2.2.1], [[email protected]]) | ||
AM_INIT_AUTOMAKE([foreign subdir-objects]) | ||
RELEASE=1 | ||
AC_SUBST(RELEASE) | ||
USERNAME=`git config --get user.name` | ||
USERMAIL=`git config --get user.email` | ||
AC_SUBST(USERNAME) | ||
AC_SUBST(USERMAIL) | ||
# Check for rpmbuild | ||
AC_CHECK_PROG(RPMBUILD, rpmbuild, rpmbuild, [""]) | ||
|
||
# Checks for programs. | ||
AC_SUBST(RPMBUILD) | ||
if test -z "$RPMBUILD"; then | ||
AC_MSG_WARN([Due to missing rpmbuild you will not able to generate RPM package.]) | ||
fi | ||
|
||
# Checks for libraries. | ||
RPM_RELEASE=1 | ||
AC_SUBST(RPM_RELEASE) | ||
AM_CONDITIONAL(MAKE_RPMS, test x$RPMBUILD != x) | ||
|
||
# Checks for header files. | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
|
||
# Checks for library functions. | ||
|
||
AC_CONFIG_FILES([Makefile]) | ||
AC_CONFIG_FILES([Makefile | ||
nemea.spec]) | ||
AC_CONFIG_SUBDIRS([nemea-framework nemea-supervisor modules detectors]) | ||
AC_OUTPUT |
Submodule detectors
updated
20 files
+1 −1 | .travis.yml | |
+7 −39 | ChangeLog | |
+4 −1 | Makefile.am | |
+0 −0 | README | |
+11 −0 | README.md | |
+1 −1 | blacklistfilter/dnsdetect/dnsblacklistfilter.cpp | |
+3 −2 | configure.ac | |
+55 −0 | hoststatsnemea/hoststats.conf | |
+58 −0 | hoststatsnemea/hoststats.conf.default | |
+24 −0 | hoststatsnemea/src/config.cpp | |
+62 −93 | hoststatsnemea/src/detectionrules.cpp | |
+99 −0 | hoststatsnemea/src/detectionrules.h | |
+1 −1 | hoststatsnemea/src/eventhandler.cpp | |
+56 −1 | hoststatsnemea/src/hoststatserv.cpp | |
+2 −0 | hoststatsnemea/src/hs_config.h | |
+1 −1 | nemea-detectors.spec.in | |
+4 −4 | tunnel_detection/tunnel_detection_dns.c | |
+7 −0 | vportscan_detector/Makefile.am | |
+197 −0 | vportscan_detector/scan_aggregator.py | |
+371 −0 | vportscan_detector/vportscan_detector.c |
Submodule modules
updated
16 files
+1 −1 | .travis.yml | |
+9 −35 | ChangeLog | |
+2 −1 | Makefile.am | |
+0 −0 | README | |
+15 −0 | README.md | |
+29 −4 | configure.ac | |
+1 −1 | flow_meter/dnsplugin.cpp | |
+1 −1 | m4/ax_unirec_check.m4 | |
+3 −3 | nemea-modules.spec.in | |
+9 −0 | report2idea/Makefile.am | |
+195 −0 | report2idea/hoststats2idea.py | |
+32 −0 | report2idea/idea2idea.py | |
+71 −0 | report2idea/template.py | |
+152 −0 | report2idea/test.sh | |
+50 −0 | report2idea/vportscan2idea.py | |
+1 −1 | unirecfilter/unirecfilter.c |
Submodule nemea-framework
updated
61 files
Submodule nemea-supervisor
updated
9 files
+1 −0 | ChangeLog | |
+1 −1 | Makefile.am | |
+3 −0 | configs/Makefile.am | |
+7 −1 | configs/set_default_nic.sh | |
+7 −1 | configure.ac | |
+2 −0 | internal.h | |
+2 −2 | nemea-supervisor.spec.in | |
+1 −1 | supervisor.c | |
+1 −1 | supervisor_cli.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Summary: Nemea system | ||
Name: nemea | ||
Version: @PACKAGE_VERSION@ | ||
Release: @RELEASE@ | ||
URL: http://www.liberouter.org/ | ||
#Source: https://www.liberouter.org/ | ||
Group: Liberouter | ||
License: BSD | ||
Vendor: CESNET, z.s.p.o. | ||
Packager: @USERNAME@ <@USERMAIL@> | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release} | ||
BuildArch: noarch | ||
Requires: libtrap nemea-common nemea-modules nemea-detectors nemea-python nemea-pycommon nemea-supervisor | ||
|
||
%description | ||
Meta-package of the Nemea system, the distributed modular system for network traffic analysis and anomaly detection. | ||
|
||
%files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters