#!/usr/bin/expect 

#
# ap-show, expect script to show wifi status on Aruba access point
# Need packages: sshpass, expect
#
# Usage: ap-show "ssh_pass" main_AP_IP 
#
# Copyright (C) 2019 FUSS Project <info@fuss.bz.it>
# Author: Simone Piccardi <piccardi@truelite.it>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program or from the site that you downloaded it
# from; if not, write to the Free Software Foundation, Inc., 59 Temple
# Place, Suite 330, Boston, MA  02111-1307   USA
#

set pass [lindex $argv 0];
set ip [lindex $argv 1];

spawn sshpass -p "$pass" ssh admin@$ip
sleep 3
expect { 
"*#" {send "show aps\r"}
}
sleep 1
expect { 
"*#" {send "exit\r"}
}
sleep 1
