diff options
author | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-06-05 18:31:04 +0100 |
---|---|---|
committer | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-07-25 10:18:23 +0100 |
commit | 1aad1d17ed8bee2a22d235980a6c80b6dc1b74e0 (patch) | |
tree | df4c37b90dbe076d7b80d331c86bc73757e69f1e /package/network/utils/iptables/Makefile | |
parent | 12610a5620522c38178208e5559e89e17cbae2ec (diff) | |
download | upstream-1aad1d17ed8bee2a22d235980a6c80b6dc1b74e0.tar.gz upstream-1aad1d17ed8bee2a22d235980a6c80b6dc1b74e0.tar.bz2 upstream-1aad1d17ed8bee2a22d235980a6c80b6dc1b74e0.zip |
iptables: add connmark savedscp support
iptables: connmark - add savedscp option
Naive user space front end to xt_connmark 'savedscp' option.
e.g.
iptables -A QOS_MARK_eth0 -t mangle -j CONNMARK --savedscp-mark 0xfc000000/0x01000000
Will save DSCP into the top 6 bits and OR 0x01 (ie set) the least
significant bit of most significant byte.
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Diffstat (limited to 'package/network/utils/iptables/Makefile')
-rw-r--r-- | package/network/utils/iptables/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/iptables/Makefile b/package/network/utils/iptables/Makefile index dd761f3443..7e8e6f7eaa 100644 --- a/package/network/utils/iptables/Makefile +++ b/package/network/utils/iptables/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=iptables PKG_VERSION:=1.8.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://netfilter.org/projects/iptables/files PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |