Your message dated Sat, 29 Oct 2016 04:46:04 +0000
with message-id <[email protected]>
and subject line Bug#842355: Removed package(s) from unstable
has caused the Debian Bug report #515755,
regarding IPtraf adding bonding support
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
515755: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515755
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: iptraf
Version: 3.0.0-6
I'am using bonding to have fail-over networkdevice an it's not possible
to access it with iptraf for looking upcoming/down traffic.
Would it be possible to add this to the iptraf-package? :)
I solved this with some changed in the source code:
Steps i did (orig-sourcecode got patched with -diif files from debian):
---------------------------------
ifaces.c
---------------------------------
#define NUM_SUPPORTED_IFACES 28
to (just increasing the number with 1)
#define NUM_SUPPORTED_IFACES 29
---------------------------------
ifaces.c
---------------------------------
char ifaces[][6] =
{ "lo", "eth", "sl", "ppp", "ippp", "plip", "fddi", "isdn", "dvb",
"pvc", "hdlc", "ipsec", "sbni", "tr", "wvlan", "wlan", "sm2", "sm3",
"pent", "lec", "brg", "tun", "tap", "cipcb", "tunl", "vlan", "ath",
"ra"
};
to (i just added "bond",)
char ifaces[][6] =
{ "lo", "eth", "bond", "sl", "ppp", "ippp", "plip", "fddi", "isdn",
"dvb",
"pvc", "hdlc", "ipsec", "sbni", "tr", "wvlan", "wlan", "sm2", "sm3",
"pent", "lec", "brg", "tun", "tap", "cipcb", "tunl", "vlan", "ath",
"ra"
};
---------------------------------
packets.c
---------------------------------
if (strncmp(ifname, "eth", 3) == 0)
result = LINK_ETHERNET;
else if (strncmp(ifname, "ath", 3) == 0)
result = LINK_ETHERNET;
to (adding a new else-if statement with bond)
if (strncmp(ifname, "eth", 3) == 0)
result = LINK_ETHERNET;
else if (strncmp(ifname, "bond", 3) == 0)
result = LINK_ETHERNET;
else if (strncmp(ifname, "ath", 3) == 0)
result = LINK_ETHERNET;
-----------------------------------
--
Mit freundlichen Grüßen
Denis Klimek
-------------------------------------
Denis Klimek, Inhaber & Projektleiter
Diagonalstr. 3
D-20537 Hamburg
-------------------------------------
Telefon: +49 (0) 40 / 411 85 984
Telefon: +49 (0) 40 / 235 591 99
Mobil: +49 (0) 176/ 298 299 06
E-Mail: [email protected]
Website: www.Serverleih.de
--- End Message ---
--- Begin Message ---
Version: 3.0.0-8.1+rm
Dear submitter,
as the package iptraf has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/842355
The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].
Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---