From 2ffb6d04139c482b890681939f596f63b0a6d5cb Mon Sep 17 00:00:00 2001 From: Hussam Date: Thu, 21 Sep 2023 22:18:05 -0500 Subject: [PATCH] Add NAT flag back to the Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f764c25f7d..f95e21a8d0 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,9 @@ BASE_CMD += --db.engine $(DB_ENGINE) ifeq ($(ENABLE_ARCHIVE),true) BASE_CMD += --gcmode archive endif +ifeq ($(ENABLE_NAT),true) + BASE_CMD += --nat extip:$(EXT_IP) +endif ifeq ($(ENABLE_UNLOCK),true) BASE_CMD += --allow-insecure-unlock endif