AOS-CX Switch Simulator

 View Only
last person joined: 12 hours ago 

Expand all | Collapse all

AOS-CX Tips to try on the Simulator

This thread has been viewed 494 times
  • 1.  AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 22, 2021 03:08 AM
    Hello all,
    I'm starting this thread so that everyone can contribute here by sharing their recommended tips on AOS-CX.

    Recently, Justin posted one: repeat command
    https://community.arubanetworks.com/HigherLogic/Security/SAML/LocalSamlLoginService.aspx?binding=HttpPost&ReturnUrl=https%3a%2f%2fcommunity.arubanetworks.com%2fcommunity-home%2fdigestviewer%2fviewthread%3fGroupId%3d565%26MessageKey%3decad5dfd-42b8-4311-bd27-5a048b835eeb%26CommunityKey%3daa40c287-728e-4827-b062-5eff4ed6410b%26tab%3ddigestviewer%26ReturnUrl%3d%252fcommunity-home%252fdigestviewer%253fcommunitykey%253daa40c287-728e-4827-b062-5eff4ed6410b%2526tab%253ddigestviewer
    Arubanetworks remove preview
    View this on Arubanetworks >


    An other one: try the show ip route and show ip rib on new 10.7 version. Much better than before !
    For instance: 


    An other one: on VSX cluster, did you know that you can perform a show command on the VSX peer by appending vsx-peer
    to almost any show command ?
    Example:


    ------------------------------
    Vincent Giles
    ------------------------------


  • 2.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 22, 2021 05:44 AM
    Here is one command I find very useful

    "show run current-context"   or  short from "sho r c" if you are feeling particularity easy on the keyboard ;-)

    This allows you to have a quick peek and focus  at the config of the "context" you are in, give it a try if you don't use it already.

    Enjoy ;-)












    ------------------------------
    Kamal Takodra
    If my post was useful accept solution and/or give kudos
    ------------------------------



  • 3.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 22, 2021 11:42 AM
    Looking for only specific output from a given 'show' command? Use pipes! The pipe character | can be used to filter the output of a show command using a number of different patterns - display only lines containing a particular string, a running configuration starting with a particular command, or exclude specific portions of a command's output. Here are a few examples...

    When using the command "show interface brief", you can filter the list to only display interfaces that are currently up, using the following command:
    6300# show interface brief | include "up"
    1/1/2     1       access 5G-SmartRate   yes     up                             2500    --
    1/1/3     1       access 5G-SmartRate   yes     up                             2500    --
    1/1/6     1       access 5G-SmartRate   yes     up                             1000    --
    1/1/7     1       access 5G-SmartRate   yes     up                             5000    --
    1/1/9     1       access 5G-SmartRate   yes     up                             1000    --
    1/1/48    1       access 5G-SmartRate   yes     up                             2500    --
    vlan1     --             --             yes     up                             --      --
    


    If you are working with a running configuration on a switch with NAE agents installed and running, you can exclude them from the displayed configuration using this command:

    6300# show running-config | exclude "nae"
    Current configuration:
    !
    !Version ArubaOS-CX FL.10.07.0004
    !export-password: default
    user admin group administrators password ciphertext <...>
    ntp server pool.ntp.org minpoll 4 maxpoll 4 iburst
    ntp enable
    !
    !
    !
    !
    !
    !
    ssh server vrf default
    ssh server vrf mgmt
    vsf member 1 
        type jl659a
    vlan 1
    spanning-tree
    interface mgmt
        no shutdown
        ip dhcp
    interface 1/1/1
        no shutdown
        no routing
        vlan access 1
    
    [output snipped]
    
    interface 1/1/52
        no shutdown
        no routing
        vlan access 1
    interface vlan 1
        ip dhcp
    !
    !
    !
    !
    !
    https-server vrf default
    https-server vrf mgmt
    configuration-lockout central managed
    


    Lastly, command output may be redirected to a local file that can be transferred off the switch via the Bash shell. Files generated in this way are stored in the folder /tmp and can be transferred via TFTP, SFTP, or to a mounted USB storage device.

    6300# show interface | redirect interfaces.txt
    6300# start-shell 
    6300:~$ cd /tmp
    6300:/tmp$ cat interfaces.txt
    
    Interface 1/1/1 is down 
     Admin state is up
     State information: Waiting for link
     Link state: down for 2 days (since Mon Apr 19 18:34:29 UTC 2021)
     Link transitions: 10
     Description: 
     Hardware: Ethernet, MAC Address: 64:e8:81:b7:b5:ff 
     MTU 1500 
     Type 5G-SmartRate
     Full-duplex 
     qos trust none
     Speed 0 Mb/s 
     Auto-negotiation is on
     Flow-control: off 
     Error-control: off 
     MDI mode: none 
     VLAN Mode: access
     Access VLAN: 1
     Rate collection interval: 300 seconds
    
     Rate                               RX                   TX        Total (RX+TX)
     ---------------- -------------------- -------------------- --------------------
     Mbits / sec                      0.00                 0.00                 0.00
     KPkts / sec                      0.00                 0.00                 0.00
       Unicast                        0.00                 0.00                 0.00
       Multicast                      0.00                 0.00                 0.00
       Broadcast                      0.00                 0.00                 0.00
     Utilization                      0.00                 0.00                 0.00
    
     Statistic                          RX                   TX                Total
     ---------------- -------------------- -------------------- --------------------
     Packets                         61398               107582               168980
       Unicast                       60400                61813               122213
       Multicast                       821                43352                44173
       Broadcast                       177                 2417                 2594
     Bytes                        15685033             51749976             67435009
     Jumbos                              0                    0                    0
     Dropped                             0                    0                    0
     Pause Frames                        0                    0                    0
     Errors                              0                    0                    0
       CRC/FCS                           0                  n/a                    0
       Collision                       n/a                    0                    0
       Runts                             0                  n/a                    0
       Giants                            0                  n/a                    0
    
    [output truncated]


    For more information on syntax used by the pipe command, refer to the command help:

    6300# show running-config | 
    
    Usage:       show {<SHOW-COMMAND-OPTIONS>}... [ | {include <PATTERN-STRING> |
                                                       exclude <PATTERN-STRING> |
                                                       begin {<LINES-TO-DISPLAY>} <PATTERN-STRING>}]...
                                                  [ | {count [<PATTERN-STRING>] |
                                                       redirect [<FILE-NAME>]}]
                 list [ | {include <PATTERN-STRING> |
                           exclude <PATTERN-STRING> |
                           begin {<LINES-TO-DISPLAY>} <PATTERN-STRING>}]...
                      [ | {count [<PATTERN-STRING>] |
                           redirect [<FILE-NAME>]}]
    
    Example:     show running-config | redirect "abc.txt" 
                 show running-config | begin 2 "vlan" | begin -2 "vlan" | begin "vlan" 
                 show running-config | include "vlan" | exclude "vlan2" | count 
                 show vlan | include "up" | include "VLAN100" 
                 list | include "show" | exclude "show" | count
    
    Description: The Pipe(|) command allows to filter the output of
                 show or list commands using one of the options - "include", "exclude", 
                 "begin", "count" or "redirect".
    



    ------------------------------
    Matt Fern
    Sr. Technical Marketing Engineer, Aruba Switching
    Aruba, a Hewlett Packard Enterprise company
    ------------------------------



  • 4.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 22, 2021 08:55 PM
    For a lab environment, without an Network Time Protocol (NTP) server, you can quickly manually configure the time and date on AOS-CX using the "clock" command:





    ------------------------------
    Justin Noonan
    ------------------------------



  • 5.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 26, 2021 03:53 AM

    CLI shortcut – Linux heritage of bash shorcuts

    Even inside the CLI (VTYSH) you'll get benefit of Linux bash shortcuts.

    Controlling the Screen

    The following shortcuts allow you to control what appears on the screen (source howtogeek).

        Ctrl+L: Clear the screen. This is similar to running the "clear" command.

        Ctrl+S: Stop all output to the screen. This is particularly useful when running commands with a lot of long, verbose output, but you don't want to stop the command itself with Ctrl+C.

        Ctrl+Q: Resume output to the screen after stopping it with Ctrl+S.

    Moving the Cursor

    Use the following shortcuts to quickly move the cursor around the current line while typing a command.

        Ctrl+A or Home: Go to the beginning of the line.

        Ctrl+E or End: Go to the end of the line.

        Alt+B: Go left (back) one word.

        Ctrl+B: Go left (back) one character.

        Alt+F: Go right (forward) one word.

        Ctrl+F: Go right (forward) one character.

        Ctrl+XX: Move between the beginning of the line and the current position of the cursor. This allows you to press Ctrl+XX to return to the start of the line, change something, and then press Ctrl+XX to go back to your original cursor position. To use this shortcut, hold the Ctrl key and tap the X key twice.

    Deleting Text

    Use the following shortcuts to quickly delete characters:

        Ctrl+D or Delete: Delete the character under the cursor.

        Alt+D: Delete all characters after the cursor on the current line.

        Ctrl+H or Backspace: Delete the character before the cursor.

    Fixing Typos

    These shortcuts allow you to fix typos and undo your key presses.

        Alt+T: Swap the current word with the previous word.

        Ctrl+T: Swap the last two characters before the cursor with each other. You can use this to quickly fix typos when you type two characters in the wrong order.

        Ctrl+_: Undo your last key press. You can repeat this to undo multiple times.

    Cutting and Pasting

    Bash includes some basic cut-and-paste features.

        Ctrl+W: Cut the word before the cursor, adding it to the clipboard.

        Ctrl+K: Cut the part of the line after the cursor, adding it to the clipboard.

        Ctrl+U: Cut the part of the line before the cursor, adding it to the clipboard.

        Ctrl+Y: Paste the last thing you cut from the clipboard. The y here stands for "yank".

    Capitalizing Characters

    The bash shell can quickly convert characters to upper or lower case:

        Alt+U: Capitalize every character from the cursor to the end of the current word, converting the characters to upper case.

        Alt+L: Uncapitalize every character from the cursor to the end of the current word, converting the characters to lower case.

        Alt+C: Capitalize the character under the cursor. Your cursor will move to the end of the current word.

    Search in command history

    From "switch#" prompt, type CTRL+r: you will get the following prompt "(reverse-i-search)`':" which allows to recall a previous command by typing first letters of the commands. Example:

    (reverse-i-search)`sh ip': sh ip bgp

    Will propose all the commands in the history that start with 'sh ip'. Do CTRL-r again for getting next prevous command starting with 'sh ip' like '(reverse-i-search)`sh ip': sh ip int".



    ------------------------------
    Vincent Giles
    ------------------------------



  • 6.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 26, 2021 01:56 PM
    Did you know that IPv6 Router Advertisements (RA) are suppressed by default in AOS-CX?
    If you need to test IPv6 clients with AOS-CX, you will need disable RA suppression so that IPv6 hosts are able to receive default gateway info!!
    Switch1(config-vlan-111)# int vlan 111
    Switch1(config-if-vlan)# ipv6 address 2001:db8:beef:111::1/64
    Switch1(config-if-vlan)# no ipv6 nd suppress-ra dnssl
    Switch1(config-if-vlan)# no ipv6 nd suppress-ra rdnss


    Also, if you use VPCS in EVE-NG as an IPv6 host with static default gateways like this, it will not work!!
    VPCS> ip 2001:db8:beef:101::2/64 2001:db8:beef:101::1
    PC1 : 2001:db8:beef:101::2/64

    You will need to set the default gateway to auto
    VPCS> ip 2001:db8:beef:111::11/64 auto
    PC1 : 2001:db8:beef:111::11/64

    And verify your VPCS has your desired IP and router info from RA
    VPCS> sh ipv6
    NAME : VPCS[1]
    LINK-LOCAL SCOPE : fe80::250:79ff:fe66:6805/64
    GLOBAL SCOPE : 2001:db8:beef:111::11/64              <-- Static IPv6 address
    DNS :
    ROUTER LINK-LAYER : 08:00:09:16:7b:7e                    <-- Default gateway from RA
    MAC : 00:50:79:66:68:05

    ------------------------------
    DWan
    ------------------------------



  • 7.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 26, 2021 07:58 PM
    Useful tip:

    If you're familiar with AOS-Switch you'll notice that there is a default gateway command.  With CX, you need to set a default route.

    For instance in AOS-Switch, setting a default gateway would look like this:


    In AOS-CX it would look like the following:





    ------------------------------
    Justin Noonan
    ------------------------------



  • 8.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 27, 2021 06:20 AM
    The CX Simulator does not sense the state of the interfaces. It means that if an interface of the neighboring switch is shutdown, the local facing interface is not brought down and stays up. In other words, the interface state is not reflected between the CX neighbors.

    Useful tip:

    When the link is part of a LACP LAG, use LACP short timer to accelerate LACP protocol to unselect the interface within few seconds. If the port does not receive LACPDU after the port on the neighboring device has been shutdown, then the port will transition to LACP-block state and any traffic will use the alternate port(s) of the same LAG. Failover time should be around a couple of seconds.

    This note is specific to CX Simulator and, in production, default LACP rate (slow) is used for physical CX switches.

    ------------------------------
    Vincent Giles
    ------------------------------



  • 9.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 27, 2021 07:34 AM
    Checkpoint feature still available in the simulator

    The checkpoint feature is still available in the simulator and very useful if you wish to save a configuration ( other than a startup config)  and deviate to another configuration for a lab with the option of revisiting it at a later time..

    To generate a checkpoint - example to generate a checkpoint configuration file called 'test1'
    SwitchD# copy running-config checkpoint test1

    To view a checkpoint file. ( The 'list' extension in the cli is not available in the simulator as in 'sh checkpoint list' , as found on CX hardware, but the 'sh checkpoint' provides similar output.

    SwitchD# sh checkpoint
    NAME TYPE WRITER DATE(YYYY/MM
    /DD) IMAGE VERSION
    test1 latest User 2021-04-27T1
    1:11:02Z Virtual.10.07.0004
    startup-config startup User 2021-04-23T0
    9:00:48Z Virtual.10.07.0004
    CPC20210423090038_SwitchD_X86-64 checkpoint System 2021-04-23T0
    9:00:38Z Virtual.10.07.0004
    CPC20210423082024_SwitchD_X86-64 checkpoint System 2021-04-23T0
    8:20:24Z Virtual.10.07.0004

    To restore a checkpoint configuration file to the running configuration
    SwitchD# checkpoint rollback test1
    Copying configuration: [Success]
    SwitchD#

    The checkpoint config file remains with simulator /OVA after power off and restart.



    ------------------------------
    Steve Bartlett
    ------------------------------



  • 10.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 28, 2021 12:12 AM
    When viewing authenticated clients, there are a couple of commands which show different information.  "show port-access clients" will show a summary view of the clients that are currently authenticated on the switch, you can also do a "show port-access clients interface <port>" like below:


    You can also add the "detail" flag for that command - "show port-access client interface 2/1/2 detail", which will provide all the client details as well as role details.



    ------------------------------
    Justin Noonan
    ------------------------------



  • 11.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 28, 2021 05:00 AM
    Checking number of allocated CPUs in start-shell:
    Like any regular Linux based system, you may simply use lshw or cpuinfo:
    From VM console, start-shell, sudo su and then here are output examples for 2 CPUs based Simulator instance:

    SW3:~$ cat /proc/cpuinfo
    processor: 0
    vendor_id: GenuineIntel
    cpu family: 6
    model: 2
    model name: QEMU Virtual CPU version 1.0
    stepping: 3
    microcode: 0x1
    cpu MHz: 2800.279
    cache size: 4096 KB
    physical id: 0
    siblings: 1
    core id: 0
    cpu cores: 1
    apicid: 0
    initial apicid: 0
    fpu: yes
    fpu_exception: yes
    cpuid level: 4
    wp: yes
    flags: fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall nx lm rep_good nopl c
    puid pni cx16 popcnt hypervisor lahf_lm cpuid_fault pti
    bugs: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
    bogomips: 5600.55
    clflush size: 64
    cache_alignment: 64
    address sizes: 40 bits physical, 48 bits virtual
    power management:

    processor: 1
    vendor_id: GenuineIntel
    cpu family: 6
    model: 2
    model name: QEMU Virtual CPU version 1.0
    stepping: 3
    microcode: 0x1
    cpu MHz: 2800.279
    cache size: 4096 KB
    physical id: 1
    siblings: 1
    core id: 0
    cpu cores: 1
    apicid: 1
    initial apicid: 1
    fpu: yes
    fpu_exception: yes
    cpuid level: 4
    wp: yes
    flags: fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall nx lm rep_good nopl c
    puid pni cx16 popcnt hypervisor lahf_lm cpuid_fault pti
    bugs: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
    bogomips: 5600.21
    clflush size: 64
    cache_alignment: 64
    address sizes: 40 bits physical, 48 bits virtual
    power management:

    or lshw command:

    SW3:~$ lshw -class cpu
    WARNING: you should run this program as super-user.
    terminate called after throwing an instance of 'std::bad_alloc'
    what(): std::bad_alloc
    Aborted
    SW3:~$ sudo su
    SW3:/home/admin# lshw -class cpu
    *-cpu:0
    description: CPU
    product: QEMU Virtual CPU version 1.0
    vendor: Intel Corp.
    physical id: 401
    bus info: cpu@0
    slot: CPU 1
    size: 2GHz
    capacity: 2GHz
    width: 64 bits
    capabilities: fpu fpu_exception wp de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall n
    x x86-64 rep_good nopl cpuid pni cx16 popcnt hypervisor lahf_lm cpuid_fault pti
    *-cpu:1
    description: CPU
    product: QEMU Virtual CPU version 1.0
    vendor: Intel Corp.
    physical id: 402
    bus info: cpu@1
    slot: CPU 2
    size: 2GHz
    capacity: 2GHz
    width: 64 bits
    capabilities: fpu fpu_exception wp de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall n
    x x86-64 rep_good nopl cpuid pni cx16 popcnt hypervisor lahf_lm cpuid_fault pti


    The number of CPUs should, of course, correspond to what has be set in EVE-NG:



    ------------------------------
    Vincent Giles
    ------------------------------



  • 12.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 28, 2021 11:49 AM

    If you enable NAE in AOS-CX, the config will be filled up with NAE info at the end of the config file.
    Use this to exclude it from "show run"

    show run | e nae



    ------------------------------
    DWan
    ------------------------------



  • 13.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 29, 2021 04:06 AM
    • Wondering about the associated Product Name of the Simulator ?

    "show system" command provides the answer:

    RR# show system
    Hostname : RR
    System Description : Virtual.10.07.0004
    System Contact :
    System Location :

    Vendor : Aruba
    Product Name : ABC123 ArubaOS-CX_OVA
    Chassis Serial Nbr : OVA899A9A
    Base MAC Address : 080009-899a9a
    ArubaOS-CX Version : Virtual.10.07.0004

    Time Zone : UTC

    Up Time : 1 week, 20 hours, 59 minutes
    CPU Util (%) : 23
    Memory Usage (%) : 38

    The Serial number starts with "OVA" prefix.


    • Wondering about Product Number ?
    Try "show system inventory":

    RR# show system inventory

    Type Location Product Description Serial Hardware
    Number Number Version
    -------------------- -------- ---------- -------------------------------------------------- --------------- -----------
    Chassis 1 ABC123 ArubaOS-CX_OVA OVA899A9A 0

    show system inventory is very practical command on physical equipment to retrieve all switch PartNumbers and transceivers.
    Example:

    8325-1# sh system inventory

    Type Location Product Description Serial Hardware
    Number Number Version
    -------------------- -------- ---------- -------------------------------------------------- --------------- -----------
    Chassis 1 JL635A 8325 TW93KM0021 0
    Power Supply 1/1 JL632A Aruba 8325 650W 100-240VAC FB PSU CN91KLF0M6 --
    Power Supply 1/2 -- -- -- --
    Fan LC1-1F JL628A 8325 Fan Module -- --
    Fan LC1-1R JL628A 8325 Fan Module -- --
    Fan LC1-2F JL628A 8325 Fan Module -- --
    Fan LC1-2R JL628A 8325 Fan Module -- --
    Fan LC1-3F JL628A 8325 Fan Module -- --
    Fan LC1-3R JL628A 8325 Fan Module -- --
    Fan LC1-4F JL628A 8325 Fan Module -- --
    Fan LC1-4R JL628A 8325 Fan Module -- --
    Fan LC1-5F JL628A 8325 Fan Module -- --
    Fan LC1-5R JL628A 8325 Fan Module -- --
    Fan LC1-6F JL628A 8325 Fan Module -- --
    Fan LC1-6R JL628A 8325 Fan Module -- --
    Transceiver 1/1/1 J9150A SFP+SR MY77FFD35R 1990-4175
    Transceiver 1/1/2 J9150A SFP+SR MY77FFD1JK 1990-4175
    Transceiver 1/1/3 J9150A SFP+SR MY5AFFD2WY 1990-4175
    Transceiver 1/1/4 J9150A SFP+SR MY77FFD1J4 1990-4175
    Transceiver 1/1/7 J9150D SFP+SR CN83KBVGDC 1990-4391
    Transceiver 1/1/8 74752-9056 SFP+10G (unsupported) 012030081 C
    Transceiver 1/1/9 J9150A SFP+SR MY77FFD38P 1990-4175
    Transceiver 1/1/10 J4858C SFP-SX CN817EK0XD 1990-3662
    Transceiver 1/1/15 J4858C SFP-SX MY950VM0Z4 1990-3657
    Transceiver 1/1/17 J9150D SFP+SR CN83KBVJ33 1990-4391
    Transceiver 1/1/22 J9150A SFP+SR MY77FFD1QP 1990-4175
    Transceiver 1/1/23 747529635 SFP+DAC (unsupported) 218730129 C
    Transceiver 1/1/24 74752-9056 SFP+10G (unsupported) 918830075 C
    Transceiver 1/1/37 J9150A SFP+SR DE013HX0CC 1990-3882
    Transceiver 1/1/38 J9150A SFP+SR MY5AFFD2WG 1990-4175
    Transceiver 1/1/40 SP7041-HP SFP-BT (unsupported) US645VL299 -
    Transceiver 1/1/41 J4858C SFP-SX CN816EK48P 1990-3662
    Transceiver 1/1/42 J4858C SFP-SX CN816EK2EN 1990-3662
    Transceiver 1/1/43 J9283B SFP+DAC3 CN9295M098 8121-1152
    Transceiver 1/1/45 FTLX8571D3 SFP+SR (unsupported) AM31SLH A
    Transceiver 1/1/47 74752-9056 SFP+10G (unsupported) 033130168 C
    Transceiver 1/1/48 74752-9056 SFP+10G (unsupported) 033130168 C
    Transceiver 1/1/49 JH236A QSFP+DA5 CN57H6R015 8121-1620
    Transceiver 1/1/50 JL308A QSFP+BIDI MY77JQ3090 1990-4679
    Transceiver 1/1/51 JL308A QSFP+BIDI MY77JQ3095 1990-4679



    ------------------------------
    Vincent Giles
    ------------------------------



  • 14.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 30, 2021 05:56 AM
    Have you seen the improvement of the output of show interface command in 10.7 version, with rate display:



    ------------------------------
    Vincent Giles
    ------------------------------



  • 15.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Apr 30, 2021 06:33 PM

    You can simply copy and paste certificates into the terminal for AOS-CX.  This is especially useful for creating a trusted anchor (TA) profile.  This would be the root or intermediate certificate from the Certificate Authority.

    First, just create the profile using the command "crypto pki ta-profile <name>", the import the certificate:


    Once finished pasting, make sure the hit "cntrl+d" to save the certificate.  Exit out of the certificate context to the "config" context and you can run the "show crypto pki ta-profile" command to verify the TA certificate was copied successfully.



    ------------------------------
    Justin Noonan
    ------------------------------



  • 16.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 03, 2021 05:47 AM
    The AOS-CX Simulator provides, like any other CX Switching platform, a command to display the system capacities for features scale.
    Even if some of the features, like ECMP or UBT, are not yet available on the simulator, this might be useful to know and practice
    this command for physical switches.

    switch#   show capacities
    
    System Capacities:
    Capacities Name                                                                                               Value
    -------------------------------------------------------------------------------------------------------------------
    Maximum number of active gateway vmacs configurable                                                              16
    Maximum number of BFD sessions configurable in a system                                                         256
    Maximum number of AS numbers in BGP as-path attribute                                                            32
    Maximum number of BGP as-path entries in a single aspath-list                                                    16
    Maximum number of aspath-lists                                                                                   64
    Maximum number of community entries in a single community-list                                                   16
    Maximum number of community-lists                                                                                64
    Maximum number of equal cost paths                                                                                8
    Maximum number of BGP neighbors allowed across all VRFs                                                          50
    Maximum number of BGP peer groups allowed across all VRFs                                                        25
    Maximum number of routes accepted from a BGP peer                                                             64000
    Maximum number of routes in BGP RIB                                                                          128000
    Maximum number of BGP route reflector clients allowed across all VRFs                                            16
    Maximum number of Access Control Entries configurable in a system                                              1024
    Maximum number of Object Group Entries configurable in a system                                                2000
    Maximum number of Object Groups configurable in a system                                                        512
    Maximum number of Access Control Lists configurable in a system                                                 512
    Maximum number of class entries configurable in a system                                                         64
    Maximum number of classes configurable in a system                                                              640
    Maximum number of entries in an Access Control List                                                             512
    Maximum number of entries in a class                                                                             64
    Maximum number of entries in an Object Group                                                                   1024
    Maximum number of entries in a policy                                                                            64
    Maximum number of classifier policies configurable in a system                                                  640
    Maximum number of policy entries configurable in a system                                                       640
    Maximum number of DHCP Snooping IPv4 bindings that can be learned on each port                                 8192
    Maximum number of DHCP Snooping IPv6 bindings that can be learned on each port                                 8192
    Maximum number of dynamic VLANs that can be allowed using MVRP                                                 1024
    Maximum number of GBP Role Mappings                                                                             256
    Maximum number of IP bindings that can be allowed on the system                                               16384
    Maximum number of nexthops per IP ECMP group                                                                      8
    Maximum number of IP neighbors (IPv4+IPv6) supported in the system                                              512
    Maximum number of IP source lockdown bindings allowed on the system                                           16384
    Maximum number of GRE IPv4, "IPv6 in IPv4" and "IPv6 in IPv6" tunnels in a system                               127
    Maximum number of IPv4 neighbors(# of ARP entries) supported in the system                                      512
    Maximum number of IPv6 neighbors(# of ND entries) supported in the system                                       512
    Maximum number of Keychains supported in the system                                                              64
    Maximum number of Keys supported in a single Keychain                                                            64
    Maximum number of Keys supported in the system                                                                 4096
    Maximum number of L2 MAC addresses supported in the system                                                    32768
    Maximum number of MAC Lockout configurable in a system                                                          200
    Maximum number of L3 Groups for IP Tunnels and ECMP Groups                                                      128
    Maximum number of L3 Destinations for Mcast, Neighbors, Routes and Nexthops in ECMP groups (VXLAN enabled)       64
    Maximum number of L3 Destinations for Neighbors, Routes and Nexthops in Tunnels and ECMP groups                2000
    Maximum number of configurable LAG ports                                                                         64
    Maximum number of members supported by a LAG port                                                                 8
    Maximum number of VLANs across ports allowed in loop-protect                                                  10240
    Maximum number of configurable VSX ports                                                                         64
    Maximum number of members supported by a MCLAG port                                                               4
    Maximum number of IGMP/MLD groups supported                                                                    1024
    Maximum number of IGMP/MLD snooping groups supported                                                           1024
    Maximum number of IGMP/MLD static groups supported                                                             1024
    Maximum number of Mirror Sessions configurable in a system                                                        4
    Maximum number of enabled Mirror Sessions in a system                                                             4
    Maximum number of MSDP Peers supported                                                                           64
    Maximum number of MSDP SA Cache entries supported                                                             16384
    Maximum number of mstp instances configurable in a system                                                        64
    Maximum number of NAE agents in a system                                                                        100
    Maximum number of NAE monitors in a system                                                                      500
    Maximum number of NAE scripts in a system                                                                        50
    Maximum number of ND Snooping IP bindings that can be learned on each port                                    16384
    Maximum number of OSPFv2 areas configurable in the system                                                       128
    Maximum number of OSPFv2 interfaces configurable in the system                                                  128
    Maximum number of OSPFv2 interfaces per area in the system                                                      128
    Maximum number of OSPFv2 neighbors allowed across all VRFs                                                      128
    Maximum number of OSPFv2 processes supported across each VRF                                                      8
    Maximum number of routes in OSPFv2 supported across all VRFs                                                 128000
    Maximum number of OSPFv3 areas configurable in the system                                                       128
    Maximum number of OSPFv3 interfaces configurable in the system                                                  128
    Maximum number of OSPFv3 interfaces per area in the system                                                      128
    Maximum number of OSPFv3 neighbors allowed across all VRFs                                                      128
    Maximum number of OSPFv3 processes supported across each VRF                                                      8
    Maximum number of routes in OSPFv3 supported across all VRFs                                                  16000
    Maximum number of PBR Action Lists configurable in a system                                                     256
    Maximum number of PBR Action List entries configurable per PBR Action List                                        8
    Maximum number of PIM/PIMv6 mroutes supported                                                                  4096
    Maximum number of PIM/PIMv6 nexthops supported                                                                65536
    Maximum number of Clients that can be authenticated on a port                                                   256
    Maximum number of Device Profiles allowed to be created on the system                                         10000
    Maximum number of Port Access Roles allowed to be created on the system                                       10000
    Maximum number of MAC Address that can be authorized on a port                                                   64
    Maximum number of Port Access Role VLAN IDs allowed to be created on the system                                1024
    Maximum number of Port Access Role VLAN names allowed to be created on the system                                50
    Maximum number of RBAC rules per user group                                                                    1024
    Maximum number of RIP interfaces configurable in the system                                                      32
    Maximum number of RIP processes supported across each VRF                                                         1
    Maximum number of routes in RIP supported across all VRFs                                                      2540
    Maximum number of RIPng interfaces configurable in the system                                                    32
    Maximum number of RIPng processes supported across each VRF                                                       1
    Maximum number of routes in RIPng supported across all VRFs                                                    2540
    Maximum number of prefix entries in a single prefix-list                                                         16
    Maximum number of prefix-lists                                                                                   64
    Maximum number of route map entries in a single route-map                                                        16
    Maximum number of route-maps                                                                                     64
    Maximum number of SVIs supported in the system                                                                 4094
    Maximum number of UBT zones per VRF                                                                               1
    Maximum number of UBT zones                                                                                       8
    Maximum number of active UDLD interface                                                                          42
    Maximum number of routes (IPv4+IPv6) on the system                                                            16000
    Maximum number of IPv4 routes on the system                                                                   12000
    Maximum number of IPv6 routes on the system                                                                    4000
    Maximum number of VLANs supported in the system                                                                4094
    Maximum number of unique IPv4 VRRP VRIDs configurable between 1 to 255                                            8
    Maximum number of unique IPv6 VRRP VRIDs configurable between 1 to 255                                            8
    Maximum number of VRRP IPv4 addresses supported                                                                1024
    Maximum number of VRRP IPv4 addresses supported per virtual router                                               16
    Maximum number of VRRP IPv4 virtual routers supported per port                                                    8
    Maximum number of VRRP IPv6 addresses supported                                                                 512
    Maximum number of VRRP IPv6 addresses supported per virtual router                                                8
    Maximum number of VRRP IPv6 virtual routers supported per port                                                    8
    Maximum number of VRRP virtual routers supported                                                                256
    Maximum number of VXLAN interfaces in a system                                                                    1
    Maximum number of L2VNIs per VXLAN interface                                                                     32
    Maximum number of L3VNIs per VXLAN interface                                                                      0
    Maximum number of VNIs per VXLAN interface                                                                       32
    Maximum number of VTEPs per VXLAN interface                                                                      64
    ​

    ------------------------------
    Vincent Giles
    ------------------------------



  • 17.  RE: AOS-CX Tips to try on the Simulator

    MVP GURU
    Posted May 01, 2021 09:58 AM
    Yes, Thanks for new sVincent !

    ------------------------------
    PowerArubaSW : Powershell Module to use Aruba Switch API for Vlan, VlanPorts, LACP, LLDP...

    PowerArubaCP: Powershell Module to use ClearPass API (create NAD, Guest...)

    PowerArubaCX: Powershell Module to use ArubaCX API (get interface/vlan/ports info)..

    ACEP / ACMX #107 / ACDX #1281
    ------------------------------



  • 18.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 03, 2021 07:51 PM
    Helpful CX Tip:

    AOS-CX allows you to exit out of any context by using the commands "Cntrl + Z", rather than having to type end or exit (move up a level).



    ------------------------------
    Justin Noonan
    ------------------------------



  • 19.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 04, 2021 06:20 AM
    Want to avoid being prompted to confirm a critical command (like boot):
     try auto-confirm: Disables user confirmation, and executes the operation without prompting

    To be used with cautious in production as being prompted for confirmation can be useful to avoid a mistake.
    Auto-confirm is Disabled by default.

    ------------------------------
    Vincent Giles
    ------------------------------



  • 20.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 05, 2021 11:09 AM
    On first boot  the simulator has no interfaces appear in the running configuration.

    This is normal, just "no shut" your desired interface and it will appear in the running configuration.

    firstboot

    Remember currently the simulator has 10 useable interfaces including the management interface. 

    interface


    ------------------------------
    Kamal Takodra
    If my post was useful accept solution and/or give kudos
    ------------------------------



  • 21.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 06, 2021 06:06 AM
    For in-depth troubleshooting, or simply by curiosity, you may need to check the consumption of CPU, MEMORY and IO through the Linux based command "top": top cpu, top memory, top io.
    Reminder: CPU and memory historical information are nicely presented in NAE under the default agent: system_resource_monitor.default

    Here are examples of top commands:
    switch# top cpu
    top - 09:46:25 up 1 day, 23:32,  1 user,  load average: 0.78, 0.89, 0.66
    Tasks: 181 total,   1 running, 180 sleeping,   0 stopped,   0 zombie
    %Cpu(s):  5.0 us, 10.0 sy,  0.0 ni, 85.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
    MiB Mem :   3943.3 total,   1960.2 free,   1151.8 used,    831.2 buff/cache
    MiB Swap:      0.0 total,      0.0 free,      0.0 used.   2471.7 avail Mem
    
        PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
         10 root      20   0       0      0      0 I  16.7   0.0  59:05.52 [rcu_preempt]
        579 root      20   0  677256  20340  13732 S   8.3   0.5  67:16.50 /usr/bin/ndmd --pidfile -vSYSLOG:INFO
        632 root      20   0  752720  22300  14108 S   8.3   0.6  71:02.65 /usr/bin/hpe-udldd --detach --pidfile+
          1 root      20   0   93604   8228   5516 S   0.0   0.2   2:41.95 /sbin/init
          2 root      20   0       0      0      0 S   0.0   0.0   0:01.15 [kthreadd]
          3 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [rcu_gp]
          4 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [rcu_par_gp]
          6 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kworker/0:0H-kblockd]
          8 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [mm_percpu_wq]
          9 root      20   0       0      0      0 S   0.0   0.0   2:27.58 [ksoftirqd/0]
         11 root      20   0       0      0      0 I   0.0   0.0   0:47.77 [rcu_sched]
         12 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [rcu_bh]
         13 root      rt   0       0      0      0 S   0.0   0.0   0:04.29 [migration/0]
         15 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [cpuhp/0]
         16 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [cpuhp/1]
         17 root      rt   0       0      0      0 S   0.0   0.0   0:04.69 [migration/1]
         18 root      20   0       0      0      0 S   0.0   0.0   2:14.79 [ksoftirqd/1]
         20 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kworker/1:0H-kblockd]
         21 root      20   0       0      0      0 S   0.0   0.0   0:00.01 [kdevtmpfs]
         22 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [netns]
         23 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [rcu_tasks_kthre]
         24 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [kauditd]
         25 root      20   0       0      0      0 S   0.0   0.0   0:00.14 [khungtaskd]
         26 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [oom_reaper]
         27 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [writeback]
         28 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [kcompactd0]
         29 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [crypto]
         30 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kblockd]
         31 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [ata_sff]
         32 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [md]
         33 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [icmp6_unreachab]
         34 root      rt   0       0      0      0 S   0.0   0.0   0:00.00 [watchdogd]
         36 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [rpciod]
         37 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kworker/u5:0]
         38 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [xprtiod]
         39 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [kswapd0]
         40 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nfsiod]
         62 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [acpi_thermal_pm]
         64 root       0 -20       0      0      0 I   0.0   0.0   0:29.92 [kworker/0:1H-kblockd]
         65 root       0 -20       0      0      0 I   0.0   0.0   0:01.35 [kworker/1:1H-kblockd]
         66 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nvme-wq]
         67 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nvme-reset-wq]
         68 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nvme-delete-wq]
         70 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [dm_bufio_cache]
         71 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [ipv6_addrconf]
         76 root      20   0       0      0      0 S   0.0   0.0   0:49.56 [jbd2/hda2-8]
         77 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [ext4-rsv-conver]
         92 root      20   0   45648  14088  12616 S   0.0   0.3   1:11.02 /lib/systemd/systemd-journald
        110 root      20   0   14620   4048   3036 S   0.0   0.1   0:01.04 /lib/systemd/systemd-udevd
        112 root      20   0    2256    688    624 S   0.0   0.0   0:27.18 /usr/sbin/jitterentropy-rngd
        115 root      16  -4   11096   2132   1956 S   0.0   0.1   0:00.30 /sbin/auditd -n
        118 systemd+  20   0    9652   3904   3568 S   0.0   0.1   0:00.64 /lib/systemd/systemd-resolved
        138 root      12  -8   76332   1716   1588 S   0.0   0.0   0:00.57 /sbin/audispd
        142 root      16  -4   51596  14260   8972 S   0.0   0.4   0:00.26 /usr/bin/acctd
        143 root      16  -4    7204   1932   1512 S   0.0   0.0   0:00.05 /usr/bin/acctsyslogd
        157 root      20   0    2300     92      0 S   0.0   0.0   0:00.00 /usr/sbin/acpid
        161 root      20   0    3340   1844   1536 S   0.0   0.0   0:00.58 /usr/sbin/crond -n
        163 message+  20   0    4384   3348   2884 S   0.0   0.1   0:30.22 /usr/bin/dbus-daemon --system --addre+
        167 root      20   0   51336   6568   5860 S   0.0   0.2   0:14.29 /usr/bin/crash-handler --pidfile
        202 root      20   0    8336   4436   3936 S   0.0   0.1   0:15.84 /lib/systemd/systemd-logind
        241 root      20   0  405872   7704   4680 S   0.0   0.2   0:00.69 /usr/bin/redirectord
        245 root      20   0   51976  48700   7588 S   0.0   1.2   0:08.89 python /usr/bin/dhcp_server_adapter
        257 root      20   0    3584   2172   1956 S   0.0   0.1   0:00.64 /usr/sbin/tac_plus -C /etc/tacacs/tac+
        366 root      20   0    3596   2636   2444 S   0.0   0.1   0:00.00 bash /usr/bin/bm_tools/simple_switch_+
        367 root      20   0 1060776 102632  49916 S   0.0   2.5   9:31.90 /usr/sbin/simple_switch -i 64@veth250+
        380 root      20   0   29308  15216   4432 S   0.0   0.4  29:42.91 /usr/sbin/ovsdb-server --remote=ptcp:+
        396 root      20   0  148140  19328  11656 S   0.0   0.5   2:22.01 /usr/bin/hpe-cardd --detach --pidfile+
        410 root      20   0   71836  13848   8672 S   0.0   0.3   8:54.24 /usr/bin/ipsla-responderd --pidfile -+
        411 root      20   0  157312  13836   8556 S   0.0   0.3  11:18.44 /usr/bin/ipsla-sourced --pidfile -vSY+
        415 root      20   0   52856  15920  10352 S   0.0   0.4   0:16.58 /usr/bin/log-mgmtd --pidfile
        425 root      20   0  348712  67804  39888 S   0.0   1.7  14:24.70 /usr/sbin/ops-switchd --no-chdir --pi+
        428 root      20   0   64360  15888  10152 S   0.0   0.4   0:17.15 /usr/bin/tunneld --pidfile -vSYSLOG:I+
        436 root      20   0   49008  11360   6068 S   0.0   0.3   0:25.18 /usr/bin/snmp-alarmd --detach --pidfi+
        437 root      20   0   52796  17344  11532 S   0.0   0.4   0:27.26 /usr/bin/aaautilscfgd --pidfile -vSYS+
        439 root      20   0   49692  14212   8732 S   0.0   0.4   0:13.86 /usr/bin/cdpd --pidfile -vSYSLOG:INFO
        449 root      20   0  127056  15732  10352 S   0.0   0.4   0:28.95 /usr/bin/hpe-credmgr --detach --pidfi+
        455 root      20   0   49480  14692   9096 S   0.0   0.4   0:07.23 /usr/bin/external_storage --detach --+
        468 root      20   0   60636  14096   8736 S   0.0   0.3   0:16.00 /usr/bin/log-persistd --pidfile -vSYS+
        480 root      20   0   51440  15764  10308 S   0.0   0.4   0:05.54 /usr/bin/vsx-swupdated --pidfile -vSY+
        481 root      20   0   51364  13912   8548 S   0.0   0.3   0:31.71 /usr/bin/certmgr --detach --pidfile -+
        482 root      20   0   51828  12360   6992 S   0.0   0.3   0:06.10 /usr/bin/hpe-entityd --detach --pidfi+
        483 root      20   0   49120  11000   5788 S   0.0   0.3   0:00.11 /usr/bin/btd --detach --pidfile -vSYS+
        484 root      20   0   49072  11628   6376 S   0.0   0.3   0:00.14 /usr/bin/intfd --detach --pidfile -vS+
        485 root      20   0 1324992  85892  21532 S   0.0   2.1   6:44.99 /usr/bin/hpe-restd
        486 root      20   0   71284  17808   7244 S   0.0   0.4   1:56.90 /usr/bin/hpe-mvrpd --detach --pidfile+
        487 root      20   0   29948   6168   5164 S   0.0   0.2   0:00.00 /usr/bin/hpe-ledarbd --detach --pidfi+
        489 root      20   0   53856  13080   7608 S   0.0   0.3   0:12.81 /usr/bin/fand --detach --pidfile -vSY+
        492 root      20   0  278732  12904   7416 S   0.0   0.3   0:48.39 /usr/bin/hpe-lpd --detach --pidfile -+
        495 root      20   0   29588  12600   7220 S   0.0   0.3   0:12.95 /usr/bin/vland --detach --pidfile -vS+
        497 root      20   0   51792  12820   7472 S   0.0   0.3   0:11.21 /usr/bin/tempd --detach --pidfile -vS+
        498 root      20   0  199152  13104   7460 S   0.0   0.3   0:09.86 /usr/bin/hpe-relay --detach --pidfile+
        499 root      20   0  213268  16520   9592 S   0.0   0.4   0:23.31 /usr/bin/lacpd --detach --pidfile -vS+
        500 root      20   0   49216  14104   8708 S   0.0   0.3   0:07.07 /usr/bin/vrfmgrd --detach --pidfile -+
        501 root      20   0   32496  10396   7960 S   0.0   0.3   0:00.08 /usr/bin/vrfapp --detach --pidfile -v+
        502 root      20   0   34276  12012   6684 S   0.0   0.3   0:07.17 /usr/bin/ledd --detach --pidfile
        503 root      20   0   54228  13804   8256 S   0.0   0.3   0:21.44 /usr/bin/powerd --detach --pidfile
        505 root      20   0  270528  17252   9588 S   0.0   0.4   0:21.62 /usr/bin/hpe-rdiscd --detach --pidfil+
        507 root      20   0   50736  10652   8244 S   0.0   0.3   0:49.39 /usr/bin/fibapp --detach --pidfile -v+
        508 root      20   0   53040  13844   8392 S   0.0   0.3   0:00.14 /usr/bin/classifierd --detach --pidfi+
        509 root      20   0   34228  12636   7360 S   0.0   0.3   2:49.89 /usr/bin/hpe-buttond --detach --pidfi+
        511 root      20   0  219900  63676  10040 S   0.0   1.6   8:40.44 /usr/bin/hpe-pvstd --detach --pidfile+
        524 root      20   0   29212  12428   7320 S   0.0   0.3   0:05.58 /usr/bin/vsxmgmtd --detach --pidfile +
        525 root      20   0   50088  16572  10896 S   0.0   0.4   0:49.07 /usr/sbin/lldpd --detach --pidfile -v+
        528 root      20   0   50528  13020   7636 S   0.0   0.3   0:30.20 /usr/bin/poe-protod --detach --pidfil+
        529 root      20   0   86556  13492   9988 S   0.0   0.3   0:53.51 /usr/bin/hpe-mstpd --detach --pidfile+
        534 root      20   0   55036  15876   9256 S   0.0   0.4   0:06.32 /usr/bin/sysd --detach --pidfile -vSY+
        541 root      20   0  136420  16852  11068 S   0.0   0.4   0:08.77 /usr/bin/hpe-mgmtmd --detach --pidfile
        545 root      20   0   54928  15668  10032 S   0.0   0.4   0:55.94 /usr/bin/poe-hald --detach --pidfile +
        548 root      20   0  113584  18268  12112 S   0.0   0.5   7:00.36 /usr/bin/hpe-mgmdd --detach --pidfile+
        549 root      20   0  257488  19156   8972 S   0.0   0.5   7:03.89 /usr/bin/hpe-profiled --detach --pidf+
        554 root      20   0   50372  14784   9296 S   0.0   0.4   0:30.63 /usr/bin/keychaind --pidfile -vSYSLOG+
        556 root      20   0  560236  20432  11228 S   0.0   0.5   7:02.78 /usr/bin/pspod --detach --pidfile -vS+
        558 root      20   0   66756  15596  10196 S   0.0   0.4   0:19.19 /usr/bin/mcast-debugd --pidfile -vSYS+
        573 root      20   0   51016  15476   9740 S   0.0   0.4   0:16.12 /usr/bin/dhcp-options-arbd --pidfile +
        574 root      20   0   52324  14940   9476 S   0.0   0.4   0:17.13 /usr/bin/ops_appsdnsclient --pidfile +
        575 root      20   0  108820  17824  12312 S   0.0   0.4  18:22.39 /usr/bin/ipsavd --pidfile -vSYSLOG:IN+
        576 root      20   0   63580  15404  11656 S   0.0   0.4   1:09.56 /usr/bin/l2mac-mgrd --pidfile -vSYSLO+
        577 root      20   0   68888  19340  12440 S   0.0   0.5   0:22.81 /usr/bin/l3-resmgrd --pidfile -vSYSLO+
        580 root      20   0   50748  16596  10892 S   0.0   0.4   0:16.39 /usr/bin/pbrd --pidfile -vSYSLOG:INFO
        581 root      20   0   77976  17556  12608 S   0.0   0.4   0:57.48 /usr/bin/portd --pidfile -vSYSLOG:INFO
        582 root      20   0   52384  14728   9336 S   0.0   0.4   0:16.48 /usr/bin/rbacd --pidfile -vSYSLOG:INFO
        587 root      20   0   52400  15572   9904 S   0.0   0.4   1:18.57 /usr/bin/ssh-utild --pidfile -vSYSLOG+
        596 root      20   0  120520  24276  17316 S   0.0   0.6   7:33.80 /usr/bin/pimd --detach --pidfile -vSY+
        619 root      20   0  359680  19312  13160 S   0.0   0.5   7:08.75 /usr/bin/mcast-msdpd --detach --pidfi+
        620 root      20   0  117636  17048  10740 S   0.0   0.4   0:22.65 /usr/bin/hpe-vsxd --detach --pidfile +
        621 root      20   0   85904  13596   9868 S   0.0   0.3  24:55.52 /usr/bin/hpe-vrrpd --detach --pidfile+
        622 root      20   0    7636   1000     12 S   0.0   0.0   0:00.00 nginx: master process /usr/sbin/nginx+
        623 www-data  20   0    7820   2868   1660 S   0.0   0.1   0:16.70 nginx: worker process
        624 www-data  20   0    7820   2868   1660 S   0.0   0.1   0:00.00 nginx: worker process
        626 root      20   0  122416  19328  13012 S   0.0   0.5   6:54.00 /usr/bin/mtmd --detach --pidfile -vSY+
        627 root      20   0  125900  17884  12240 S   0.0   0.4   8:29.44 /usr/bin/bfdd --detach --pidfile -vSY+
        776 root      20   0   28904  10532   5540 S   0.0   0.3   0:00.33 /usr/bin/platformhwd --pidfile -vSYSL+
        839 root      20   0  128096  14112   8632 S   0.0   0.3   3:58.41 /usr/bin/pmd --detach --pidfile -vSYS+
        845 root      20   0   88076  16704  11988 S   0.0   0.4  10:07.96 /usr/bin/hpe-repld --detach --pidfile+
       1094 root      20   0   89396  13132   8800 S   0.0   0.3   0:14.83 /usr/bin/hpe-vsxkad --detach --pidfil+
       1114 root      20   0   49232  12856   7556 S   0.0   0.3  15:52.13 /usr/bin/hpe-sysmond unix:/var/run/op+
       1232 root      20   0    3596   2640   2444 S   0.0   0.1   0:00.00 /bin/bash -c exec /usr/bin/prometheus+
       1233 root      20   0  810484  49272  16360 S   0.0   1.2   5:15.58 /usr/bin/hpe-tsdbd
       1236 root      20   0  922356  88068  35548 S   0.0   2.2  19:26.97 /usr/bin/prometheus --storage.tsdb.re+
       1238 root      20   0    2280    752    692 S   0.0   0.0   0:00.00 tee /var/log/prom.log
       1287 root      20   0   59148  51368   4116 S   0.0   1.3   1:58.71 python /usr/bin/ops_mgmtintfcfg --det+
       4777 root      20   0 1100384  36116  13196 S   0.0   0.9   3:06.24 /usr/bin/hpe-policyd
       4780 root      20   0  130432  19564  12680 S   0.0   0.5   0:55.79 /usr/bin/macsecd --pidfile -vSYSLOG:I+
       4783 root      20   0  346276  17088  11196 S   0.0   0.4   1:03.18 /usr/bin/radius-srv-trkd --pidfile
       4791 root      20   0  225960  18916  12952 S   0.0   0.5   7:05.13 /usr/bin/hpe-ipsecd --pidfile
       4793 root      20   0  131708  23712  16500 S   0.0   0.6   2:19.89 /usr/bin/captiveportald --pidfile -vS+
       4797 root      20   0   52504  15920  10248 S   0.0   0.4   0:15.86 /usr/bin/snmpd_wrapper --pidfile -vSY+
       4799 root      20   0   85388  16372  12228 S   0.0   0.4   0:20.08 /usr/bin/tunnelednode --pidfile -vSYS+
       4801 root      20   0   49268  13848   8616 S   0.0   0.3   0:00.84 /usr/bin/tacacs-srv-trkd --detach --p+
       4816 root      20   0   45908  10112   9048 S   0.0   0.3   0:00.03 /usr/sbin/sshd -x -m 5 -o PidFile=/va+
       4989 root      20   0  573044  71748  36496 S   0.0   1.8  32:53.13 /usr/bin/hpe-routing --detach --pidfi+
       5089 root      20   0  186640  29748  16964 S   0.0   0.7   1:31.06 /usr/bin/port-accessd --detach --pidf+
       5860 root      20   0   18900   3520   2992 S   0.0   0.1   0:00.03 /lib/systemd/systemd-journal-remote -+
       6722 root      20   0   50228  12916   7624 S   0.0   0.3   0:16.58 /usr/bin/bannerd --pidfile
       6723 root      20   0  657532  38008  11984 S   0.0   0.9   1:55.16 /usr/bin/hpe-config ckptpostcfg
       6724 root      20   0   52784  16456  10300 S   0.0   0.4   0:30.45 /usr/bin/ntp-mgrd --pidfile -vSYSLOG:+
       6726 root      20   0  656812  35148  12836 S   0.0   0.9   1:55.51 /usr/bin/vsx-syncd
       6734 root      20   0   49176  13068   7676 S   0.0   0.3   0:29.64 /usr/bin/ztpd --detach --pidfile -vSY+
       6800 root      20   0    2352   1548   1436 S   0.0   0.0   0:00.05 /sbin/agetty -o -p -- \u --noclear tt+
       6878 root      20   0   17876    876     12 S   0.0   0.0   0:00.00 nginx: master process /usr/sbin/nginx+
       6879 www-data  20   0   17876   2928   1844 S   0.0   0.1   0:00.00 nginx: worker process
       6880 www-data  20   0   17876   2928   1844 S   0.0   0.1   0:17.23 nginx: worker process
       6944 root      20   0   73896   5456   4704 S   0.0   0.1   0:26.82 ntpd -n -c /etc/ntp/ntp_mgrd.conf -k +
       6993 root      20   0  288172   4248   2948 S   0.0   0.1   0:12.28 /usr/sbin/rsyslogd -n -iNONE
      12295 root      20   0    3636   2940   2536 S   0.0   0.1   0:00.07 /bin/login --
     170815 root      20   0       0      0      0 I   0.0   0.0   0:02.28 [kworker/0:0-cgroup_destroy]
     171736 root      20   0       0      0      0 I   0.0   0.0   0:00.09 [kworker/u4:1-events_unbound]
     172995 root      20   0       0      0      0 I   0.0   0.0   0:00.68 [kworker/1:0-cgroup_destroy]
     173301 root      20   0       0      0      0 I   0.0   0.0   0:00.31 [kworker/1:1-mm_percpu_wq]
     173331 root      20   0       0      0      0 I   0.0   0.0   0:00.14 [kworker/0:2-events]
     173332 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [kworker/0:3-cgroup_destroy]
     173435 root      20   0       0      0      0 I   0.0   0.0   0:00.13 [kworker/u4:0-events_unbound]
     173601 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [kworker/1:3-cgroup_destroy]
     173747 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [kworker/0:1-cgroup_destroy]
     173903 admin     20   0    9820   6148   5368 S   0.0   0.2   0:00.15 /lib/systemd/systemd --user
     173904 admin     20   0   94448   2908    112 S   0.0   0.1   0:00.00 (sd-pam)
     173909 admin     20   0  168204  57152  28936 S   0.0   1.4   0:02.24 -vtysh
     173918 root      20   0       0      0      0 I   0.0   0.0   0:00.01 [kworker/u4:2-events_unbound]
     173983 root      20   0    2352   1560   1448 S   0.0   0.0   0:00.00 /sbin/agetty -8 -L ttyS1 115200 xterm
     173987 admin     20   0    3552   2496   2288 S   0.0   0.1   0:00.00 sh -c /usr/bin/top -b -n 2 -c -o %CPU+
     173988 admin     20   0    3448   2280   1828 R   0.0   0.1   0:00.04 /usr/bin/top -b -n 2 -c -o %CPU -w 11+​

    switch# top memory
    top - 09:56:10 up 1 day, 23:42,  1 user,  load average: 0.20, 0.58, 0.66
    Tasks: 181 total,   2 running, 179 sleeping,   0 stopped,   0 zombie
    %Cpu(s):  5.0 us,  5.0 sy,  0.0 ni, 85.0 id,  0.0 wa,  0.0 hi,  5.0 si,  0.0 st
    MiB Mem :   3943.3 total,   1956.8 free,   1152.9 used,    833.6 buff/cache
    MiB Swap:      0.0 total,      0.0 free,      0.0 used.   2468.3 avail Mem
    
        PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     TIME+ COMMAND
        367 root      20   0 1060776 102632  49916 S   0.0   2.5   9:33.80 /usr/sbin/simple_switch -i 64@veth250+
       1236 root      20   0  922356  88068  35548 S   0.0   2.2  19:30.67 /usr/bin/prometheus --storage.tsdb.re+
        485 root      20   0 1324992  85880  21532 S   0.0   2.1   6:46.41 /usr/bin/hpe-restd
       4989 root      20   0  573044  71748  36496 S   8.3   1.8  32:59.67 /usr/bin/hpe-routing --detach --pidfi+
        425 root      20   0  348712  67804  39888 S   0.0   1.7  14:27.61 /usr/sbin/ops-switchd --no-chdir --pi+
        511 root      20   0  219900  63676  10040 S   0.0   1.6   8:42.17 /usr/bin/hpe-pvstd --detach --pidfile+
     173909 admin     20   0  168204  57152  28936 S   0.0   1.4   0:03.05 -vtysh
       1287 root      20   0   59148  51368   4116 S   0.0   1.3   1:59.06 python /usr/bin/ops_mgmtintfcfg --det+
       1233 root      20   0  810484  49192  16360 S   0.0   1.2   5:16.56 /usr/bin/hpe-tsdbd
        245 root      20   0   51976  48700   7588 S   0.0   1.2   0:08.89 python /usr/bin/dhcp_server_adapter
       6723 root      20   0  657532  38008  11984 S   0.0   0.9   1:55.57 /usr/bin/hpe-config ckptpostcfg
       4777 root      20   0 1100384  36116  13196 S   0.0   0.9   3:06.87 /usr/bin/hpe-policyd
       6726 root      20   0  656812  35148  12836 S   0.0   0.9   1:56.07 /usr/bin/vsx-syncd
       5089 root      20   0  186640  29748  16964 S   0.0   0.7   1:31.41 /usr/bin/port-accessd --detach --pidf+
        596 root      20   0  120520  24276  17316 S   8.3   0.6   7:35.34 /usr/bin/pimd --detach --pidfile -vSY+
       4793 root      20   0  131708  23712  16500 S   0.0   0.6   2:20.35 /usr/bin/captiveportald --pidfile -vS+
        632 root      20   0  752720  22300  14108 S   0.0   0.6  71:17.57 /usr/bin/hpe-udldd --detach --pidfile+
        556 root      20   0  560236  20432  11228 S   0.0   0.5   7:04.28 /usr/bin/pspod --detach --pidfile -vS+
        579 root      20   0  677256  20340  13732 S   0.0   0.5  67:30.21 /usr/bin/ndmd --pidfile -vSYSLOG:INFO
       4780 root      20   0  130432  19564  12680 S   0.0   0.5   0:55.97 /usr/bin/macsecd --pidfile -vSYSLOG:I+
        577 root      20   0   68888  19340  12440 S   0.0   0.5   0:22.88 /usr/bin/l3-resmgrd --pidfile -vSYSLO+
        396 root      20   0  148140  19328  11656 S   0.0   0.5   2:22.47 /usr/bin/hpe-cardd --detach --pidfile+
        626 root      20   0  122416  19328  13012 S   0.0   0.5   6:55.39 /usr/bin/mtmd --detach --pidfile -vSY+
        619 root      20   0  359680  19312  13160 S   0.0   0.5   7:10.24 /usr/bin/mcast-msdpd --detach --pidfi+
        549 root      20   0  257488  19156   8972 S   0.0   0.5   7:05.28 /usr/bin/hpe-profiled --detach --pidf+
       4791 root      20   0  225960  18916  12952 S   0.0   0.5   7:06.52 /usr/bin/hpe-ipsecd --pidfile
        548 root      20   0  113584  18268  12112 S   0.0   0.5   7:01.78 /usr/bin/hpe-mgmdd --detach --pidfile+
        627 root      20   0  125900  17884  12240 S   0.0   0.4   8:31.11 /usr/bin/bfdd --detach --pidfile -vSY+
        575 root      20   0  108820  17824  12312 S   0.0   0.4  18:26.17 /usr/bin/ipsavd --pidfile -vSYSLOG:IN+
        486 root      20   0   71284  17808   7244 S   0.0   0.4   1:57.28 /usr/bin/hpe-mvrpd --detach --pidfile+
        581 root      20   0   77976  17556  12608 S   0.0   0.4   0:57.64 /usr/bin/portd --pidfile -vSYSLOG:INFO
        437 root      20   0   52796  17344  11532 S   0.0   0.4   0:27.33 /usr/bin/aaautilscfgd --pidfile -vSYS+
        505 root      20   0  270528  17252   9588 S   0.0   0.4   0:21.70 /usr/bin/hpe-rdiscd --detach --pidfil+
       4783 root      20   0  346276  17088  11196 S   0.0   0.4   1:03.42 /usr/bin/radius-srv-trkd --pidfile
        620 root      20   0  117636  17048  10740 S   0.0   0.4   0:22.72 /usr/bin/hpe-vsxd --detach --pidfile +
        541 root      20   0  136420  16852  11068 S   0.0   0.4   0:08.78 /usr/bin/hpe-mgmtmd --detach --pidfile
        845 root      20   0   88076  16704  11988 S   0.0   0.4  10:10.00 /usr/bin/hpe-repld --detach --pidfile+
        580 root      20   0   50748  16596  10892 S   0.0   0.4   0:16.44 /usr/bin/pbrd --pidfile -vSYSLOG:INFO
        525 root      20   0   50088  16572  10896 S   0.0   0.4   0:49.29 /usr/sbin/lldpd --detach --pidfile -v+
        499 root      20   0  213268  16520   9592 S   0.0   0.4   0:23.39 /usr/bin/lacpd --detach --pidfile -vS+
       6724 root      20   0   52784  16456  10300 S   0.0   0.4   0:30.51 /usr/bin/ntp-mgrd --pidfile -vSYSLOG:+
       4799 root      20   0   85388  16372  12228 S   0.0   0.4   0:20.13 /usr/bin/tunnelednode --pidfile -vSYS+
        415 root      20   0   52856  15920  10352 S   0.0   0.4   0:16.65 /usr/bin/log-mgmtd --pidfile
       4797 root      20   0   52504  15920  10248 S   0.0   0.4   0:15.91 /usr/bin/snmpd_wrapper --pidfile -vSY+
        428 root      20   0   64360  15888  10152 S   0.0   0.4   0:17.21 /usr/bin/tunneld --pidfile -vSYSLOG:I+
        534 root      20   0   55036  15876   9256 S   0.0   0.4   0:06.36 /usr/bin/sysd --detach --pidfile -vSY+
        480 root      20   0   51440  15764  10308 S   0.0   0.4   0:05.55 /usr/bin/vsx-swupdated --pidfile -vSY+
        449 root      20   0  127056  15732  10352 S   0.0   0.4   0:29.02 /usr/bin/hpe-credmgr --detach --pidfi+
        380 root      20   0   29308  15724   4432 S   0.0   0.4  29:49.18 /usr/sbin/ovsdb-server --remote=ptcp:+
        545 root      20   0   54928  15668  10032 S   0.0   0.4   0:56.15 /usr/bin/poe-hald --detach --pidfile +
        558 root      20   0   66756  15596  10196 S   0.0   0.4   0:19.27 /usr/bin/mcast-debugd --pidfile -vSYS+
        587 root      20   0   52400  15572   9904 S   0.0   0.4   1:18.78 /usr/bin/ssh-utild --pidfile -vSYSLOG+
        573 root      20   0   51016  15476   9740 S   0.0   0.4   0:16.17 /usr/bin/dhcp-options-arbd --pidfile +
        576 root      20   0   63580  15404  11656 S   0.0   0.4   1:09.78 /usr/bin/l2mac-mgrd --pidfile -vSYSLO+
        574 root      20   0   52324  14940   9476 S   0.0   0.4   0:17.17 /usr/bin/ops_appsdnsclient --pidfile +
        554 root      20   0   50372  14784   9296 S   0.0   0.4   0:30.73 /usr/bin/keychaind --pidfile -vSYSLOG+
        582 root      20   0   52384  14728   9336 S   0.0   0.4   0:16.53 /usr/bin/rbacd --pidfile -vSYSLOG:INFO
        455 root      20   0   49480  14692   9096 S   0.0   0.4   0:07.24 /usr/bin/external_storage --detach --+
         92 root      20   0   45648  14352  12876 S   0.0   0.4   1:11.29 /lib/systemd/systemd-journald
        142 root      16  -4   51596  14260   8972 S   0.0   0.4   0:00.26 /usr/bin/acctd
        439 root      20   0   49692  14212   8732 S   0.0   0.4   0:13.90 /usr/bin/cdpd --pidfile -vSYSLOG:INFO
        839 root      20   0  128096  14112   8632 S   0.0   0.3   3:59.20 /usr/bin/pmd --detach --pidfile -vSYS+
        500 root      20   0   49216  14104   8708 S   0.0   0.3   0:07.09 /usr/bin/vrfmgrd --detach --pidfile -+
        468 root      20   0   60636  14096   8736 S   0.0   0.3   0:16.05 /usr/bin/log-persistd --pidfile -vSYS+
        481 root      20   0   51364  13912   8548 S   0.0   0.3   0:31.83 /usr/bin/certmgr --detach --pidfile -+
        410 root      20   0   71836  13848   8672 S   0.0   0.3   8:56.03 /usr/bin/ipsla-responderd --pidfile -+
       4801 root      20   0   49268  13848   8616 S   0.0   0.3   0:00.84 /usr/bin/tacacs-srv-trkd --detach --p+
        508 root      20   0   53040  13844   8392 S   0.0   0.3   0:00.14 /usr/bin/classifierd --detach --pidfi+
        411 root      20   0  157312  13836   8556 S   0.0   0.3  11:20.84 /usr/bin/ipsla-sourced --pidfile -vSY+
        503 root      20   0   54228  13804   8256 S   0.0   0.3   0:21.57 /usr/bin/powerd --detach --pidfile
        621 root      20   0   85904  13596   9868 S   0.0   0.3  25:00.24 /usr/bin/hpe-vrrpd --detach --pidfile+
        529 root      20   0   86556  13492   9988 S   0.0   0.3   0:53.68 /usr/bin/hpe-mstpd --detach --pidfile+
       1094 root      20   0   89396  13132   8800 S   0.0   0.3   0:14.88 /usr/bin/hpe-vsxkad --detach --pidfil+
        498 root      20   0  199152  13104   7460 S   0.0   0.3   0:09.89 /usr/bin/hpe-relay --detach --pidfile+
        489 root      20   0   53856  13080   7608 S   0.0   0.3   0:12.85 /usr/bin/fand --detach --pidfile -vSY+
       6734 root      20   0   49176  13068   7676 S   0.0   0.3   0:29.74 /usr/bin/ztpd --detach --pidfile -vSY+
        528 root      20   0   50528  13020   7636 S   0.0   0.3   0:30.28 /usr/bin/poe-protod --detach --pidfil+
       6722 root      20   0   50228  12916   7624 S   0.0   0.3   0:16.63 /usr/bin/bannerd --pidfile
        492 root      20   0  278732  12904   7416 S   0.0   0.3   0:48.57 /usr/bin/hpe-lpd --detach --pidfile -+
       1114 root      20   0   49232  12856   7556 S   0.0   0.3  15:55.49 /usr/bin/hpe-sysmond unix:/var/run/op+
        497 root      20   0   51792  12820   7472 S   0.0   0.3   0:11.23 /usr/bin/tempd --detach --pidfile -vS+
        509 root      20   0   34228  12636   7360 S   0.0   0.3   2:50.44 /usr/bin/hpe-buttond --detach --pidfi+
        495 root      20   0   29588  12600   7220 S   0.0   0.3   0:12.99 /usr/bin/vland --detach --pidfile -vS+
        524 root      20   0   29212  12428   7320 S   0.0   0.3   0:05.61 /usr/bin/vsxmgmtd --detach --pidfile +
        482 root      20   0   51828  12360   6992 S   0.0   0.3   0:06.12 /usr/bin/hpe-entityd --detach --pidfi+
        502 root      20   0   34276  12012   6684 S   0.0   0.3   0:07.18 /usr/bin/ledd --detach --pidfile
        484 root      20   0   49072  11628   6376 S   0.0   0.3   0:00.14 /usr/bin/intfd --detach --pidfile -vS+
        436 root      20   0   49008  11360   6068 S   0.0   0.3   0:25.28 /usr/bin/snmp-alarmd --detach --pidfi+
        483 root      20   0   49120  11000   5788 S   0.0   0.3   0:00.11 /usr/bin/btd --detach --pidfile -vSYS+
        507 root      20   0   50736  10652   8244 S   0.0   0.3   0:49.55 /usr/bin/fibapp --detach --pidfile -v+
        776 root      20   0   28904  10532   5540 S   0.0   0.3   0:00.33 /usr/bin/platformhwd --pidfile -vSYSL+
        501 root      20   0   32496  10396   7960 S   0.0   0.3   0:00.08 /usr/bin/vrfapp --detach --pidfile -v+
       4816 root      20   0   45908  10112   9048 S   0.0   0.3   0:00.03 /usr/sbin/sshd -x -m 5 -o PidFile=/va+
          1 root      20   0   93604   8228   5516 S   0.0   0.2   2:42.38 /sbin/init
        241 root      20   0  405872   7704   4680 S   0.0   0.2   0:00.69 /usr/bin/redirectord
        167 root      20   0   51336   6568   5860 S   0.0   0.2   0:14.33 /usr/bin/crash-handler --pidfile
        487 root      20   0   29948   6168   5164 S   0.0   0.2   0:00.00 /usr/bin/hpe-ledarbd --detach --pidfi+
     173903 admin     20   0    9820   6148   5368 S   0.0   0.2   0:00.15 /lib/systemd/systemd --user
       6944 root      20   0   73896   5456   4704 S   0.0   0.1   0:26.93 ntpd -n -c /etc/ntp/ntp_mgrd.conf -k +
        202 root      20   0    8336   4436   3936 S   0.0   0.1   0:15.87 /lib/systemd/systemd-logind
       6993 root      20   0  288172   4248   2948 S   0.0   0.1   0:12.32 /usr/sbin/rsyslogd -n -iNONE
        110 root      20   0   14620   4048   3036 S   0.0   0.1   0:01.04 /lib/systemd/systemd-udevd
        118 systemd+  20   0    9652   3904   3568 S   0.0   0.1   0:00.64 /lib/systemd/systemd-resolved
       5860 root      20   0   18900   3520   2992 S   0.0   0.1   0:00.03 /lib/systemd/systemd-journal-remote -+
        163 message+  20   0    4384   3348   2884 S   0.0   0.1   0:30.30 /usr/bin/dbus-daemon --system --addre+
      12295 root      20   0    3636   2940   2536 S   0.0   0.1   0:00.07 /bin/login --
       6879 www-data  20   0   17876   2928   1844 S   0.0   0.1   0:00.00 nginx: worker process
       6880 www-data  20   0   17876   2928   1844 S   0.0   0.1   0:17.29 nginx: worker process
     173904 admin     20   0   94448   2908    112 S   0.0   0.1   0:00.00 (sd-pam)
        623 www-data  20   0    7820   2868   1660 S   0.0   0.1   0:16.76 nginx: worker process
        624 www-data  20   0    7820   2868   1660 S   0.0   0.1   0:00.00 nginx: worker process
        1232 root      20   0    3596   2640   2444 S   0.0   0.1   0:00.00 /bin/bash -c exec /usr/bin/prometheus+
        366 root      20   0    3596   2636   2444 S   0.0   0.1   0:00.00 bash /usr/bin/bm_tools/simple_switch_+
     174554 admin     20   0    3552   2556   2344 S   0.0   0.1   0:00.00 sh -c /usr/bin/top -b -n 2 -c -o %MEM+
     174555 admin     20   0    3448   2236   1784 R   8.3   0.1   0:00.05 /usr/bin/top -b -n 2 -c -o %MEM -w 11+
        257 root      20   0    3584   2172   1956 S   0.0   0.1   0:00.64 /usr/sbin/tac_plus -C /etc/tacacs/tac+
        115 root      16  -4   11096   2132   1956 S   0.0   0.1   0:00.31 /sbin/auditd -n
        143 root      16  -4    7204   1932   1512 S   0.0   0.0   0:00.05 /usr/bin/acctsyslogd
         161 root      20   0    3340   1844   1536 S   0.0   0.0   0:00.59 /usr/sbin/crond -n
        138 root      12  -8   76332   1716   1588 S   0.0   0.0   0:00.58 /sbin/audispd
     174553 root      20   0    2352   1628   1520 S   0.0   0.0   0:00.00 /sbin/agetty -8 -L ttyS1 115200 xterm
       6800 root      20   0    2352   1548   1436 S   0.0   0.0   0:00.05 /sbin/agetty -o -p -- \u --noclear tt+
        622 root      20   0    7636   1000     12 S   0.0   0.0   0:00.00 nginx: master process /usr/sbin/nginx+
       6878 root      20   0   17876    876     12 S   0.0   0.0   0:00.00 nginx: master process /usr/sbin/nginx+
       1238 root      20   0    2280    752    692 S   0.0   0.0   0:00.00 tee /var/log/prom.log
        112 root      20   0    2256    688    624 S   0.0   0.0   0:27.27 /usr/sbin/jitterentropy-rngd
        157 root      20   0    2300     92      0 S   0.0   0.0   0:00.00 /usr/sbin/acpid
          2 root      20   0       0      0      0 S   0.0   0.0   0:01.15 [kthreadd]
          3 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [rcu_gp]
          4 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [rcu_par_gp]
          6 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kworker/0:0H-kblockd]
          8 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [mm_percpu_wq]
          9 root      20   0       0      0      0 S   0.0   0.0   2:27.98 [ksoftirqd/0]
         10 root      20   0       0      0      0 R   8.3   0.0  59:17.25 [rcu_preempt]
         11 root      20   0       0      0      0 I   0.0   0.0   0:47.78 [rcu_sched]
         12 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [rcu_bh]
         13 root      rt   0       0      0      0 S   0.0   0.0   0:04.30 [migration/0]
         15 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [cpuhp/0]
         16 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [cpuhp/1]
         17 root      rt   0       0      0      0 S   0.0   0.0   0:04.69 [migration/1]
         18 root      20   0       0      0      0 S   0.0   0.0   2:15.18 [ksoftirqd/1]
         20 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kworker/1:0H-kblockd]
         21 root      20   0       0      0      0 S   0.0   0.0   0:00.01 [kdevtmpfs]
         22 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [netns]
         23 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [rcu_tasks_kthre]
         24 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [kauditd]
         25 root      20   0       0      0      0 S   0.0   0.0   0:00.14 [khungtaskd]
         26 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [oom_reaper]
         27 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [writeback]
         28 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [kcompactd0]
         29 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [crypto]
         30 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kblockd]
         31 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [ata_sff]
         32 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [md]
         33 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [icmp6_unreachab]
         34 root      rt   0       0      0      0 S   0.0   0.0   0:00.00 [watchdogd]
         36 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [rpciod]
         37 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [kworker/u5:0]
         38 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [xprtiod]
         39 root      20   0       0      0      0 S   0.0   0.0   0:00.00 [kswapd0]
         40 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nfsiod]
         62 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [acpi_thermal_pm]
         64 root       0 -20       0      0      0 I   0.0   0.0   0:29.99 [kworker/0:1H-kblockd]
         65 root       0 -20       0      0      0 I   0.0   0.0   0:01.36 [kworker/1:1H-kblockd]
         66 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nvme-wq]
         67 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nvme-reset-wq]
         68 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [nvme-delete-wq]
         70 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [dm_bufio_cache]
         71 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [ipv6_addrconf]
         76 root      20   0       0      0      0 S   0.0   0.0   0:49.72 [jbd2/hda2-8]
         77 root       0 -20       0      0      0 I   0.0   0.0   0:00.00 [ext4-rsv-conver]
     170815 root      20   0       0      0      0 I   0.0   0.0   0:02.59 [kworker/0:0-mm_percpu_wq]
     171736 root      20   0       0      0      0 I   0.0   0.0   0:00.10 [kworker/u4:1-events_unbound]
     172995 root      20   0       0      0      0 I   0.0   0.0   0:00.68 [kworker/1:0-cgroup_destroy]
     173301 root      20   0       0      0      0 I   0.0   0.0   0:00.52 [kworker/1:1-cgroup_destroy]
     173331 root      20   0       0      0      0 I   0.0   0.0   0:00.33 [kworker/0:2-cgroup_destroy]
     173918 root      20   0       0      0      0 I   0.0   0.0   0:00.01 [kworker/u4:2-events_unbound]
     174071 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [kworker/0:3-cgroup_destroy]
     174222 root      20   0       0      0      0 I   0.0   0.0   0:00.00 [kworker/1:2-cgroup_destroy]
     174257 root      20   0       0      0      0 I   0.0   0.0   0:00.04 [kworker/u4:0-events_unbound]
     174277 root      20   0       0      0      0 I   0.0   0.0   0:00.32 [kworker/1:3-mm_percpu_wq]

    switch# top io
    Total DISK READ :       0.00 B/s | Total DISK WRITE :       0.00 B/s
    Actual DISK READ:       0.00 B/s | Actual DISK WRITE:       0.00 B/s
        TID  PRIO  USER     DISK READ  DISK WRITE  SWAPIN      IO    COMMAND
          1 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % init
          2 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kthreadd]
          3 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rcu_gp]
          4 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rcu_par_gp]
          6 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/0:0H-kblockd]
      12295 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % login --
          8 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [mm_percpu_wq]
          9 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [ksoftirqd/0]
         10 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rcu_preempt]
         11 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rcu_sched]
         12 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rcu_bh]
         13 rt/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [migration/0]
         15 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [cpuhp/0]
         16 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [cpuhp/1]
         17 rt/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [migration/1]
         18 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [ksoftirqd/1]
         20 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/1:0H-kblockd]
         21 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kdevtmpfs]
         22 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [netns]
         23 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rcu_tasks_kthre]
         24 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kauditd]
         25 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [khungtaskd]
         26 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [oom_reaper]
         27 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [writeback]
         28 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kcompactd0]
         29 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [crypto]
         30 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kblockd]
         31 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [ata_sff]
         32 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [md]
         33 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [icmp6_unreachab]
         34 rt/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [watchdogd]
         36 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [rpciod]
         37 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/u5:0]
         38 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [xprtiod]
         39 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kswapd0]
         40 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [nfsiod]
     174125 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
         62 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [acpi_thermal_pm]
         64 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/0:1H-kblockd]
         65 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/1:1H-kblockd]
         66 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [nvme-wq]
         67 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [nvme-reset-wq]
         68 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [nvme-delete-wq]
         70 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [dm_bufio_cache]
         71 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [ipv6_addrconf]
         76 be/3 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [jbd2/hda2-8]
         77 be/0 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [ext4-rsv-conver]
         92 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % systemd-journald
        110 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % systemd-udevd
        112 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % jitterentropy-rngd
        115 be/3 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % auditd -n
        118 be/4 systemd-    0.00 B/s    0.00 B/s  0.00 %  0.00 % systemd-resolved
      10365 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       4801 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tacacs-srv-trkd --detach --pidfile
        137 be/3 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % auditd -n
        138 be/2 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % audispd
        142 be/3 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % acctd
        143 be/3 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % acctsyslogd
        144 be/2 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % audispd
        157 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % acpid
        161 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % crond -n
        163 be/4 messageb    0.00 B/s    0.00 B/s  0.00 %  0.00 % dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
        167 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % crash-handler --pidfile
     174257 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/u4:0-events_unbound]
     174277 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/1:3-cgroup_destroy]
        202 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % systemd-logind
        241 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % redirectord
        245 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % python /usr/bin/dhcp_server_adapter
        257 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tac_plus -C /etc/tacacs/tac_plus.conf -B localhost -G
        261 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % redirectord
        262 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % redirectord
        263 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % redirectord
        264 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % redirectord
     174402 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
     174415 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
     174416 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
     172369 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
      38201 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       6509 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
        366 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bash /usr/bin/bm_tools/simple_switch_start
        367 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        373 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        380 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ovsdb-server --remote=ptcp:6640 --remote=punix:/var/run/openvswitch/db.sock --detach --no-chdir --pidfile -vSYSLOG:INFO nolog:/var/run/openvswitch/ovsdb.db /var/local/openvswitch/config.db
        381 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        396 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-cardd --detach --pidfile -vSYSLOG:INFO
        399 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-cardd --detach --pidfile -vSYSLOG:INFO [timer]
        400 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-cardd --detach --pidfile -vSYSLOG:INFO [hw_watcher]
        410 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-responderd --pidfile -vSYSLOG:INFO
        411 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-sourced --pidfile -vSYSLOG:INFO
       4510 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO [vsxd_protocol]
        415 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % log-mgmtd --pidfile
       4512 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO [vsxd_ovs_if]
       4513 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO [vsxd_writer]
       4517 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-cardd --detach --pidfile -vSYSLOG:INFO [LC-1/1]
       4519 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-sourced --pidfile -vSYSLOG:INFO
       4520 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-sourced --pidfile -vSYSLOG:INFO
        425 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO
       4522 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-sourced --pidfile -vSYSLOG:INFO
       4523 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-sourced --pidfile -vSYSLOG:INFO
       4524 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-responderd --pidfile -vSYSLOG:INFO
       4525 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-responderd --pidfile -vSYSLOG:INFO
       4526 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-responderd --pidfile -vSYSLOG:INFO
        436 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % snmp-alarmd --detach --pidfile
        437 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % aaautilscfgd --pidfile -vSYSLOG:INFO
        439 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % cdpd --pidfile -vSYSLOG:INFO
       4511 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO [vsxd_islp]
       4544 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pimd --detach --pidfile -vSYSLOG:INFO [pimd-ovsdb]
        449 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-credmgr --detach --pidfile
       4546 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pimd --detach --pidfile -vSYSLOG:INFO [pimd-timer]
       4547 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pimd --detach --pidfile -vSYSLOG:INFO [pimd-pkt-listen]
        455 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % external_storage --detach --pidfile -vSYSLOG:INFO
        468 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % log-persistd --pidfile -vSYSLOG:INFO
        480 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-swupdated --pidfile -vSYSLOG:INFO
        481 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % certmgr --detach --pidfile -vSYSLOG:INFO
        482 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-entityd --detach --pidfile -vSYSLOG:INFO
        483 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % btd --detach --pidfile -vSYSLOG:INFO
        484 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % intfd --detach --pidfile -vSYSLOG:INFO
        485 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
        486 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mvrpd --detach --pidfile -vSYSLOG:INFO
        487 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ledarbd --detach --pidfile
        489 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % fand --detach --pidfile -vSYSLOG:INFO
       6634 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       6635 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
        492 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-lpd --detach --pidfile -vSYSLOG:INFO
        495 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vland --detach --pidfile -vSYSLOG:INFO
        497 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tempd --detach --pidfile -vSYSLOG:INFO
        498 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-relay --detach --pidfile -vSYSLOG:INFO
        499 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % lacpd --detach --pidfile -vSYSLOG:INFO
        500 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vrfmgrd --detach --pidfile -vSYSLOG:INFO
        501 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vrfapp --detach --pidfile -vSYSLOG:INFO
        502 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ledd --detach --pidfile
        503 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % powerd --detach --pidfile
        505 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-rdiscd --detach --pidfile -vSYSLOG:INFO
        507 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % fibapp --detach --pidfile -vSYSLOG:INFO
        508 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % classifierd --detach --pidfile
        509 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-buttond --detach --pidfile -vSYSLOG:INFO
        511 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-pvstd --detach --pidfile -vSYSLOG:INFO
        513 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-relay --detach --pidfile -vSYSLOG:INFO
        519 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mvrpd --detach --pidfile -vSYSLOG:INFO
        520 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mvrpd --detach --pidfile -vSYSLOG:INFO
        428 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tunneld --pidfile -vSYSLOG:INFO
        524 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsxmgmtd --detach --pidfile -vSYSLOG:INFO
        525 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % lldpd --detach --pidfile -vSYSLOG:INFO
     174607 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % agetty -8 -L ttyS1 115200 xterm
        528 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % poe-protod --detach --pidfile -vSYSLOG:INFO
        529 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mstpd --detach --pidfile -vSYSLOG:INFO
        530 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mstpd --detach --pidfile -vSYSLOG:INFO
        533 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-credmgr --detach --pidfile
        534 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % sysd --detach --pidfile -vSYSLOG:INFO
        536 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-relay --detach --pidfile -vSYSLOG:INFO
        537 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-lpd --detach --pidfile -vSYSLOG:INFO
     174618 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % python /usr/sbin/iotop -b -d 1 -n 1
        539 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-lpd --detach --pidfile -vSYSLOG:INFO
        540 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-lpd --detach --pidfile -vSYSLOG:INFO
        541 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmtmd --detach --pidfile
        542 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO
        543 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mstpd --detach --pidfile -vSYSLOG:INFO
        544 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mstpd --detach --pidfile -vSYSLOG:INFO
        545 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % poe-hald --detach --pidfile -vSYSLOG:INFO
        546 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        548 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmdd --detach --pidfile -vSYSLOG:INFO
        549 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-profiled --detach --pidfile -vSYSLOG:INFO
        554 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % keychaind --pidfile -vSYSLOG:INFO
        556 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO
        558 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-debugd --pidfile -vSYSLOG:INFO
        559 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO
        560 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO
        561 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO
       6706 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       6707 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       6710 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
        573 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % dhcp-options-arbd --pidfile -vSYSLOG:INFO
        574 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops_appsdnsclient --pidfile -vSYSLOG:INFO
        575 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsavd --pidfile -vSYSLOG:INFO
        576 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % l2mac-mgrd --pidfile -vSYSLOG:INFO
        577 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % l3-resmgrd --pidfile -vSYSLOG:INFO
       6722 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bannerd --pidfile
        579 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ndmd --pidfile -vSYSLOG:INFO
        580 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pbrd --pidfile -vSYSLOG:INFO
        581 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % portd --pidfile -vSYSLOG:INFO
        582 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % rbacd --pidfile -vSYSLOG:INFO
        587 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ssh-utild --pidfile -vSYSLOG:INFO
       6734 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ztpd --detach --pidfile -vSYSLOG:INFO
        591 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
        593 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
        594 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
       6739 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
        596 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pimd --detach --pidfile -vSYSLOG:INFO
        597 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % lacpd --detach --pidfile -vSYSLOG:INFO [protocol]
        598 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % lacpd --detach --pidfile -vSYSLOG:INFO [ovsdb]
        599 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % lacpd --detach --pidfile -vSYSLOG:INFO [rx_pdu]
        600 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % lacpd --detach --pidfile -vSYSLOG:INFO [ovsdb_wt]
        601 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-pvstd --detach --pidfile -vSYSLOG:INFO
        602 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-pvstd --detach --pidfile -vSYSLOG:INFO
        603 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-pvstd --detach --pidfile -vSYSLOG:INFO
       6748 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
        605 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-rdiscd --detach --pidfile -vSYSLOG:INFO
        606 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-rdiscd --detach --pidfile -vSYSLOG:INFO
        607 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-rdiscd --detach --pidfile -vSYSLOG:INFO
       4521 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsla-sourced --pidfile -vSYSLOG:INFO
        613 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmtmd --detach --pidfile [USB_WATCH]
        615 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-profiled --detach --pidfile -vSYSLOG:INFO [Profiled-consum]
        616 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-profiled --detach --pidfile -vSYSLOG:INFO [Profiled-ovsdb]
        617 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-profiled --detach --pidfile -vSYSLOG:INFO [Profiled-unixct]
        619 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-msdpd --detach --pidfile -vSYSLOG:INFO
        620 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO
        621 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vrrpd --detach --pidfile -vSYSLOG:INFO
        622 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % nginx: master process /usr/sbin/nginx -g pid /var/run/nginx/nginx.pid;
        623 be/4 www-data    0.00 B/s    0.00 B/s  0.00 %  0.00 % nginx: worker process
        624 be/4 www-data    0.00 B/s    0.00 B/s  0.00 %  0.00 % nginx: worker process
        626 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mtmd --detach --pidfile -vSYSLOG:INFO
        627 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bfdd --detach --pidfile -vSYSLOG:INFO
        628 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        629 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        631 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        632 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO
        633 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        634 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        635 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        636 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        637 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        638 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
        639 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmdd --detach --pidfile -vSYSLOG:INFO [mgmd-consumer]
        640 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmdd --detach --pidfile -vSYSLOG:INFO [mgmd-rx]
        643 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ndmd --pidfile -vSYSLOG:INFO [nd_nbr_rx]
        646 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ndmd --pidfile -vSYSLOG:INFO [nd_nbr_mgr]
        647 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ndmd --pidfile -vSYSLOG:INFO [nd_nbr_tx]
        651 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vrrpd --detach --pidfile -vSYSLOG:INFO [vrrpd_ctrl]
       6800 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % agetty -o -p -- \u --noclear tty1 linux
        657 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO [pspod-consumer]
        659 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vrrpd --detach --pidfile -vSYSLOG:INFO [vrrpd_rx]
        660 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vrrpd --detach --pidfile -vSYSLOG:INFO [vrrpd_timer]
       4777 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       4780 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % macsecd --pidfile -vSYSLOG:INFO
       6830 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       4783 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % radius-srv-trkd --pidfile
       1114 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-sysmond unix:/var/run/openvswitch/db.sock --detach --pidfile -vSYSLOG:INFO
       4791 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ipsecd --pidfile
       4793 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % captiveportald --pidfile -vSYSLOG:INFO
       4797 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % snmpd_wrapper --pidfile -vSYSLOG:INFO
       4799 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tunnelednode --pidfile -vSYSLOG:INFO
       6944 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ntpd -n -c /etc/ntp/ntp_mgrd.conf -k /etc/ntp/ntp_mgrd.keys -l /var/log/ntp.log
       4811 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % captiveportald --pidfile -vSYSLOG:INFO [civetweb-master]
       4813 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % captiveportald --pidfile -vSYSLOG:INFO [civetweb-worker]
       4814 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % captiveportald --pidfile -vSYSLOG:INFO [Multitimer]
       4816 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % sshd -x -m 5 -o PidFile=/var/run/sshd-ns_VRF_1.pid
       6867 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       4829 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-msdpd --detach --pidfile -vSYSLOG:INFO [Msdpd-consumer]
       6878 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % nginx: master process /usr/sbin/nginx -c /etc/inbound_nginx/nginx.conf -g pid /var/run/nginx_VRF_1/nginx.pid;
       6879 be/4 www-data    0.00 B/s    0.00 B/s  0.00 %  0.00 % nginx: worker process
       6880 be/4 www-data    0.00 B/s    0.00 B/s  0.00 %  0.00 % nginx: worker process
        737 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pimd --detach --pidfile -vSYSLOG:INFO [pimd-consumer]
       4845 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % macsecd --pidfile -vSYSLOG:INFO [Timer]
       4852 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-msdpd --detach --pidfile -vSYSLOG:INFO [Msdpd-ovsdb]
       4853 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-msdpd --detach --pidfile -vSYSLOG:INFO [Msdpd-rx]
       4854 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-msdpd --detach --pidfile -vSYSLOG:INFO [Msdpd-unixctl]
       4855 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mcast-msdpd --detach --pidfile -vSYSLOG:INFO [Msdpd-timer]
        776 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % platformhwd --pidfile -vSYSLOG:INFO
       4887 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mtmd --detach --pidfile -vSYSLOG:INFO [mtmd-ovsdb]
       4888 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mtmd --detach --pidfile -vSYSLOG:INFO [mtmd-rx]
       4889 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mtmd --detach --pidfile -vSYSLOG:INFO [mtmd-unixctl]
       4890 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mtmd --detach --pidfile -vSYSLOG:INFO [mtmd-timer]
       4893 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bfdd --detach --pidfile -vSYSLOG:INFO [bfdd-consumer]
       4894 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bfdd --detach --pidfile -vSYSLOG:INFO [bfdd-ovsdb]
       4895 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bfdd --detach --pidfile -vSYSLOG:INFO [bfdd-rx]
       4896 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bfdd --detach --pidfile -vSYSLOG:INFO [bfdd-timer]
       4897 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bfdd --detach --pidfile -vSYSLOG:INFO [bfdd-unixctl]
       6957 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ntpd -n -c /etc/ntp/ntp_mgrd.conf -k /etc/ntp/ntp_mgrd.keys -l /var/log/ntp.log
       4914 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pmd --detach --pidfile -vSYSLOG:INFO [pmd-dom0]
        820 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmdd --detach --pidfile -vSYSLOG:INFO [mgmd-ovsdb]
        822 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmdd --detach --pidfile -vSYSLOG:INFO [mgmd-unixCtl]
        823 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-mgmdd --detach --pidfile -vSYSLOG:INFO [mgmd-timer]
     170815 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/0:0-mm_percpu_wq]
       4930 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tunnelednode --pidfile -vSYSLOG:INFO [tnTmrThread]
       4931 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tunnelednode --pidfile -vSYSLOG:INFO [tnRecvThread]
       4932 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tunnelednode --pidfile -vSYSLOG:INFO [tnHbThread]
        839 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pmd --detach --pidfile -vSYSLOG:INFO
        845 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-repld --detach --pidfile -vSYSLOG:INFO
       4942 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       4943 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       4945 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
        850 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-restd
       6995 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % rsyslogd -n -iNONE [in:imuxsock]
       6996 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % rsyslogd -n -iNONE [in:imklog]
       6997 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % rsyslogd -n -iNONE [rs:main Q:Reg]
        862 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO [vsxd_timer]
        864 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % portd --pidfile -vSYSLOG:INFO [portd_rx]
        865 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % portd --pidfile -vSYSLOG:INFO [portd_tx]
       4989 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-routing --detach --pidfile -vSYSLOG:INFO
       4993 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % radius-srv-trkd --pidfile
       4994 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % radius-srv-trkd --pidfile
       4995 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % radius-srv-trkd --pidfile
       4996 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % radius-srv-trkd --pidfile
       4998 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-routing --detach --pidfile -vSYSLOG:INFO
       5000 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-routing --detach --pidfile -vSYSLOG:INFO
        946 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsavd --pidfile -vSYSLOG:INFO [ipsav_remote_id]
       5052 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ipsecd --pidfile
       5053 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ipsecd --pidfile [hpe-ipsecd-cons]
       5054 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ipsecd --pidfile [hpe-ipsecd-time]
       5055 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ipsecd --pidfile [hpe-ipsecd-unix]
       5056 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-ipsecd --pidfile [hpe-ipsecd-ovsd]
       4941 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
        993 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsavd --pidfile -vSYSLOG:INFO [ipsavd_c]
       5090 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
        997 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsavd --pidfile -vSYSLOG:INFO [ipsavd_t]
        998 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsavd --pidfile -vSYSLOG:INFO [ipsavd_p]
       6993 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % rsyslogd -n -iNONE
       6994 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % rsyslogd -n -iNONE [in:immark]
       5138 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO
       5139 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO
       1058 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-repld --detach --pidfile -vSYSLOG:INFO [repld]
       5157 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
       1063 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO [pspod-ovsdb-lis]
       1064 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pspod --detach --pidfile -vSYSLOG:INFO [pspod-unixctl-l]
       5169 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       1078 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxd --detach --pidfile -vSYSLOG:INFO [vsxd_l3thread]
       1094 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxkad --detach --pidfile -vSYSLOG:INFO
       1101 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxkad --detach --pidfile -vSYSLOG:INFO [vsxkad_timer]
       1113 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-consumer]
       5210 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-policyd
       1116 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-con-slow]
       1117 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-con-slow]
       1120 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-con-write]
       1141 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxkad --detach --pidfile -vSYSLOG:INFO [vsxkad_protocol]
       1143 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxkad --detach --pidfile -vSYSLOG:INFO [vsxkad_ovsdb]
       1144 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-vsxkad --detach --pidfile -vSYSLOG:INFO
       5251 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO
     174616 be/4 admin       0.00 B/s    0.00 B/s  0.00 %  0.00 % sh -c sudo ip netns exec default /usr/sbin/iotop -b -d 1 -n 1 > /tmp/top_utilities_sX2cmn
     174617 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % sudo ip netns exec default /usr/sbin/iotop -b -d 1 -n 1
        538 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-lpd --detach --pidfile -vSYSLOG:INFO
        197 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % crash-handler --pidfile
       5323 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO [acct_stats_req]
       1232 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % bash -c exec /usr/bin/prometheus      --storage.tsdb.retention=9600h      --config.file=/etc/prometheus/prometheus.yml      --web.external-url=http://127.0.0.1:9090/prom      --web.listen-address "127.0.0.1:9090"      --storage.tsdb.path="/etc/prometheus/data"      --query.lookback-delta="6s"      --web.enable-lifecycle      --web.enable-admin-api      --log.level=error 2>&1 | tee /var/log/prom.log
       1233 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       1236 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1238 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % tee /var/log/prom.log
       5338 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
       5339 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % simple_switch -i 64@veth250 --thrift-port 10001 --nanolog ipc:///tmp/bm-log.ipc /usr/share/ovs_p4_plugin/switch_bmv2.json -i 0@m1s1p1 -i 1@m1s1p2 -i 2@m1s1p3 -i 3@m1s1p4 -i 4@m1s1p5 -i 5@m1s1p6 -i 6@m1s1p7 -i 7@m1s1p8 -i 8@m1s1p9
       5350 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO [port-accessd_c]
       5351 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO [port-accessd_d]
       5352 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO [port-accessd_t]
       5353 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO [port-accessd_p]
     173301 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/1:1-mm_percpu_wq]
       1287 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % python /usr/bin/ops_mgmtintfcfg --detach --pidfile -vSYSLOG:INFO
     173331 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/0:2-cgroup_destroy]
       5424 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO
       4545 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % pimd --detach --pidfile -vSYSLOG:INFO [pimd-unixctl]
       5432 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO [age_scan]
       5433 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO [age_timer]
       5440 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO [l2_event]
       6723 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       1429 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       1431 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       1432 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       6724 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ntp-mgrd --pidfile -vSYSLOG:INFO
       1435 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       6726 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
       1476 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1477 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1478 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1479 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1482 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1487 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1504 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       6737 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
       5613 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO [sflow_timer]
     174222 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/1:2-cgroup_destroy]
       1520 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
       5633 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO [intf_count_poll]
       1539 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       6742 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       6743 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       1549 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       1552 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % prometheus --storage.tsdb.retention=9600h --config.file=/etc/prometheus/prometheus.yml --web.external-url=http://127.0.0.1:9090/prom --web.listen-address 127.0.0.1:9090 --storage.tsdb.path=/etc/prometheus/data --query.lookback-delta=6s --web.enable-lifecycle --web.enable-admin-api --log.level=error
       6745 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       6746 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       6747 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
       6738 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
       6763 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
       6764 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       6765 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % vsx-syncd
       6766 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-config ckptpostcfg
       5791 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ops-switchd --no-chdir --pidfile -vSYSLOG:INFO [counters_thread]
       1710 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-tsdbd
        975 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % mtmd --detach --pidfile -vSYSLOG:INFO [mtmd-consumer]
       5860 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % systemd-journal-remote -o /var/lib/nae/alerts/nae_alert.journal -
       3818 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-ovsdb]
       3819 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-lis-write]
       3820 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-rx]
       3821 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-unixctl]
       3822 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % hpe-udldd --detach --pidfile -vSYSLOG:INFO [udldd-timer]
       5089 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % port-accessd --detach --pidfile -vSYSLOG:INFO
        994 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % ipsavd --pidfile -vSYSLOG:INFO [ipsavd_d]
     173903 be/4 admin       0.00 B/s    0.00 B/s  0.00 %  0.00 % systemd --user
     173904 be/4 admin       0.00 B/s    0.00 B/s  0.00 %  0.00 % (sd-pam)
     173909 be/4 admin       0.00 B/s    0.00 B/s  0.00 %  0.00 % -vtysh
     173911 be/4 admin       0.00 B/s    0.00 B/s  0.00 %  0.00 % -vtysh
     173918 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % [kworker/u4:2-events_unbound]





    ------------------------------
    Vincent Giles
    ------------------------------



  • 22.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 06, 2021 08:15 PM
    Did you know?

    You can reuse policy in ACLs or user roles among clients without consuming more TCAM resources?  With MAC Policy Grouping, clients using the same policies only consume the needed resources once rather than each time the same policy is applied.

    Below is a single client using 28 entries:

     
    With 10 clients all using the same policy, the entries consumed is still 28.




    ------------------------------
    Justin Noonan
    ------------------------------



  • 23.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 07, 2021 04:31 AM
    Thanks Justin.

    Does it apply to the CX Simulator as well ?

    ------------------------------
    Vincent Giles
    ------------------------------



  • 24.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 07, 2021 08:15 PM
    Not currently supported on the simulator, but you would see the implementation on hardware.

    Justin

    ------------------------------
    Justin Noonan
    ------------------------------



  • 25.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 21, 2021 09:58 AM
    Helpful tip:

    If you need to clear the startup config on the OVA you can run the command "erase startup-config" and reboot, that will reset the configuration.



    ------------------------------
    Justin Noonan
    ------------------------------



  • 26.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted May 26, 2021 05:24 AM
    Back to the checkpoint feature:

    If you created a checkpoint in the past (like copy running checkpoint reference1) and you want to view the configuration differences
    between the current configuration and the past reference checkpoint, you may find useful the following:
    checkpoint diff running reference1

    Example:
    8325-3A# checkpoint diff running-config ref1
    --- /tmp/running-config1622020405717
    +++ /tmp/ref11622020405728
    @@ -204,7 +204,6 @@
    ipv6 nd ra managed-config-flag
    no ipv6 nd suppress-ra
    ipv6 helper-address unicast fc00:10:80:2::219
    - ip ospf 1 area 0.0.0.0
    ipv6 ospfv3 1 area 0.0.0.0
    interface vlan 105
    vsx-sync active-gateways​

    The line "ip ospf 1 area 0.0.0.0" was not present in the checkpoint ref1 ".
    This can be useful to see if a configuration is not aligned to a previous reference configuration.



    ------------------------------
    Vincent Giles
    ------------------------------



  • 27.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Jun 24, 2021 10:03 AM
    Want to remember or see what commands you may have used in the current connected session use the "show history" command  can be good when trouble shooting  etc :)

    Have a Great Day. Happy Aruba CXing   :)



    ------------------------------
    Kamal Takodra
    If my post was useful accept solution and/or give kudos
    ------------------------------



  • 28.  RE: AOS-CX Tips to try on the Simulator

    EMPLOYEE
    Posted Jul 26, 2021 11:12 AM
    Connect a terminal emulator to the simulator's "serial console" port.

    When the simulator is running under ESXi, you can remotely access the console port by adding a serial port to the VM (Edit settings -> Add other device -> Serial port), selecting "Use network" and entering an appropriate URI, for example, telnet://10.1.2.3:10000. You can telnet to that socket any time after the VM is booted, but aside from the bootloader, you won't see any of the linux startup messages. The login prompt will appear simultaneously with the ESXi browser console.

    Similarly, under VMware Workstation, you can also add a serial port, but use a named pipe for local access instead. For example" \\.\pipe\cx1. In PuTTY, you would enter that named pipe, verbatim, in the "Serial line" field.

    ------------------------------
    Mas Kato
    ------------------------------