@kechik_kechikma
Is “set routing-options autonomous-system XXXX” included in the Juniper settings?
Without this setting, the value of “SNMPv2-SMI::mib-2.15.2.0” would be empty.
Therefore, I think it will be judged as eBGP.
(That was the case in my case)
if ($peer['bgpPeerRemoteAs'] == $device['bgpLocalAs']) {
$peer_type = "<span style='color: #00f;'>iBGP</span>";
} else {
$peer_type = "<span style='color: #0a0;'>eBGP</span>";
}
I don’t know about Observium, so it’s my experience with librenms.
Juniperの設定に「set routing-options autonomous-system XXXX」は含まれていますか?
この設定がないと、「SNMPv2-SMI :: mib-2.15.2.0」の値は空になってしまいました。
なのでeBGPとして判断されたのだと思います
(私の場合は実際にそうなっていました)Observiumについては知らないので、librenmsとJuniperQFXでの経験です。