bandwidthd.spec

Artur Makutunowicz nail2k w freesco.pl
Pią, 21 Sty 2005, 01:08:26 CET


Witam!
Przesyłam speca + łatki na ten dość ciekawy programik do rysowania 
wykresów zużycia sieci. Po poprawkach(jeżeli takie będą konieczne) 
prosiłbym o umieszczenie tego w CVSie.
Pakiet buduje się i działa.

Pozdrawiam.
-- 
Artur Makutunowicz <nail2k%freeco.pl> | GSM +48508912928
GG #4657066 | Linux User #324974 | http://www.nail2k.int.pl
Linux 2.6.8 AMD_Athlon(tm)_XP_2000+ PLD Linux
-------------- następna część ---------
####################################################
# Bandwidthd.conf
# 
# Commented out options are here to provide
# documentation and represent defaults

# Subnets to collect statistics on.  Traffic that 
# matches none of these subnets will be ignored.
# Syntax is either IP Subnet Mask or CIDR
#subnet 10.0.0.0 255.0.0.0
subnet 192.168.0.0/24
#subnet 172.16.0.0/12

# Device to listen on
# Bandwidthd listens on the first device it detects
# by default.  Run "bandwidthd -l" for a list of 
# devices. 
#dev "eth0"

###################################################
# Options that don't usually get changed

# An interval is 2.5 minutes, this is how many 
# intervals to skip before doing a graphing run
#skip_intervals 0

# Graph cutoff is how many k must be transfered by an
# ip before we bother to graph it
#graph_cutoff 1024

#Put interface in promiscuous mode to score to traffic
#that may not be routing through the host machine.
promiscuous false

#Log data to cdf file htdocs/log.cdf
output_cdf true

#Read back the cdf file on startup
recover_cdf true

#Libpcap format filter string used to control what bandwidthd see's
#Please always include "ip" in the string to avoid strange problems
#filter "ip"

#Draw Graphs - This default to true to graph the traffic bandwidthd is recording
#Usually set this to false if you only want cdf output or
#you are using the database output option.  Bandwidthd will use very little
#ram and cpu if this is set to false.
graph true

#Set META REFRESH seconds (default 150, use 0 to disable).
meta_refresh 150

-------------- następna część ---------
Załącznik, który nie był tekstem został usunięty...
Name: bandwidthd-pgsql.patch
Type: text/x-diff
Size: 1285 bytes
Desc: nie znany
Url : /mailman/pipermail/pld-devel-pl/attachments/20050121/6330edf2/bandwidthd-pgsql.bin
-------------- następna część ---------
Summary:	Network traffic tracking tool
Summary(pl):	Narz?dzie do ?ledzenia ruchu sieciowego
Name:		bandwidthd
Version:	2.0.1
Release:	1
Epoch:		1
License:	GPL
Group:		Networking/Admin
Source0:	http://dl.sourceforge.net/bandwidthd/%{name}-%{version}.tgz
# Source0-md5:	aa79aad7bd489fd2cae1f7dc086ca8b6
Source1:	%{name}.init
Source2:	%{name}.sysconfig
Source3:	%{name}.conf
Patch0:		%{name}-makefile.patch
Patch1:		%{name}-pgsql.patch
Patch2:		%{name}-path.patch
URL:		http://bandwidthd.sourceforge.net/
BuildRequires:	libpng-devel
BuildRequires:	gd-devel
BuildRequires:	libpcap-devel
BuildRequires:	autoconf
PreReq:		rc-scripts
Requires:	httpd
Requires(post,preun):	/sbin/chkconfig
BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)

%define         _htmldir        /home/services/httpd/html/bandwidthd

%description
BandwidthD tracks usage of TCP/IP network subnets and builds html
files with graphs to display utilization. Charts are built by
individual IPs, and by default display utilization over 2 day, 8 day,
40 day, and 400 day periods. Furthermore, each ip address's
utilization can be logged out at intervals of 3.3 minutes, 10 minutes,
1 hour or 12 hours in cdf format, or to a backend database server.
HTTP, TCP, UDP, ICMP, VPN, and P2P traffic are color coded.

%description -l pl
BandwidthD ?ledzi u?ycie sieci TCP/IP i buduje pliki html
wy?wietlaj?ce ruch sieciowy. Wykresy pokazuj? IP u?ytkownik?w i
domy?lnie wy?wietlaj? zu?ycie na przestrzeni 2, 8, 40 i 400 dni.
Ponadto udzia? ka?dego adresu IP w ruchu sieciowym mo?e by? zapisywany
w przedzia?ach 3.3 minut, 10 minut, 1 godziny lub 12 godzin w formacie
cdf, albo zapisywany do bazy danych. Ruch HTTP, TCP, UDP, ICMP, VPN, i
P2P jest kodowany w r??nych kolorach.

%prep
%setup -q
%patch0 -p0
%patch1 -p0
%patch2 -p1

%build
%{__autoconf}
%{__autoheader}
%configure

%{__make}

%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_sbindir},%{_htmldir},/etc/{sysconfig,rc.d/init.d,cron.d}}

install bandwidthd $RPM_BUILD_ROOT%{_sbindir}
install htdocs/* $RPM_BUILD_ROOT%{_htmldir}
install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/bandwidthd
install %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/bandwidthd
install %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}

cat  << EOF > $RPM_BUILD_ROOT/etc/cron.d/bandwidthd
0 0 * * *      root    /bin/kill -HUP \`cat /var/run/bandwidthd.pid\`
EOF

%clean
rm -rf $RPM_BUILD_ROOT

%post
/sbin/chkconfig --add bandwidthd
if [ -f /var/lock/subsys/bandwidthd ]; then
        /etc/rc.d/init.d/bandwidthd restart 1>&2
else
        echo "Run \"/etc/rc.d/init.d/bandwidthd start\" to start bandwidthd."
fi

%preun
if [ "$1" = "0" ]; then
        if [ -f /var/lock/subsys/bandwidthd ]; then
                /etc/rc.d/init.d/bandwidthd stop 1>&2
        fi
        /sbin/chkconfig --del bandwidthd
fi

%files
%defattr(644,root,root,755)
%doc CHANGELOG README TODO
%attr(755,root,root) %{_sbindir}/bandwidthd
%dir %{_htmldir}
%{_htmldir}/*
%config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/%{name}.conf
%attr(755,root,root) /etc/rc.d/init.d/bandwidthd
%config(noreplace) %verify(not size mtime md5) %attr(640,root,root) /etc/cron.d/bandwidthd
/etc/sysconfig/bandwidthd

%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
%changelog
* %{date} PLD Team <feedback w pld-linux.org>
All persons listed below can be reached at <cvs_login>@pld-linux.org
-------------- następna część ---------
# Customized setings for bandwidthd

# Define nice level for bandwidthd
SERVICE_RUN_NICE_LEVEL="+5"
-------------- następna część ---------
Załącznik, który nie był tekstem został usunięty...
Name: bandwidthd.init
Type: application/x-shellscript
Size: 1453 bytes
Desc: nie znany
Url : /mailman/pipermail/pld-devel-pl/attachments/20050121/6330edf2/bandwidthd.bin
-------------- następna część ---------
Załącznik, który nie był tekstem został usunięty...
Name: bandwidthd-makefile.patch
Type: text/x-diff
Size: 577 bytes
Desc: nie znany
Url : /mailman/pipermail/pld-devel-pl/attachments/20050121/6330edf2/bandwidthd-makefile.bin
-------------- następna część ---------
Załącznik, który nie był tekstem został usunięty...
Name: bandwidthd-path.patch
Type: text/x-diff
Size: 5071 bytes
Desc: nie znany
Url : /mailman/pipermail/pld-devel-pl/attachments/20050121/6330edf2/bandwidthd-path.bin


Więcej informacji o liście dyskusyjnej pld-devel-pl