blob: 33f9565a21d9a216b955c5021fed22466cd84f62 [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
Thomas Vachuskae91541f2016-05-05 23:15:41 -070010 printf "%s: " $node; ssh -n -o StrictHostKeyChecking=no -o PasswordAuthentication=no $ONOS_USER@$node hostname
Pavlin Radoslavov91413792014-10-15 11:00:32 -070011done