1

MIB-IIオブジェクトへのSNMPクエリを使用して、ルーターとして機能するデバイス、つまりパケットの転送を識別する方法は?

それらを識別する唯一の方法は、識別子、タイプ、または説明を使用することです。それとも、パケットトラフィックを介して識別できますか?

4

1 に答える 1

1

トラフィックを転送するかどうかだけを知りたい場合は、実際にはそれを伝える MIB オブジェクトがあります。

IP-MIB::ipForwarding
ipForwarding OBJECT-TYPE
  -- FROM       IP-MIB
  SYNTAX        INTEGER {forwarding(1), notForwarding(2)} 
  MAX-ACCESS    read-write
  STATUS        current
  DESCRIPTION   "The indication of whether this entity is acting as an IPv4
            router in respect to the forwarding of datagrams received
            by, but not addressed to, this entity.  IPv4 routers forward
            datagrams.  IPv4 hosts do not (except those source-routed
            via the host).

            When this object is written, the entity should save the
            change to non-volatile storage and restore the object from
            non-volatile storage upon re-initialization of the system.
            Note: a stronger requirement is not used because this object
            was previously defined."
::= { iso(1) org(3) dod(6) internet(1) mgmt(2) mib-2(1) ip(4) 1 }  
于 2012-10-04T14:57:48.923 に答える