- CheckMates
- :
- CheckMates Toolbox
- :
- Scripts
- :
- Show Maestro Transceiver Status - One-liner
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Show Maestro Transceiver Status - One-liner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


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\|---\|Info\|Link\|Loop\|FEC\|Width/d';done|sed -z 's/\nStatus/Status/g'|more;transceiver_verifier -v|sed "s/[Uu]nsupported/"$'\033\[91m&\033\[0m/g'|sed -e "s/^[Ss]upported/"$'\033\[32m&\033\[0m/g';echo
One-liner (Bash) to verify transceivers on SGMs:ifconfig|grep ethsBP|awk '{print $1}'|while read line;do echo $line;ethtool -m $line|more;echo;done
Integrated with our ccc script.
Thanks to @Tom_Kendrick for pointing me into the right direction.
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\|-
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content



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.
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.
;- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


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.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Danny !
Hi!
What do the conclusions mean?:
ETH_AN_FSM_ENABLE
ETH_AN_FSM_GOOD_CHECK?
We have
State: Polling
Physical State: ETH_AN_FSM_GOOD_CHECK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


