Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Reverting the OTBR Start Script #150

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 43 additions & 25 deletions test_collections/matter/scripts/OTBR/otbr_start.sh
Original file line number Diff line number Diff line change
@@ -1,28 +1,49 @@
#! /usr/bin/env bash

#
# Copyright (c) 2023 Project CHIP Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright (c) 2024 Project CHIP Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ROOT_DIR=$(realpath $(dirname "$0")/../../../../..)
TH_SCRIPTS_DIR="$ROOT_DIR/scripts"

DEFAULT_OTBR_INTERFACE="eth0"
BR_INTERFACE=${1:-$DEFAULT_OTBR_INTERFACE}
BR_INTERFACE="eth0"
BR_VARIANT="35"
BR_CHANNEL=25 # The Thread communication channel used
BR_IMAGE_BASE="nrfconnect/otbr"
BR_IMAGE_TAG="9185bda"
BR_IMAGE=$BR_IMAGE_BASE":"$BR_IMAGE_TAG

while getopts ":i:v:" opt; do
case $opt in
i)
echo "Using BR Interface: $OPTARG" >&2
BR_INTERFACE=$OPTARG
;;
v)
echo "Using BR Variant: $OPTARG" >&2
BR_VARIANT=$OPTARG
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
esac
done

source "$TH_SCRIPTS_DIR/utils.sh"

print_start_of_script
Expand All @@ -47,15 +68,11 @@ sudo docker run --privileged -d --network host --name otbr-chip -e NAT64=1 -e DN
print_script_step "Waiting 10 seconds to give the the docker container enough time to start up..."
sleep 10

# The configuration values used below are matching the TH's default Thread configuration
# Please, change the following attributes to create a custom Thread network as desired
#
BR_CHANNEL=15 # The Thread communication channel used
BR_CHANNEL_HEX=$(printf '%02x' $BR_CHANNEL)
BR_PANID="1234" # The 2-byte Personal Area Network ID is a unique Thread identifier
BR_EXTPANID="1111111122222222" # The 8-byte Extended Personal Area Network ID is a unique Thread identifier
BR_NETWORKNAME="DEMO" # The human-readable Network Name is a unique Thread identifier
BR_IPV6PREFIX="fd11:22::/64" # The Mesh-Local prefix used to reach interfaces in the same network
BR_PANID="5b${BR_VARIANT}" # The 2-byte Personal Area Network ID is a unique Thread identifier
BR_EXTPANID="5b${BR_VARIANT}dead5b${BR_VARIANT}beef" # The 8-byte Extended Personal Area Network ID is a unique Thread identifier
BR_NETWORKNAME="5b${BR_VARIANT}" # The human-readable Network Name is a unique Thread identifier
BR_IPV6PREFIX="fd11:${BR_VARIANT}::/64" # The Mesh-Local prefix used to reach interfaces in the same network
BR_NETWORKKEY="00112233445566778899aabbccddeeff" # The Thread authentication key value

BR_PARAMS=(
Expand Down Expand Up @@ -89,3 +106,4 @@ print_script_step "Restarting the Raspi avahi to have it in a clean state"
sudo service avahi-daemon restart

print_end_of_script

Loading