919 | | |
| 919 | Sent 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 | {{{ |
| 922 | LNM:~$ ssh control.instageni.cenic.net |
| 923 | |
| 924 | }}} |
| 925 | |
| 926 | Also access the boss node: |
| 927 | {{{ |
| 928 | LNM:~$ ssh boss.instageni.cenic.net |
| 929 | |
| 930 | sudo whoami |
| 931 | }}} |
| 932 | |
| 933 | From 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 | |
| 939 | In 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 | |
| 944 | Further 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 | {{{ |
| 946 | LNM:~$ ssh ops.instageni.cenic.net |
| 947 | |
| 948 | }}} |
| 949 | Access 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 |
| 952 | XXXXXXXXX |
| 953 | [lnevers@boss ~]$ telnet procurve1 |
| 954 | |
| 955 | |
| 956 | }}} |
| 957 | |
| 958 | Connect 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 |
| 961 | xxxxxxx |
| 962 | [lnevers@boss ~]$ ssh manager@procurve2 |
| 963 | }}} |
| 964 | |
| 965 | Access the FOAM VM and gather information for version |
| 966 | {{{ |
| 967 | LNM:~$ ssh lnevers@foam.instageni.cenic.net |
| 968 | |
| 969 | sudo foamctl admin:get-version --passwd-file=/etc/foam.passwd |
| 970 | |
| 971 | }}} |
| 972 | Check FOAM configuration for site.admin.email, geni.site-tag, email.from settings: |
| 973 | {{{ |
| 974 | foamctl config:get-value --key="site.admin.email" --passwd-file=/etc/foam.passwd |
| 975 | |
| 976 | foamctl config:get-value --key="geni.site-tag" --passwd-file=/etc/foam.passwd |
| 977 | |
| 978 | foamctl 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 | |
| 982 | foamctl config:get-value --key="geni.approval.approve-on-creation" --passwd-file=/etc/foam.passwd |
| 983 | |
| 984 | }}} |
| 985 | |
| 986 | Show FOAM slivers details: |
| 987 | |
| 988 | {{{ |
| 989 | foamctl geni:list-slivers --passwd-file=/etc/foam.passwd |
| 990 | |
| 991 | }}} |
| 992 | Access the FlowVisor VM and gather version information: |
| 993 | {{{ |
| 994 | |
| 995 | ssh lnevers@flowvisor.instageni.cenic.edu |
| 996 | }}} |
| 997 | Check the !FlowVisor version, list of devices, get details for a device, list of active slices, and details for one of the slices: |
| 998 | {{{ |
| 999 | |
| 1000 | fvctl --passwd-file=/etc/flowvisor.passwd ping hello |
| 1001 | |
| 1002 | # Devices |
| 1003 | fvctl --passwd-file=/etc/flowvisor.passwd listDevices |
| 1004 | |
| 1005 | fvctl --passwd-file=/etc/flowvisor.passwd getDeviceInfo 06:d6:6c:3b:e5:68:00:00 |
| 1006 | |
| 1007 | #Slices |
| 1008 | fvctl --passwd-file=/etc/flowvisor.passwd listSlices |
| 1009 | |
| 1010 | fvctl --passwd-file=/etc/flowvisor.passwd getSliceInfo 5c956f94-5e05-40b5-948f-34d0149d9182 |
| 1011 | |
| 1012 | }}} |
| 1013 | |
| 1014 | Check the FlowVisor setting: |
| 1015 | {{{ |
| 1016 | fvctl --passwd-file=/etc/flowvisor.passwd dumpConfig /tmp/flowvisor-config |
| 1017 | more /tmp/flowvisor-config |
| 1018 | |
| 1019 | }}} |