From 4ecf5af8dfd39799577ee10d7b87f3d554795ad8 Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Mon, 5 Aug 2019 20:11:39 +0200 Subject: [PATCH] Allow the user to modify the external network ips In the 900-use-it.sh script, the user can define the gateway (OSH_BR_EX_ADDR) and the subnet of the external network (OSH_EXT_SUBNET). However, in the script that configures the gateway correctly in br-ex, these values are hardcoded. This patch allows the user to modify them by a env. variable, same as the 900-use-it.sh script does Change-Id: I25124024ebb72ff5fea8903fb393b71a052d0f93 Signed-off-by: Manuel Buil --- tools/deployment/developer/common/170-setup-gateway.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/deployment/developer/common/170-setup-gateway.sh b/tools/deployment/developer/common/170-setup-gateway.sh index 31b441d9d3..85a11f1f4f 100755 --- a/tools/deployment/developer/common/170-setup-gateway.sh +++ b/tools/deployment/developer/common/170-setup-gateway.sh @@ -16,8 +16,8 @@ set -xe # Assign IP address to br-ex -OSH_BR_EX_ADDR="172.24.4.1/24" -OSH_EXT_SUBNET="172.24.4.0/24" +: ${OSH_EXT_SUBNET:="172.24.4.0/24"} +: ${OSH_BR_EX_ADDR:="172.24.4.1/24"} sudo ip addr add ${OSH_BR_EX_ADDR} dev br-ex sudo ip link set br-ex up