Changes between Version 12 and Version 13 of GENIRacksAdministration/OpenGENIFAQ


Ignore:
Timestamp:
05/29/14 11:31:12 (10 years ago)
Author:
mbrinn@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIRacksAdministration/OpenGENIFAQ

    v12 v13  
    6767
    6868Ports used by experimenters depend on the type of experiments run. For a list of current experimenter ports see the [wiki:KnownGENIPorts Known GENI Ports] page.
     69
     70=== Q. How can I tell and change the current switch configuration? ===
     71
     72SSH access to the switch should be enabled, allowing you to receive the FTOS (Force-ten OS) prompt.
     73
     74From there you can check current switch configuration from commands such as:
     75
     76{{{
     77FTOS> show interfaces
     78
     79
     80FTOS>show openflow flows of-instance 1
     81
     82
     83FTOS> show clan
     84
     85
     86FTOS> show system
     87
     88
     89}}}
     90
     91Editing the system configuration requires entering into "enable" mode by typing the 'enable' command and providing the admin password.
     92
     93From there one can change configuration properties as documented in the Force10 switch documentation.
    6994
    7095== Monitoring ==
     
    149174
    150175}}}
     176
     177=== Q: How can I monitor what load the compute and network resources are under? ===
     178
     179There are many commands that can be used at the switch (for network resources) or at the compute and control nodes (for memory, CPU and interfaces). In addition, OpenGENI racks fill a set of tables with recent measurements of network and CPU and disk performance in the monitoring mysql database:
     180
     181{{{
     182
     183mysql> show tables;
     184+--------------------------------------+
     185| Tables_in_monitoring                 |
     186+--------------------------------------+
     187| ops_aggregate                        |
     188| ops_aggregate_is_available           |
     189| ops_aggregate_num_vms_allocated      |
     190| ops_aggregate_resource               |
     191| ops_aggregate_sliver                 |
     192| ops_authority                        |
     193| ops_authority_slice                  |
     194| ops_authority_user                   |
     195| ops_experiment                       |
     196| ops_experiment_ping_rtt_ms           |
     197| ops_externalcheck                    |
     198| ops_externalcheck_experiment         |
     199| ops_externalcheck_monitoredaggregate |
     200| ops_interface                        |
     201| ops_interface_rx_bps                 |
     202| ops_interface_rx_dps                 |
     203| ops_interface_rx_eps                 |
     204| ops_interface_rx_pps                 |
     205| ops_interface_tx_bps                 |
     206| ops_interface_tx_dps                 |
     207| ops_interface_tx_eps                 |
     208| ops_interface_tx_pps                 |
     209| ops_interfacevlan                    |
     210| ops_interfacevlan_rx_bps             |
     211| ops_interfacevlan_rx_dps             |
     212| ops_interfacevlan_rx_eps             |
     213| ops_interfacevlan_rx_pps             |
     214| ops_interfacevlan_tx_bps             |
     215| ops_interfacevlan_tx_dps             |
     216| ops_interfacevlan_tx_eps             |
     217| ops_interfacevlan_tx_pps             |
     218| ops_link                             |
     219| ops_link_interfacevlan               |
     220| ops_node                             |
     221| ops_node_cpu_util                    |
     222| ops_node_disk_part_max_used          |
     223| ops_node_interface                   |
     224| ops_node_is_available                |
     225| ops_node_mem_used_kb                 |
     226| ops_node_swap_free                   |
     227| ops_opsconfig                        |
     228| ops_opsconfig_aggregate              |
     229| ops_opsconfig_authority              |
     230| ops_opsconfig_event                  |
     231| ops_slice                            |
     232| ops_slice_user                       |
     233| ops_sliver                           |
     234| ops_sliver_resource                  |
     235| ops_user                             |
     236+--------------------------------------+
     23749 rows in set (0.00 sec)
     238
     239}}}