**tmsh show sys license** | The output displays licensing information for the BIG-IP system, including a list of active modules. |
**tmsh show sys license | grep "Service Check Date"** | Use the tmsh command to see the license check date. |
**tmsh list auth partition** | Displays the used partition names |
**tmsh run cm sniff-updates** | Displays the commit ID updates that occur over the configuration management communications channel. |
**tmsh run cm watch-devicegroup-device** | Displays information about the devices in the device group to which the local device belongs. |
**tmsh run cm watch-sys-device** | Displays information about the local device. |
**tmsh run cm watch-trafficgroup-device** | Displays information about the traffic groups associated with devices in a device group. |
**tmsh sys db configsync.timesyncthreshold** | Displays the time threshold for the time difference between devices in the trust domain. If the time difference between devices exceeds the configured threshold value, the BIG-IP system logs an error. |
**tmsh show cm device** | Displays the time difference, in seconds, between the local device and each of the other devices in the trust domain. |
**tmsh show cm traffic-group** | Displays status for all traffic groups on the local device, including the next-active device, the previously-active device, and the reason that an active traffic group is active on its current device. This information is also available with the tmsh cm traffic-group all-properties command. |
**tmsh show cm sync-status** | Displays the current network connection status, either connected or disconnected. |
**tmsh show sys ha-mirror** | Displays the current status of mirrored connections. |
**tmsh show cm failover-status** | In addition to other information, displays log messages when: - The local device first receives a SOD status message on its unicast addresses and a multicast address/interface (if any).
- The local device stops receiving SOD status messages.
- An interface on the local device begins receiving SOD status messages again.
|
**tmctl sod\_tg\_conn\_stat** | Displays SOD messaging statistics for each type of message sent and received. |
**tmctl sod\_tg\_msg\_stat** | Displays the outgoing packets from the SOD daemon to the other devices in the device group. |
**tmsh list net interface media-active vendor vendor-partnum serial module-description** | Show installed SFP modules with their serials. |
**tmsh list net interface all-properties** | Show all installed interfaces with all properties |
**tmsh list ltm virtual recursive one-line | grep "your filter"** | Displays all virtual servers as one-liner, can also be used with the grep filter. |
**tmsh show ltm virtual | egrep "Availability" | awk '{$1=$1;print}' | sort | uniq -c** | Count status of virtual servers.
Example output:
```
116 Availability : available
1 Availability : offline
70 Availability : unknown
```
|
**tmsh show ltm pool | egrep "Availability" | awk '{$1=$1;print}' | sort | uniq -c** | Count status of pools.
Example output:
|
**tmsh list ltm virtual description destination pool profiles** | List Virtual Servers with all the properties. Additional properties can be added, use tab for a full list in interactive tmsh.
|