blob: 7361616e97125aab02c4f1cf46cbda1328d75f0b [file] [log] [blame]
tom2d7acb72014-09-22 22:13:00 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom2d7acb72014-09-22 22:13:00 -07003# Verifies connectivity to each node in ONOS cell.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom2d7acb72014-09-22 22:13:00 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
Claudine Chiu45312d02016-06-15 13:17:12 +00009for node in $OCT $OCN $(env | sort | egrep "^OC[0-9]+" | cut -d= -f2); do
Yuta HIGUCHIdfea7a62018-01-30 11:30:44 -080010 printf "%s: " $node; ssh -n -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PasswordAuthentication=no $ONOS_USER@$node hostname
Pavlin Radoslavov91413792014-10-15 11:00:32 -070011done