Changes between Version 12 and Version 13 of GENIRacksHome/InstageniRacks/ConfirmationTestStatus/CENIC


Ignore:
Timestamp:
09/12/14 14:08:35 (10 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIRacksHome/InstageniRacks/ConfirmationTestStatus/CENIC

    v12 v13  
    917917== IG-CT-5 - Experiment Monitoring ==
    918918== IG-CT-6 - Administrative Tests ==
    919 
     919Sent request for administrative account to site contact from the [http://groups.geni.net/geni/wiki/GeniAggregate/CENICInstaGENI CENIC InstaGENI] aggregate page.  Followed instructions at the [http://groups.geni.net/geni/wiki/GENIRacksAdministration/InstaGENIAdministration InstaGENI Administration] page for account request. A local administrator account was requested by joining the ''emulab-ops'' group at https://www.instageni.cenic.net/joinproject.php3.   Once the administrative account was approved and the membership to emulab-ops was granted, proceeded to execute administrative tests. 
     920
     921{{{
     922LNM:~$ ssh control.instageni.cenic.net
     923
     924}}}
     925
     926Also access the boss node:
     927{{{
     928LNM:~$ ssh boss.instageni.cenic.net
     929
     930sudo whoami
     931}}}
     932
     933From boss node accessed each of the experiment nodes that support VMs:
     934{{{
     935[lnevers@boss ~]$ for i in pc1 pc2 pc3; do ssh $i "echo -n '===> Host: ';hostname;sudo whoami;uname -a;echo"; done
     936
     937}}}
     938
     939In order to access Dedicated Nodes some experiment must be running on the raw-pc device. At the time of this capture two raw-pc nodes were in use (pc4 and pc5):
     940{{{
     941[lnevers@boss ~]$ for i in pc4 pc5 ; do sudo ssh $i "echo -n '===> Host: ';hostname;whoami;uname -a;echo"; done
     942}}}
     943
     944Further verified access by ssh from ops.instageni.gpolab.bbn.com to boss.instageni.gpolab.bbn.com, which is usually restricted for non-admin users:
     945{{{
     946LNM:~$ ssh ops.instageni.cenic.net
     947
     948}}}
     949Access infrastructure switches using documented password. First connect to the switch named procurve1 the control network switch:
     950{{{
     951[lnevers@boss ~]$ sudo more /usr/testbed/etc/switch.pswd
     952XXXXXXXXX
     953[lnevers@boss ~]$ telnet procurve1
     954
     955
     956}}}
     957
     958Connect to the switch named procurve2 the dataplane network switch via ssh using the documented password:
     959{{{
     960[lnevers@boss ~]$ sudo more /usr/testbed/etc/switch.pswd
     961xxxxxxx
     962[lnevers@boss ~]$ ssh manager@procurve2
     963}}}
     964
     965Access the FOAM VM and gather information for version
     966{{{
     967LNM:~$ ssh lnevers@foam.instageni.cenic.net
     968
     969sudo foamctl admin:get-version  --passwd-file=/etc/foam.passwd
     970
     971}}}
     972Check FOAM configuration for  site.admin.email, geni.site-tag, email.from settings:
     973{{{
     974foamctl config:get-value --key="site.admin.email"  --passwd-file=/etc/foam.passwd
     975
     976foamctl config:get-value --key="geni.site-tag"  --passwd-file=/etc/foam.passwd
     977
     978foamctl config:get-value --key="email.from"  --passwd-file=/etc/foam.passwd
     979
     980# check if FOAM auto-approve is on. Value 2 = auto-approve is on.
     981
     982foamctl config:get-value --key="geni.approval.approve-on-creation"  --passwd-file=/etc/foam.passwd
     983
     984}}}
     985
     986Show FOAM slivers details:
     987
     988{{{
     989foamctl geni:list-slivers --passwd-file=/etc/foam.passwd
     990
     991}}}
     992Access the FlowVisor VM and gather version information:
     993{{{
     994
     995ssh lnevers@flowvisor.instageni.cenic.edu
     996}}}
     997Check the !FlowVisor version, list of devices, get details for a device, list of active slices, and details for one of the slices:
     998{{{     
     999
     1000fvctl --passwd-file=/etc/flowvisor.passwd ping hello
     1001
     1002# Devices
     1003fvctl --passwd-file=/etc/flowvisor.passwd listDevices
     1004
     1005fvctl --passwd-file=/etc/flowvisor.passwd getDeviceInfo 06:d6:6c:3b:e5:68:00:00
     1006
     1007#Slices
     1008fvctl --passwd-file=/etc/flowvisor.passwd listSlices
     1009
     1010fvctl --passwd-file=/etc/flowvisor.passwd getSliceInfo 5c956f94-5e05-40b5-948f-34d0149d9182
     1011
     1012}}}
     1013
     1014Check the FlowVisor setting:
     1015{{{
     1016fvctl --passwd-file=/etc/flowvisor.passwd dumpConfig /tmp/flowvisor-config
     1017more /tmp/flowvisor-config
     1018
     1019}}}
    9201020----
    9211021{{{