Vladimir-NTCT
Results
2
comments of
Vladimir-NTCT
We are NOT using "onlpdump" command. There is a periodic (500 mS) poll which is using ONLP API onlp_sfp_presence_bitmap_get(&sfp_bitmap_new) Call returns 32 bit bitmap word. When QSFP is inserted to...
Found a workaround: Calling function should clear transceivers bitmap each time before polling presence with ONLP library API: ``` sfp_bitmap_new.words[0] = 0; sfp_bitmap_new.words[1] = 0; rc = onlp_sfp_presence_bitmap_get(&sfp_bitmap_new); ``` When...