Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Müller
aports
Commits
bb04cb9d
Commit
bb04cb9d
authored
16 years ago
by
Carlo Landmeter
Browse files
Options
Downloads
Patches
Plain Diff
testing/fprobe: new aport
parent
5a9af1f3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
testing/fprobe/APKBUILD
+32
-0
32 additions, 0 deletions
testing/fprobe/APKBUILD
testing/fprobe/fprobe.confd
+70
-0
70 additions, 0 deletions
testing/fprobe/fprobe.confd
testing/fprobe/fprobe.initd
+39
-0
39 additions, 0 deletions
testing/fprobe/fprobe.initd
with
141 additions
and
0 deletions
testing/fprobe/APKBUILD
0 → 100644
+
32
−
0
View file @
bb04cb9d
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
pkgname
=
fprobe
pkgver
=
1.1
pkgrel
=
0
pkgdesc
=
"libpcap-based tool that collect network traffic"
url
=
"http://fprobe.sourceforge.net/"
license
=
"GPL"
depends
=
"uclibc"
makedepends
=
"libpcap-dev"
subpackages
=
"
$pkgname
-doc"
source
=
"http://downloads.sourceforge.net/
$pkgname
/
$pkgname
-
$pkgver
.tar.bz2
$pkgname
.initd
$pkgname
.confd"
build
()
{
cd
"
$srcdir
/
$pkgname
-
$pkgver
"
./configure
--prefix
=
/usr
\
--sysconfdir
=
/etc
\
--mandir
=
/usr/share/man
\
--infodir
=
/usr/share/info
make
||
return
1
make
DESTDIR
=
"
$pkgdir
"
install
install
-m755
-D
"
$srcdir
"
/
$pkgname
.initd
"
$pkgdir
"
/etc/init.d/
$pkgname
install
-m644
-D
"
$srcdir
"
/
$pkgname
.confd
"
$pkgdir
"
/etc/conf.d/
$pkgname
}
md5sums
=
"65850d0470078269b33eee58cba77ac2 fprobe-1.1.tar.bz2
a682fef5ba72855db5d67b62c88ffaf0 fprobe.initd
ba9c9327456e4db897b60481705df282 fprobe.confd"
This diff is collapsed.
Click to expand it.
testing/fprobe/fprobe.confd
0 → 100644
+
70
−
0
View file @
bb04cb9d
# Config file for /etc/init.d/fprobe
# Do we want the interface in promiscous mode [yes/no]
#PROMISC=no
# Interface
IFACE=eth0
# If configured, only capture packets matching this tcpdump expression
#FILTER=""
# Flow state timers
#TIMER_EXPIRED=5
#TIMER_FRAGMENTED=30
#TIMER_IDLE=60
#TIMER_ACTIVE=300
# This is the default and should be left unless you know what you are doing
#FLOW_VER=5
# local ip. if configured fprobe will use this as the source IP for sending ALL flow data
# If you want to specify a specific source address per collecter, customize it below
#LOCALIP=
# SNMP iface id
SNMP_IFACE="${IFACE//eth}"
# Maximum number of concurrent flows to track
# using a specified amount of memory
#MEMBULK=10000
#MEMLIMIT=
# Pending queue
#PENDING=100
# Kernel capture buffer size (kB)
#KERNBUF=1024
# Realtime priority [0=disabled, 1..99]
#RTPRIO=0
# Delay N nanoseconds after each B bytes
#DELAY="0:0"
# How much of the start of each packet to grab
#SNAPLEN=256
# chroot() to this location after startup
CHROOT="/var/empty"
# User to run as. must have perms to the pidfile directory /var/run/fprobe/
USER=nobody
# logging level for syslog (0=EMERG, ..., 6=INFO, 7=DEBUG)
#LOGLEVEL=6
# If you want to run multiple instances of fprobe,
# You MUST set this variable to a unique INTEGER for each one!
PIDFILE_ID=''
# remote ip. this is where we send flows
REMOTEIP=127.0.0.1
# port to listen on
PORT=2055
# Collector type, see the manpage for valid types
TYPE=''
# If you want multiple collectors, just specify each one here
COLLECTORS="${REMOTEIP}:${PORT}/${LOCALIP}/${TYPE}"
This diff is collapsed.
Click to expand it.
testing/fprobe/fprobe.initd
0 → 100644
+
39
−
0
View file @
bb04cb9d
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
}
BIN=/usr/sbin/fprobe
PIDFILE_EXTRA=""
[ -n "$PIDFILE_ID" ] && PIDFILE_EXTRA="[$PIDFILE_ID]"
PIDFILE="/var/run/fprobe$PIDFILE_EXTRA.pid"
start() {
ebegin "Starting fprobe"
local OPTS=""
[ "${PROMISC}" == "yes" ] || OPTS="${OPTS} -p"
[ -n "${FILTER}" ] && OPTS="${OPTS} -f '${FILTER}'"
for optname in i:IFACE s:TIMER_EXPIRED g:TIME_FRAGMENTED d:TIMER_IDLE \
e:TIMER_ACTIVE n:FLOW_VER a:LOCALIP x:SNMP_IFACE b:MEMBULK \
m:MEMLIMIT q:PENDING B:KERNBUF r:RTPRIO t:DELAY S:SNAPLEN \
c:CHROOT u:USER v:LOGLEVEL ; do
opt="${optname/:*}" optvar="${optname/*:}"
eval optvalue="\$$optvar"
[ -n "$optvalue" ] && OPTS="${OPTS} -${opt} ${optvalue}"
done
OPTS="${OPTS} -l 1:${PIDFILE_ID} ${COLLECTORS}"
start-stop-daemon --start --exec $BIN \
--pidfile ${PIDFILE} \
-- ${OPTS}
eend $?
}
stop() {
ebegin "Stopping fprobe"
start-stop-daemon --stop --quiet --exec $BIN \
--pidfile ${PIDFILE}
eend $?
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment