Search Criteria
Package Details: xtables-addons 3.13-1
Git Clone URL: | https://aur.archlinux.org/xtables-addons.git (read-only, click to copy) |
---|---|
Package Base: | xtables-addons |
Description: | Xtables-addons is a set of additional extensions for the Xtables packet filter that is present in the Linux kernel |
Upstream URL: | https://inai.de/projects/xtables-addons |
Keywords: | iptablex xtables |
Licenses: | |
Conflicts: | |
Replaces: | |
Submitter: | None |
Maintainer: | k0ste |
Last Packager: | k0ste |
Votes: | 30 |
Popularity: | 0.000026 |
First Submitted: | 2009-04-20 09:21 |
Last Updated: | 2020-12-08 06:55 |
Dependencies (8)
- glibc (glibc-git)
- iptables (iptables-git, iptables-minimal-git, iptables-nosystemd-minimal-git, iptables-fullconenat, iptables-fullconenat-nft, iptables-nft)
- linux (linux-surfacepro3-git, linux-aarch64-rock64-bin, linux-ec2, linux-galliumos, linux-zest-git, linux-lts49-kallsyms, linux-bootsplash, linux-odroid)
- gcc (gcc-multilib-x32, fastgcc, gcc-multilib-git, gcc-git) (make)
- libtool (libtool-git) (make)
- linux-api-headers (linux-api-headers-git) (make)
- linux-headers (linux-surfacepro3-git-headers, linux-aarch64-rock64-bin-headers, linux-ec2-headers, kernel-uek-devel, linux-galliumos-headers, linux-zest-git-headers, linux-lts49-kallsyms-headers, linux-bootsplash-headers, linux-fbcondecor-headers, linux-ck-fbcondecor-headers, linux-odroid-headers) (make)
- pkg-config (pkgconf-git, pkgconf) (make)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 Next › Last »
johny77 commented on 2014-04-13 17:58
Problem solved.
Please applicate a patch into PKGBUILD. New kernel 3.14 has a new delarations for the function net_random().
diff -r old/xtables-addons-2.4/extensions/xt_CHAOS.c new/xtables-addons-2.4/extensions/xt_CHAOS.c
71c71
< if (!ret || hotdrop || (unsigned int)net_random() > delude_percentage)
---
> if (!ret || hotdrop || (unsigned int)prandom_u32() > delude_percentage)
101c101
< if ((unsigned int)net_random() <= reject_percentage) {
---
> if ((unsigned int)prandom_u32() <= reject_percentage) {
diff -r old/xtables-addons-2.4/extensions/xt_TARPIT.c new/xtables-addons-2.4/extensions/xt_TARPIT.c
110,111c110,111
< ((net_random() & 0x1f) - 0xf);
< tcph->seq = htonl(net_random() & ~oth->seq);
---
> ((prandom_u32() & 0x1f) - 0xf);
> tcph->seq = htonl(prandom_u32() & ~oth->seq);
120c120
< ((net_random() & 0x1f) - 0xf);
---
> ((prandom_u32() & 0x1f) - 0xf);
disarmer commented on 2014-04-11 08:51
Updated to 2.4.1
johny77 commented on 2014-04-11 08:02
It is not possible to compile it after upgrade. I am unable to solve this problem. :(
build/xtables-addons/src/xtables-addons-2.4/extensions/xt_CHAOS.c:71:2: error: implicit declaration of function 'net_random' [-Werror=implicit-function-de
claration]
if (!ret || hotdrop || (unsigned int)net_random() > delude_percentage)
^
cc1: some warnings being treated as errors
Anonymous comment on 2012-10-31 18:09
I have no idea why this is not working:
iptables -A INPUT -p tcp -m lscan --stealth -j DROP
iptables: No chain/target/match by that name.
Anonymous comment on 2012-10-31 18:08
I have no idea why this is not working:
iptables -A INPUT -p tcp -m lscan --stealth -j DROP
iptables: No chain/target/match by that name.
Anonymous comment on 2012-10-12 21:00
Could the conflict/provides/replaces lines for ipset be removed from the package, as ipset is no longer included.
And the descriptio adjusted too :-)
honza801 commented on 2012-08-14 08:30
please add linux-headers to build-dependencies
Anonymous comment on 2012-07-03 20:49
Required linux-headers to successfully build
Anonymous comment on 2012-04-18 22:21
Could the conflict/provides/replaces lines for ipset be removed from the package, as ipset is no longer included.
And the descriptio adjusted too :-)
Anonymous comment on 2011-11-23 21:42
Please update to 1.39.