ds-lite: disable NAT according to RFC 7084
Signed-off-by: Steven Barth <steven@midlink.org> SVN-Revision: 40511
This commit is contained in:
parent
daf69ee1da
commit
ba6689b064
2 changed files with 8 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=ds-lite
|
PKG_NAME:=ds-lite
|
||||||
PKG_VERSION:=3
|
PKG_VERSION:=4
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
|
@ -56,6 +56,13 @@ proto_dslite_setup() {
|
||||||
|
|
||||||
proto_add_data
|
proto_add_data
|
||||||
[ -n "$zone" ] && json_add_string zone "$zone"
|
[ -n "$zone" ] && json_add_string zone "$zone"
|
||||||
|
|
||||||
|
json_add_array firewall
|
||||||
|
json_add_object ""
|
||||||
|
json_add_string type nat
|
||||||
|
json_add_string target ACCEPT
|
||||||
|
json_close_object
|
||||||
|
json_close_array
|
||||||
proto_close_data
|
proto_close_data
|
||||||
|
|
||||||
proto_send_update "$cfg"
|
proto_send_update "$cfg"
|
||||||
|
|
Loading…
Reference in a new issue