blob: 24a5a48271701993df3f75db0288d296ca5adf68 [file] [log] [blame]
Thomas Vachuska12bf4452015-06-26 09:15:38 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Secures the ONOS console for all instances in the cell ONOS cluster.
4# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
Thomas Vachuska35349332016-04-04 14:06:46 -07009# Scan arguments for user/password or other options...
10while getopts u:p: o; do
11 case "$o" in
12 u) user=$OPTARG;;
13 p) password=$OPTARG;;
14 esac
15done
16password=${password:-$user} # password defaults to the user if not specified
17let OPC=$OPTIND-1
18shift $OPC
19
Claudine Chiu45312d02016-06-15 13:17:12 +000020nodes=${1:-$(env | sort | egrep "^OC[0-9]+" | cut -d= -f2)}
Thomas Vachuska12bf4452015-06-26 09:15:38 -070021
22for node in $nodes; do
Thomas Vachuska12bf4452015-06-26 09:15:38 -070023 # Prune the node entry from the known hosts file since server key changes
Brian O'Connorc5876fd2015-10-29 23:07:55 -070024 ssh-keygen -f "$HOME/.ssh/known_hosts" -R [$node]:8101 ||
25 ( echo "Failed to remove key from known_hosts" >&2 && exit 1 )
Thomas Vachuska12bf4452015-06-26 09:15:38 -070026
27 # Setup passwordless login for the local user on the remote node
28 ssh $ONOS_USER@$node "
29 [ ! -f ~/.ssh/id_rsa.pub ] && ssh-keygen -t rsa -f ~/.ssh/id_rsa -P '' -q
30 $ONOS_INSTALL_DIR/bin/onos-user-key \$(id -un) \$(cut -d\\ -f2 ~/.ssh/id_rsa.pub)
Thomas Vachuska5af2e4f2016-12-16 12:07:33 -080031 $ONOS_INSTALL_DIR/bin/onos-user-password $user $password
Thomas Vachuska12bf4452015-06-26 09:15:38 -070032
33 # Implicitly accept the new server key in dev/test environments
34 while ! ssh -p 8101 -o StrictHostKeyChecking=no localhost list 2>/dev/null; do
35 echo Waiting for connection...
36 sleep 1
37 done
38 "
Charles Chan2497dbe2015-10-14 17:08:56 -070039
40 # Setup passwordless login for the remote user on the local bench host
41 # For now, we let the local public key override the remote one
42 # TODO: fix username collision between workbench and the remote hosts
43 onos-user-key $node
Thomas Vachuska12bf4452015-06-26 09:15:38 -070044done
45