Create a Post
cancel
Showing results for 
Search instead for 
Did you mean: 

Show Maestro Transceiver Status - One-liner

Danny
Champion Champion
Champion

ℹ️ Check Point Maestro - FAQ

One-liner (Bash) to verify transceivers on Maestro HyperScale Orchestrators (MHO):


    echo;echo Collecting transceiver data...;tor_util get_all_ports_optic_enf_st -v|grep is|tr ' ' '\n'|tr -d ,|grep [[:digit:]]|while read port;do echo "--------------- Port: $port ---------------";mlxlink -d $(mst status|grep direct|head -n1|awk '{print $1}') -p $port -m|sed '/Power\|Bias\|Volt\|Temp\|Alarm\|CDR\|Digit\|Wave\|Version\|Att\|Rev\|OUI\|Cable\|-
...;
TO ACCESS CHECKMATES TOOLBOX it's simple and free

Disclaimer: Check Point does not provide maintenance services or technical or customer support for third party content provided on this Site, including in CheckMates Toolbox. See also our Third Party Software Disclaimer.




(1)
2 Replies

Lari_Luoma
Ambassador Ambassador
Ambassador

This is great! Thanks for sharing Danny! I usually use orch_stat -p and show maestro port x optic info to get all that information, but orch_stat -p works only on certain JHF level. Your oneliner should work regardless of the JHF status I believe.

;
TO ACCESS CHECKMATES TOOLBOX it's simple and free


0 Kudos

Danny
Champion Champion
Champion

I'm glad you like it. orch_stat is slower and the output is Check Point version specific.
I usually use the orch_stat -a one-liner from my Maestro MHO Ports Dump - Sorted & Colored tool, but that lacks detailed transceiver stats. So I created the one-liners above.

;
TO ACCESS CHECKMATES TOOLBOX it's simple and free