blob: 9a5f5a942a716dae9e43a393760bcc164abffdc6 [file] [log] [blame]
tom2d7acb72014-09-22 22:13:00 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# Verifies connectivity to each node in ONOS cell.
4#-------------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
tom0872a172014-09-23 11:24:26 -07009for node in $(env | sort | egrep "OC[0-9N]+" | cut -d= -f2); do
tom2d7acb72014-09-22 22:13:00 -070010 printf "%s: " $node; ssh -n -o PasswordAuthentication=no $ONOS_USER@$node date
11done