blob: ec34cabc87592b27e36298937053d5e491b3e6e9 [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
Thomas Vachuskae91541f2016-05-05 23:15:41 -07009for node in $OCN $(env | sort | egrep "OC[0-9]+" | cut -d= -f2); do
10 printf "%s: " $node; ssh -n -o StrictHostKeyChecking=no -o PasswordAuthentication=no $ONOS_USER@$node hostname
Pavlin Radoslavov91413792014-10-15 11:00:32 -070011done