Downloading the Cast Iron SNMP MIB
Provides information about downloading each MIB module in the Cast Iron SNMP MIB as a separate file.
Use the Web Management Console (WMC) to download the Cast Iron SNMP MIB from an Integration Appliance. For more information about how to use the WMC to download the Cast Iron SNMP MIB, see the management console online help.
The WMC downloads the Cast Iron SNMP MIB as a single text file. This text file is comprised of multiple sections, where each section is a full MIB module. For example, the NetSuite Module is defined in one section and the Salesforce Module is defined in another section.
Note: If your SNMP MIB parser is unable to read a file that contains
multiple MIB modules, separate each section (MIB module) into individual
files. On Linux, you can use the following script to generate a separate
file for each MIB module in the Cast Iron SNMP MIB.
#!/bin/bash
sed -ne 's/DEFINITIONS ::= BEGIN.*//p' castironsys.mib |
while read mib; do
echo $mib
sed -ne "/^$mib/,/^END/p" castironsys.mib > $mib
done