blob: 09ed09e004dba212c3e08fdb8ba74c87388731a7 [file] [log] [blame]
Test User4be28e62018-03-01 07:07:02 -08001#!/bin/bash
2while :
3do
4
5for x in `sshpass -p rocks ssh onos-fabric log:display | egrep -o "17.255.255.[0-9]{3}" | uniq | tail -n 2`
6do
7 ping -c 1 $x
8done
9
10done