blob: 3cfcda826f626cff2ec9d024f7d7fdd0b99ff30e [file] [log] [blame]
#!/bin/bash
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
### set up a reverse tunnel for amber
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"/lib/vars.sh
device_addr="$(get-device-addr $@)"
if [[ ! -n "${device_addr}" ]]; then
device_addr="$(fx-command-run netaddr --fuchsia)"
fi
fx-command-run ssh -q -R 8083:localhost:8083 $device_addr exit
result=$?
if [[ "${result}" -ne 0 ]]; then
echo "ssh exited with a non-zero status: ${result}." >&2
fi