在下面的例子MIB項:RowStatus在一個表中SNMP MIB
--
-- Logging configuration
--
nsLoggingTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsLoggingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of individual logging output destinations, used to control
where various levels of output from the agent should be directed."
::= { nsConfigLogging 1 }
nsLoggingEntry OBJECT-TYPE
SYNTAX NsLoggingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row within the logging table."
INDEX { nsLogLevel, IMPLIED nsLogToken }
::= { nsLoggingTable 1 }
NsLoggingEntry ::= SEQUENCE {
nsLogLevel INTEGER,
nsLogToken DisplayString,
nsLogType INTEGER,
nsLogMaxLevel INTEGER,
nsLogStatus RowStatus
}
這裏RowStatus項是在NsLoggingEntry最後一個,我們可以在NsLoggingEntry把這個RowStatus條目的任意位置(對於如後「 nsLogToken DisplayString「)?
要回答你的問題,我需要明白你爲什麼問它。你問你是否可以將「nsLogStatus RowStatus」條目進一步移動到列表中? – lostriebo
是的..就是這個意圖.. –
我已經添加了一個我相信解決你的問題的答案,但是我仍然不確信我已經給你提供了你正在尋找的信息。如果我的回答沒有回答你的核心問題,你能否詳細介紹一下爲什麼你想移動'nsLogStatus'? – lostriebo