From 196a7d2af65d84698dbba2525199f64c54fec542 Mon Sep 17 00:00:00 2001 From: Bruno 21 Date: Tue, 13 Mar 2018 08:04:28 +0100 Subject: [PATCH] First commit --- .DS_Store | Bin 0 -> 6148 bytes .project | 11 + _vlc.sh | 78 + album.sh | 8 + arguments.sh | 11 + backup.sh | 64 + bash_notifications.command | 15 + bash_notifications.sh | 20 + ffmpeg-convertMP4.sh | 42 + mail.sh | 17 + monitor.sh | 55 + mounted.sh | 61 + syno/_macbook-snmpwalk.txt | 6676 +++++++++++ syno/_smartctl_hlp.txt | 135 + syno/_syno_snmpwalk.txt | 3461 ++++++ syno/_walk_syno.xml | 20894 +++++++++++++++++++++++++++++++++++ syno/check_snmp_ds414.sh | 424 + syno/cpuinfo | 17 + syno/disk_mac.sh | 204 + syno/diskstats | 56 + syno/filesystems | 28 + syno/mdstat | 11 + syno/meminfo | 33 + syno/partitions | 34 + syno/script.sh | 219 + syno/script2.sh | 155 + syno/smart.sh | 377 + syno/syno_cpu.sh | 33 + syno/test.sh | 18 + syno/tps | 602 + syno/version | 1 + vlc.sh | 76 + 32 files changed, 33836 insertions(+) create mode 100644 .DS_Store create mode 100644 .project create mode 100755 _vlc.sh create mode 100755 album.sh create mode 100755 arguments.sh create mode 100755 backup.sh create mode 100755 bash_notifications.command create mode 100755 bash_notifications.sh create mode 100755 ffmpeg-convertMP4.sh create mode 100755 mail.sh create mode 100755 monitor.sh create mode 100755 mounted.sh create mode 100644 syno/_macbook-snmpwalk.txt create mode 100644 syno/_smartctl_hlp.txt create mode 100644 syno/_syno_snmpwalk.txt create mode 100644 syno/_walk_syno.xml create mode 100755 syno/check_snmp_ds414.sh create mode 100644 syno/cpuinfo create mode 100755 syno/disk_mac.sh create mode 100644 syno/diskstats create mode 100644 syno/filesystems create mode 100644 syno/mdstat create mode 100644 syno/meminfo create mode 100644 syno/partitions create mode 100755 syno/script.sh create mode 100755 syno/script2.sh create mode 100755 syno/smart.sh create mode 100755 syno/syno_cpu.sh create mode 100755 syno/test.sh create mode 100644 syno/tps create mode 100644 syno/version create mode 100755 vlc.sh diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..c4ffdd3892fb6df15571e4cefdf244fc26a1d96e GIT binary patch literal 6148 zcmeHK%}N6?5Kh{vS&G<$V2`tWa5ld#l!@FuM2L8aZL#V*v1bhnmTEBhMyMm~YB z<4lqkOBFnc*cq67lgUg%zFjg2V~p1aZI7`EV@!Y|794245FAHckb?Cfa-1U?ruR`# zMbLj+h$hEhWB|WiiKT4B5~esRY*sdpRg#5q(&_8uxZQz}>&rN4t6^OYl6I=+3Cw`wIKpXG zs^jtA!EQ~ulbRfRp1WU@p1X56nK)u=+dDdK-Hjf{Pm|{t!zza#P|JqJDZGL)+u%dc zPkJi31>ZD&8b?SB5Cg=(5;0(pKv7Yx<5N=WdO)9rf3~tiFFKwJ}F*j(^8P_YrJa%PnUnpF!4t}Y_8TSoR zOAHVL^9&SCw}SQm + + Syno scripts + + + + + + + + diff --git a/_vlc.sh b/_vlc.sh new file mode 100755 index 0000000..7cfe497 --- /dev/null +++ b/_vlc.sh @@ -0,0 +1,78 @@ +#!/bin/bash + +#requiert xmlstarlet (installable depuis brew) et mettre le chemin complet /usr/local/bin/xml sel +bold='' +nobold='' +bgblue='' +bgnormal='' +italic='' +noitalic='' +under='' +nounder='' +# VLC->Préférences->Interface->Tout afficher +# ->Interfaces->Interfaces principales->cocher Réseau +# ->Interfaces->Interfaces principales->Lua->Mot de passe->ajouter un password +VLC_PWD=123 +USER=bruno + +cd /Users/$USER/Documents/GeekTool +curl -o vlcstatus.xml -u :$VLC_PWD -s http://127.0.0.1:8080/requests/status.xml + +TYPE1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 0']/info[@name='Type ']" vlcstatus.xml) +retval1=$? +#echo $retval1 +retval2=1 + +if [ $retval1 != 1 ]; then # si flux0 present + + CURRENT=$(/usr/local/bin/xml sel -t -v "/root/time" vlcstatus.xml) + CURRENT=$(echo - | awk -v "S=$CURRENT" '{printf "%dh:%dm:%ds",S/(60*60),S%(60*60)/60,S%60}') + DUREE=$(/usr/local/bin/xml sel -t -v "/root/length" vlcstatus.xml) + DUREE=$(echo - | awk -v "S=$DUREE" '{printf "%dh:%dm:%ds",S/(60*60),S%(60*60)/60,S%60}') + TITLE=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='title']" vlcstatus.xml) + FILENAME=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='filename']" vlcstatus.xml | sed 's/\..*//') + + CODEC1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 0']/info[@name='Codec ']" vlcstatus.xml) + if [ $TYPE1 == "Audio" ]; then + #artist, album, title, track_number + ARTIST1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='artist']" vlcstatus.xml) + ALBUM1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='album']" vlcstatus.xml) + TITLE1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='title']" vlcstatus.xml) + TRACK_NUMBER1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='track_number']" vlcstatus.xml) + TOTAL_TRACK1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='track_total']" vlcstatus.xml) + fi + + # flux 1 + TYPE2=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 1']/info[@name='Type ']" vlcstatus.xml) + retval2=$? + if [ $retval2 != 1 ]; then # si flux1 present + CODEC2=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 1']/info[@name='Codec ']" vlcstatus.xml) + fi + #echo $retval2 + #Sous-titres Text subtitles with various tags (subt) + +fi + +if [ $retval1 != 1 ]; then + echo "${italic}${under}VLC${nounder}${noitalic}" + echo "${bold}Lecture en cours: $FILENAME ${nobold}($CURRENT)" + if [ $TYPE1 == "Vidéo" ]; then + echo "Codec vidéo: $CODEC1" + elif [ $TYPE1 == "Audio" ]; then + echo "Artiste: $ARTIST1" + echo "Album: $ALBUM1" + echo "Titre: $TITLE1 ($TRACK_NUMBER1/$TOTAL_TRACK1)" + echo "Codec audio: $CODEC1" + fi + if [ $retval2 != 1 ]; then + if [ $TYPE2 == "Audio" ]; then + echo "Codec audio: $CODEC2" + fi + fi + echo "Durée: $DUREE" +else + #echo "${bold}Pas de lecture en cours...${nobold}" + echo " " +fi + +# diff --git a/album.sh b/album.sh new file mode 100755 index 0000000..08a47bb --- /dev/null +++ b/album.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +USER=bruno +SEARCH="Jack White Blunderbuss" +cd /Users/$USER +curl -o album.xml -s http://www.freecovers.net/api/search/Jack+White+blunderbuss + +http://musicbrainz.org/ws/1/track/?artist=%22Jack%20White%22&title=%22blunderbuss%22 \ No newline at end of file diff --git a/arguments.sh b/arguments.sh new file mode 100755 index 0000000..04ed057 --- /dev/null +++ b/arguments.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "Last argument only (works with bash/ksh only): ${@: -1}" +echo "Last argument only (works with bash 3.x+ only): ${!#}" +echo "Last argument only (works with bash 3.x+ only): $BASH_ARGV" +echo "Last argument only (works with bash 3.x+ / ksh only): ${@:$#}" +echo "Last argument only (works with bash 3.x+ only): ${BASH_ARGV[0]}" + +echo -n "Last argument only (portable version): " +for i in $@; do :; done +echo "$i" \ No newline at end of file diff --git a/backup.sh b/backup.sh new file mode 100755 index 0000000..94c4241 --- /dev/null +++ b/backup.sh @@ -0,0 +1,64 @@ +#!/bin/sh + +# Backup de dossiers du NAS vers un disque externe + +# Variables +LOG=/volume1/homes/admin/logs # dossier du fichier .log +JOUR=$(date +"%Y-%m-%d %T") # http://www.cyberciti.biz/faq/linux-unix-formatting-dates-for-display/ +depart=/volume1/ # volume à sauvegarder +arrivee=/volumeUSB2/usbshare/ # volume de sauvegarde +folders="trimultimedia" # liste des dossiers à sauvegarder (séparés par un espace) +success=false + +touch $LOG/backup.log # création du fichier log +echo $JOUR >> $LOG/backup.log + +echo "$JOUR Démarrage du transfert" >> $LOG/backup.log + +for i in $folders; do + origine=$depart$i + destination=$arrivee$i + + if [ -d "$origine" ]; then + + taille=$(du -sk "$origine" | cut -f1) # taille dossier origine + free=$(df -k "$arrivee" | awk '/[0-9]%/{print $(NF-2)}') # place libre sur dest + #echo "$taille $free" >> $LOG/backup.log + + if [ "$free" -gt "$taille" ]; then + + echo "$JOUR Nom de la sauvegarde: $i" >> $LOG/backup.log + + if [ ! -d "$destination" ]; then + echo "$JOUR Le dossier destination n'existe pas! On le crée." >> $LOG/backup.log + mkdir "$destination" + fi + + #rsync -av --delete --exclude-from=/volume1/homes/admin/ListeExclusionRsync $SOURCE1/ $DEST1 + rsync -av --delete --exclude-from=/volume1/homes/admin/ListeExclusionRsync --log-file=$LOG/backup.log $origine/ $destination + + echo "$JOUR Sauvegarde $i terminée" >> $LOG/backup.log + + synodsmnotify @administrators "[backup.sh]" "Sauvegarde $i terminée" + success=true + + else + echo "$JOUR Copie impossible:" >> $LOG/backup.log + echo "$JOUR -taille de la sauvegarde: $taille" >> $LOG/backup.log + echo "$JOUR -place libre: $free" >> $LOG/backup.log + + synodsmnotify @administrators "[backup.sh]" "Sauvegarde $i impossible. Espace disque insuffisant:
-taille de la sauvegarde: $taille ko
-place libre: $free ko" + echo -e "Place libre sur le disque insuffisante" | /opt/bin/nail -s "[NAS] Sauvegarde impossible" bruno@funnymac.com + fi + + fi + +done + +echo "$JOUR Fin du transfert" >> $LOG/backup.log + +if [ "$success" = true ]; then + echo -e "$JOUR Les dossiers ont ete sauvegarde" | /opt/bin/nail -s "[NAS] Sauvegarde reussie" bruno@funnymac.com +fi + +exit diff --git a/bash_notifications.command b/bash_notifications.command new file mode 100755 index 0000000..dcd0039 --- /dev/null +++ b/bash_notifications.command @@ -0,0 +1,15 @@ +#!/bin/bash + +JOUR=$(date +"%Y-%m-%d %T") + +# https://github.com/alloy/terminal-notifier +#terminal-notifier -title 'Mounted' -subtitle 'Info' -message 'Le volume film est déjà monté !' -sound default + +# http://apple.stackexchange.com/questions/57412/how-can-i-trigger-a-notification-center-notification-from-an-applescript-or-shel +#osascript -e 'display notification "Lorem ipsum dolor sit amet" with title "Title" subtitle "subtitle" sound name "Glass"' + +#osascript -e 'display notification "'"$JOUR"'"' #ok + +osascript -e 'display notification "'"$JOUR"' bla" with title "Title"' + +#osascript -e 'tell app "System Events" to display dialog "Last connextion date : '$JOUR'" buttons {"Cancel", "Continue"} cancel button "Cancel" default button "Continue"' \ No newline at end of file diff --git a/bash_notifications.sh b/bash_notifications.sh new file mode 100755 index 0000000..eff55bc --- /dev/null +++ b/bash_notifications.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# notifications + +JOUR=$(date +"%Y-%m-%d %T") +#ICON="/System/Library/CoreServices/Dock.app/Contents/Resources/finder.png" + +# https://github.com/alloy/terminal-notifier +#terminal-notifier -title 'Mounted' -subtitle 'Info' -message 'Le volume film est déjà monté !' -sound default +#terminal-notifier -title 'Mounted' -subtitle 'Info' -message 'Le volume film est déjà monté !' -appIcon $ICON -contentImage $ICON + +# http://apple.stackexchange.com/questions/57412/how-can-i-trigger-a-notification-center-notification-from-an-applescript-or-shel +#osascript -e 'display notification "Lorem ipsum dolor sit amet" with title "Title" subtitle "subtitle" sound name "Glass"' + +#osascript -e 'display notification "'"$JOUR"'"' #ok + +osascript -e 'display notification "'"$JOUR"' bla" with title "Title" subtitle "subtitle" sound name "Glass"' + +#osascript -e 'tell app "System Events" to display dialog "Last connextion date : '$JOUR'" buttons {"Cancel", "Continue"} cancel button "Cancel" default button "Continue"' + diff --git a/ffmpeg-convertMP4.sh b/ffmpeg-convertMP4.sh new file mode 100755 index 0000000..52c46c0 --- /dev/null +++ b/ffmpeg-convertMP4.sh @@ -0,0 +1,42 @@ +#!/bin/sh + +#Conversion de video vers mp4 + +# Variables +LOG=/volume1/homes/admin/logs # dossier du fichier .log +JOUR=$(date +"%Y-%m-%d %T") # http://www.cyberciti.biz/faq/linux-unix-formatting-dates-for-display/ + +touch $LOG/ffmpeg.log # création du fichier log +echo $JOUR >> $LOG/ffmpeg.log + +CONVERT_RUNNING=`ps -ef | grep ffmpeg | grep -v grep`; +if [ "$CONVERT_RUNNING" == "" ] +then + + cd "$1" + for FILE in *; + do + + NAME=$(echo "$FILE" | sed 's/\.[^\.]*$//') + + INPUT_FILE="$1/$FILE" + OUTPUT_FILE=$(echo "$2/$NAME.mp4") + + if [ "$NAME" != "@eaDir" -a ! -f "$OUTPUT_FILE" ]; + then + echo "$JOUR Debut conversion du fichier $NAME.mp4" >> $LOG/ffmpeg.log + + ffmpeg -i "$INPUT_FILE" -acodec libfaac -vcodec mpeg4 -qscale 5 -r 24 -f mp4 "$OUTPUT_FILE" + mv "$INPUT_FILE" "$2/$FILE" + + echo "$JOUR Conversion du fichier $NAME.mp4 terminée" >> $LOG/ffmpeg.log + synodsmnotify @administrators "[ffmpeg-convertMP4.sh]" "Conversion du fichier $NAME terminée" + + fi + done + +else + echo "$JOUR ffmpeg est déjà actif" >> $LOG/ffmpeg.log + synodsmnotify @administrators "[ffmpeg-convertMP4.sh]" "ffmpeg est déjà actif" + +fi diff --git a/mail.sh b/mail.sh new file mode 100755 index 0000000..1497203 --- /dev/null +++ b/mail.sh @@ -0,0 +1,17 @@ +#!/bin/bash +# script to send simple email +# email subject +SUBJECT="Backup" +# Email To ? +EMAIL="bruno@clicclac.info" +# Email text/message +EMAILMESSAGE="emailmessage.txt" +echo "This is an email message test"> $EMAILMESSAGE +echo "This is email text" >>$EMAILMESSAGE +# send an email using /bin/mail +#/usr/bin/mail -s "$SUBJECT" "$EMAIL" < $EMAILMESSAGE +/usr/sbin/sendmail -s "$SUBJECT" "$EMAIL" < $EMAILMESSAGE + +#echo $EMAILMESSAGE | /bin/mail -s “$SUBJECT” “$EMAIL” + + diff --git a/monitor.sh b/monitor.sh new file mode 100755 index 0000000..83abaa5 --- /dev/null +++ b/monitor.sh @@ -0,0 +1,55 @@ +#!/bin/sh +uptime +echokos () { + if [ $1 -ge 1024 ] ; then + echo "$(( $1 / 1024 )) Mo/s" + else + echo "$(( $1 )) Ko/s" + fi +} +total () { +multiplier="0" +number="$1" +while [ "$number" -ge 1024 ] ; do + multiplier=$(($multiplier + 1)) + number=$(($number / 1024)) +done +case "$multiplier" in + 1) + echo "$number Ko" + ;; + 2) + echo "$number Mo" + ;; + 3) + echo "$number Go" + ;; + 4) + echo "$number To" + ;; + *) + echo "$1 o" + ;; +esac +} +R1=$(cat /sys/class/net/eth0/statistics/rx_bytes) +T1=$(cat /sys/class/net/eth0/statistics/tx_bytes) +sleep 5 +R2=$(cat /sys/class/net/eth0/statistics/rx_bytes) +T2=$(cat /sys/class/net/eth0/statistics/tx_bytes) +TBPS=$(($T2 - $T1)) +RBPS=$(($R2 - $R1)) +TKBPS=$(($TBPS / 1024 / 5)) +RKBPS=$(($RBPS / 1024 / 5)) +echo "D/L: $(echokos $RKBPS) ($(total $T2)) • U/L: $(echokos $TKBPS) ($(total $R2))" +echo "" +echo "## CONNEXIONS ACTIVES" +tor=$(netstat -ntp | grep -c tor) +bt=$(netstat -ntp | grep -c transmission) +ftp=$(netstat -nt | grep -c 4275) +afp=$(netstat -ntp | grep -c afpd) +echo "$tor peers TOR" • "$bt peers BT" • "$ftp FTP • $afp AFP" +echo "" +echo "## ACTIVITÉ BITTORRENT" +/usr/local/transmission/bin/transmission-remote -l | grep -v "Idle\|Stopped" +/usr/local/transmission/bin/transmission-remote -st | sed -e '/^TOTAL/,$d' \ No newline at end of file diff --git a/mounted.sh b/mounted.sh new file mode 100755 index 0000000..73b1a6c --- /dev/null +++ b/mounted.sh @@ -0,0 +1,61 @@ +#!/bin/bash + +#Montage des volumes Films, Series, Videos sur Mac mini +# + +FILMSMOUNTPOINT="/Volumes/Films" +SERIESMOUNTPOINT="/Volumes/Series" +VIDEOMOUNTPOINT="/Volumes/Video" +JOUR=$(date +"%Y-%m-%d %T") +#/System/Library/CoreServices/Dock.app/Contents/Resources/finder.png + +if mount | grep "on $VIDEOMOUNTPOINT" > /dev/null; then + echo "Video already mounted" + #exit +else + #echo "not mounted" + + #mount n'ouvre pas de fenêtre + mkdir $VIDEOMOUNTPOINT + #/sbin/mount -t afp 'afp://admin:LZBrtgcA7bRBDj3M@192.168.0.8/Video' $VIDEOMOUNTPOINT + + mount_afp afp://admin:LZBrtgcA7bRBDj3M@192.168.0.8/Video $VIDEOMOUNTPOINT + #monte=$(mount_afp afp://admin:LZBrtgcA7bRBDj3M@192.168.0.8/Video $VIDEOMOUNTPOINT) + retval=$? + if [ $retval = 0 ]; then + #if [ "$monte" = 0 ]; then + osascript -e 'display notification "'"$JOUR"' Le volume Video a été monté" with title "Mounted.sh" subtitle "VIDEOMOUNTPOINT" sound name "Glass"' + fi + retval=3 + #open ouvre une fenêtre + #open afp://admin:LZBrtgcA7bRBDj3M@192.168.0.8/Video + + #liste des partages AFP disponibles + #dns-sd -B _afpovertcp._tcp +fi + +if mount | grep "on $SERIESMOUNTPOINT" > /dev/null; then + echo "Series already mounted" + #exit +else + mkdir $SERIESMOUNTPOINT + mount_afp afp://admin:LZBrtgcA7bRBDj3M@192.168.0.8/Series $SERIESMOUNTPOINT + retval=$? + if [ $retval = 0 ]; then + osascript -e 'display notification "'"$JOUR"' Le volume Series a été monté" with title "Mounted.sh" subtitle "SERIESMOUNTPOINT" sound name "Glass"' + fi + retval=3 +fi + +if mount | grep "on $FILMSMOUNTPOINT" > /dev/null; then + echo "Films already mounted" + #exit +else + mkdir $FILMSMOUNTPOINT + mount_afp afp://admin:LZBrtgcA7bRBDj3M@192.168.0.8/Films $FILMSMOUNTPOINT + retval=$? + if [ $retval = 0 ]; then + osascript -e 'display notification "'"$JOUR"' Le volume Films a été monté" with title "Mounted.sh" subtitle "FILMSMOUNTPOINT" sound name "Glass"' + fi + retval=3 +fi diff --git a/syno/_macbook-snmpwalk.txt b/syno/_macbook-snmpwalk.txt new file mode 100644 index 0000000..b78e5b2 --- /dev/null +++ b/syno/_macbook-snmpwalk.txt @@ -0,0 +1,6676 @@ +SNMPv2-MIB::sysDescr.0 = STRING: Darwin MacBook-Pro.local 13.3.0 Darwin Kernel Version 13.3.0: Tue Jun 3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64 x86_64 +SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.255 +DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (1140931) 3:10:09.31 +SNMPv2-MIB::sysContact.0 = STRING: bruno +SNMPv2-MIB::sysName.0 = STRING: MacBook-Pro.local +SNMPv2-MIB::sysLocation.0 = STRING: Macbook +SNMPv2-MIB::sysORLastChange.0 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORID.1 = OID: SNMP-MPD-MIB::snmpMPDMIBObjects.3.1.1 +SNMPv2-MIB::sysORID.2 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance +SNMPv2-MIB::sysORID.3 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance +SNMPv2-MIB::sysORID.4 = OID: SNMPv2-MIB::snmpMIB +SNMPv2-MIB::sysORID.5 = OID: TCP-MIB::tcpMIB +SNMPv2-MIB::sysORID.6 = OID: IP-MIB::ip +SNMPv2-MIB::sysORID.7 = OID: UDP-MIB::udpMIB +SNMPv2-MIB::sysORID.8 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup +SNMPv2-MIB::sysORDescr.1 = STRING: The MIB for Message Processing and Dispatching. +SNMPv2-MIB::sysORDescr.2 = STRING: The MIB for Message Processing and Dispatching. +SNMPv2-MIB::sysORDescr.3 = STRING: The SNMP Management Architecture MIB. +SNMPv2-MIB::sysORDescr.4 = STRING: The MIB module for SNMPv2 entities +SNMPv2-MIB::sysORDescr.5 = STRING: The MIB module for managing TCP implementations +SNMPv2-MIB::sysORDescr.6 = STRING: The MIB module for managing IP and ICMP implementations +SNMPv2-MIB::sysORDescr.7 = STRING: The MIB module for managing UDP implementations +SNMPv2-MIB::sysORDescr.8 = STRING: View-based Access Control Model for SNMP. +SNMPv2-MIB::sysORUpTime.1 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.2 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.3 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.4 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.5 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.6 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.7 = Timeticks: (0) 0:00:00.00 +SNMPv2-MIB::sysORUpTime.8 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifNumber.0 = INTEGER: 8 +IF-MIB::ifIndex.1 = INTEGER: 1 +IF-MIB::ifIndex.2 = INTEGER: 2 +IF-MIB::ifIndex.3 = INTEGER: 3 +IF-MIB::ifIndex.4 = INTEGER: 4 +IF-MIB::ifIndex.5 = INTEGER: 5 +IF-MIB::ifIndex.6 = INTEGER: 6 +IF-MIB::ifIndex.7 = INTEGER: 7 +IF-MIB::ifIndex.8 = INTEGER: 8 +IF-MIB::ifDescr.1 = STRING: lo0 +IF-MIB::ifDescr.2 = STRING: gif0 +IF-MIB::ifDescr.3 = STRING: stf0 +IF-MIB::ifDescr.4 = STRING: en0 +IF-MIB::ifDescr.5 = STRING: en1 +IF-MIB::ifDescr.6 = STRING: en2 +IF-MIB::ifDescr.7 = STRING: bridge0 +IF-MIB::ifDescr.8 = STRING: p2p0 +IF-MIB::ifType.1 = INTEGER: softwareLoopback(24) +IF-MIB::ifType.2 = INTEGER: ieee80212(55) +IF-MIB::ifType.3 = INTEGER: hippiInterface(57) +IF-MIB::ifType.4 = INTEGER: ethernetCsmacd(6) +IF-MIB::ifType.5 = INTEGER: ethernetCsmacd(6) +IF-MIB::ifType.6 = INTEGER: ethernetCsmacd(6) +IF-MIB::ifType.7 = INTEGER: bridge(209) +IF-MIB::ifType.8 = INTEGER: ethernetCsmacd(6) +IF-MIB::ifMtu.1 = INTEGER: 16384 +IF-MIB::ifMtu.2 = INTEGER: 1280 +IF-MIB::ifMtu.3 = INTEGER: 1280 +IF-MIB::ifMtu.4 = INTEGER: 1500 +IF-MIB::ifMtu.5 = INTEGER: 1500 +IF-MIB::ifMtu.6 = INTEGER: 1500 +IF-MIB::ifMtu.7 = INTEGER: 1500 +IF-MIB::ifMtu.8 = INTEGER: 2304 +IF-MIB::ifSpeed.1 = Gauge32: 0 +IF-MIB::ifSpeed.2 = Gauge32: 0 +IF-MIB::ifSpeed.3 = Gauge32: 0 +IF-MIB::ifSpeed.4 = Gauge32: 54000000 +IF-MIB::ifSpeed.5 = Gauge32: 0 +IF-MIB::ifSpeed.6 = Gauge32: 0 +IF-MIB::ifSpeed.7 = Gauge32: 0 +IF-MIB::ifSpeed.8 = Gauge32: 10000000 +IF-MIB::ifPhysAddress.1 = STRING: +IF-MIB::ifPhysAddress.2 = STRING: +IF-MIB::ifPhysAddress.3 = STRING: +IF-MIB::ifPhysAddress.4 = STRING: 0:e8:56:3f:af:58 +IF-MIB::ifPhysAddress.5 = STRING: 0:0:0:72:c8:60 +IF-MIB::ifPhysAddress.6 = STRING: 0:0:0:72:c8:61 +IF-MIB::ifPhysAddress.7 = STRING: 0:e8:56:f3:a2:0 +IF-MIB::ifPhysAddress.8 = STRING: 0:e8:56:3f:af:58 +IF-MIB::ifAdminStatus.1 = INTEGER: up(1) +IF-MIB::ifAdminStatus.2 = INTEGER: down(2) +IF-MIB::ifAdminStatus.3 = INTEGER: down(2) +IF-MIB::ifAdminStatus.4 = INTEGER: up(1) +IF-MIB::ifAdminStatus.5 = INTEGER: up(1) +IF-MIB::ifAdminStatus.6 = INTEGER: up(1) +IF-MIB::ifAdminStatus.7 = INTEGER: up(1) +IF-MIB::ifAdminStatus.8 = INTEGER: up(1) +IF-MIB::ifOperStatus.1 = INTEGER: up(1) +IF-MIB::ifOperStatus.2 = INTEGER: down(2) +IF-MIB::ifOperStatus.3 = INTEGER: down(2) +IF-MIB::ifOperStatus.4 = INTEGER: up(1) +IF-MIB::ifOperStatus.5 = INTEGER: up(1) +IF-MIB::ifOperStatus.6 = INTEGER: up(1) +IF-MIB::ifOperStatus.7 = INTEGER: up(1) +IF-MIB::ifOperStatus.8 = INTEGER: up(1) +IF-MIB::ifLastChange.1 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.2 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.3 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.4 = Timeticks: (896189) 2:29:21.89 +IF-MIB::ifLastChange.5 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.6 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.7 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.8 = Timeticks: (896189) 2:29:21.89 +IF-MIB::ifInOctets.1 = Counter32: 183328986 +IF-MIB::ifInOctets.2 = Counter32: 0 +IF-MIB::ifInOctets.3 = Counter32: 0 +IF-MIB::ifInOctets.4 = Counter32: 286825926 +IF-MIB::ifInOctets.5 = Counter32: 0 +IF-MIB::ifInOctets.6 = Counter32: 0 +IF-MIB::ifInOctets.7 = Counter32: 0 +IF-MIB::ifInOctets.8 = Counter32: 0 +IF-MIB::ifInUcastPkts.1 = Counter32: 2480343 +IF-MIB::ifInUcastPkts.2 = Counter32: 0 +IF-MIB::ifInUcastPkts.3 = Counter32: 0 +IF-MIB::ifInUcastPkts.4 = Counter32: 5799361 +IF-MIB::ifInUcastPkts.5 = Counter32: 0 +IF-MIB::ifInUcastPkts.6 = Counter32: 0 +IF-MIB::ifInUcastPkts.7 = Counter32: 0 +IF-MIB::ifInUcastPkts.8 = Counter32: 0 +IF-MIB::ifInNUcastPkts.1 = Counter32: 0 +IF-MIB::ifInNUcastPkts.2 = Counter32: 0 +IF-MIB::ifInNUcastPkts.3 = Counter32: 0 +IF-MIB::ifInNUcastPkts.4 = Counter32: 0 +IF-MIB::ifInNUcastPkts.5 = Counter32: 0 +IF-MIB::ifInNUcastPkts.6 = Counter32: 0 +IF-MIB::ifInNUcastPkts.7 = Counter32: 0 +IF-MIB::ifInNUcastPkts.8 = Counter32: 0 +IF-MIB::ifInDiscards.1 = Counter32: 0 +IF-MIB::ifInDiscards.2 = Counter32: 0 +IF-MIB::ifInDiscards.3 = Counter32: 0 +IF-MIB::ifInDiscards.4 = Counter32: 0 +IF-MIB::ifInDiscards.5 = Counter32: 0 +IF-MIB::ifInDiscards.6 = Counter32: 0 +IF-MIB::ifInDiscards.7 = Counter32: 0 +IF-MIB::ifInDiscards.8 = Counter32: 0 +IF-MIB::ifInErrors.1 = Counter32: 0 +IF-MIB::ifInErrors.2 = Counter32: 0 +IF-MIB::ifInErrors.3 = Counter32: 0 +IF-MIB::ifInErrors.4 = Counter32: 0 +IF-MIB::ifInErrors.5 = Counter32: 0 +IF-MIB::ifInErrors.6 = Counter32: 0 +IF-MIB::ifInErrors.7 = Counter32: 0 +IF-MIB::ifInErrors.8 = Counter32: 0 +IF-MIB::ifInUnknownProtos.1 = Counter32: 0 +IF-MIB::ifInUnknownProtos.2 = Counter32: 0 +IF-MIB::ifInUnknownProtos.3 = Counter32: 0 +IF-MIB::ifInUnknownProtos.4 = Counter32: 0 +IF-MIB::ifInUnknownProtos.5 = Counter32: 0 +IF-MIB::ifInUnknownProtos.6 = Counter32: 0 +IF-MIB::ifInUnknownProtos.7 = Counter32: 0 +IF-MIB::ifInUnknownProtos.8 = Counter32: 0 +IF-MIB::ifOutOctets.1 = Counter32: 183328986 +IF-MIB::ifOutOctets.2 = Counter32: 0 +IF-MIB::ifOutOctets.3 = Counter32: 0 +IF-MIB::ifOutOctets.4 = Counter32: 560366825 +IF-MIB::ifOutOctets.5 = Counter32: 0 +IF-MIB::ifOutOctets.6 = Counter32: 0 +IF-MIB::ifOutOctets.7 = Counter32: 342 +IF-MIB::ifOutOctets.8 = Counter32: 0 +IF-MIB::ifOutUcastPkts.1 = Counter32: 2282300 +IF-MIB::ifOutUcastPkts.2 = Counter32: 0 +IF-MIB::ifOutUcastPkts.3 = Counter32: 0 +IF-MIB::ifOutUcastPkts.4 = Counter32: 6694538 +IF-MIB::ifOutUcastPkts.5 = Counter32: 0 +IF-MIB::ifOutUcastPkts.6 = Counter32: 0 +IF-MIB::ifOutUcastPkts.7 = Counter32: 1 +IF-MIB::ifOutUcastPkts.8 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.1 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.2 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.3 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.4 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.5 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.6 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.7 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.8 = Counter32: 0 +IF-MIB::ifOutDiscards.1 = Counter32: 0 +IF-MIB::ifOutDiscards.2 = Counter32: 0 +IF-MIB::ifOutDiscards.3 = Counter32: 0 +IF-MIB::ifOutDiscards.4 = Counter32: 0 +IF-MIB::ifOutDiscards.5 = Counter32: 0 +IF-MIB::ifOutDiscards.6 = Counter32: 0 +IF-MIB::ifOutDiscards.7 = Counter32: 0 +IF-MIB::ifOutDiscards.8 = Counter32: 0 +IF-MIB::ifOutErrors.1 = Counter32: 0 +IF-MIB::ifOutErrors.2 = Counter32: 0 +IF-MIB::ifOutErrors.3 = Counter32: 0 +IF-MIB::ifOutErrors.4 = Counter32: 0 +IF-MIB::ifOutErrors.5 = Counter32: 0 +IF-MIB::ifOutErrors.6 = Counter32: 0 +IF-MIB::ifOutErrors.7 = Counter32: 0 +IF-MIB::ifOutErrors.8 = Counter32: 0 +IF-MIB::ifOutQLen.1 = Gauge32: 0 +IF-MIB::ifOutQLen.2 = Gauge32: 0 +IF-MIB::ifOutQLen.3 = Gauge32: 0 +IF-MIB::ifOutQLen.4 = Gauge32: 0 +IF-MIB::ifOutQLen.5 = Gauge32: 0 +IF-MIB::ifOutQLen.6 = Gauge32: 0 +IF-MIB::ifOutQLen.7 = Gauge32: 0 +IF-MIB::ifOutQLen.8 = Gauge32: 0 +IF-MIB::ifSpecific.1 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.2 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.3 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.4 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.5 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.6 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.7 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.8 = OID: SNMPv2-SMI::zeroDotZero +SNMPv2-SMI::mib-2.3.1.1.1.4.1.192.168.1.1 = INTEGER: 4 +SNMPv2-SMI::mib-2.3.1.1.1.4.1.192.168.1.2 = INTEGER: 4 +SNMPv2-SMI::mib-2.3.1.1.1.4.1.192.168.1.3 = INTEGER: 4 +SNMPv2-SMI::mib-2.3.1.1.1.4.1.192.168.1.255 = INTEGER: 4 +SNMPv2-SMI::mib-2.3.1.1.2.4.1.192.168.1.1 = Hex-STRING: 00 26 5A E0 F2 C1 +SNMPv2-SMI::mib-2.3.1.1.2.4.1.192.168.1.2 = Hex-STRING: F0 CB A1 71 48 08 +SNMPv2-SMI::mib-2.3.1.1.2.4.1.192.168.1.3 = Hex-STRING: 40 B3 95 AC 17 85 +SNMPv2-SMI::mib-2.3.1.1.2.4.1.192.168.1.255 = STRING: "" +SNMPv2-SMI::mib-2.3.1.1.3.4.1.192.168.1.1 = IpAddress: 192.168.1.1 +SNMPv2-SMI::mib-2.3.1.1.3.4.1.192.168.1.2 = IpAddress: 192.168.1.2 +SNMPv2-SMI::mib-2.3.1.1.3.4.1.192.168.1.3 = IpAddress: 192.168.1.3 +SNMPv2-SMI::mib-2.3.1.1.3.4.1.192.168.1.255 = IpAddress: 192.168.1.255 +IP-MIB::ipForwarding.0 = INTEGER: notForwarding(2) +IP-MIB::ipDefaultTTL.0 = INTEGER: 64 +IP-MIB::ipInReceives.0 = Counter32: 7909064 +IP-MIB::ipInHdrErrors.0 = Counter32: 0 +IP-MIB::ipInAddrErrors.0 = Counter32: 2 +IP-MIB::ipForwDatagrams.0 = Counter32: 0 +IP-MIB::ipInUnknownProtos.0 = Counter32: 2659 +IP-MIB::ipInDiscards.0 = Counter32: 0 +IP-MIB::ipInDelivers.0 = Counter32: 7880039 +IP-MIB::ipOutRequests.0 = Counter32: 8875609 +IP-MIB::ipOutDiscards.0 = Counter32: 0 +IP-MIB::ipReasmTimeout.0 = INTEGER: 30 seconds +IP-MIB::ipReasmReqds.0 = Counter32: 24 +IP-MIB::ipReasmOKs.0 = Counter32: 11 +IP-MIB::ipReasmFails.0 = Counter32: 0 +IP-MIB::ipFragOKs.0 = Counter32: 24 +IP-MIB::ipFragFails.0 = Counter32: 0 +IP-MIB::ipFragCreates.0 = Counter32: 0 +IP-MIB::ipAdEntAddr.127.0.0.1 = IpAddress: 127.0.0.1 +IP-MIB::ipAdEntAddr.192.168.1.4 = IpAddress: 192.168.1.4 +IP-MIB::ipAdEntIfIndex.127.0.0.1 = INTEGER: 1 +IP-MIB::ipAdEntIfIndex.192.168.1.4 = INTEGER: 4 +IP-MIB::ipAdEntNetMask.127.0.0.1 = IpAddress: 255.0.0.0 +IP-MIB::ipAdEntNetMask.192.168.1.4 = IpAddress: 255.255.255.0 +IP-MIB::ipAdEntBcastAddr.127.0.0.1 = INTEGER: 1 +IP-MIB::ipAdEntBcastAddr.192.168.1.4 = INTEGER: 1 +IP-MIB::ip.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.1.17.72.148.53 = IpAddress: 17.72.148.53 +IP-MIB::ip.21.1.1.17.172.192.201 = IpAddress: 17.172.192.201 +IP-MIB::ip.21.1.1.17.172.232.94 = IpAddress: 17.172.232.94 +IP-MIB::ip.21.1.1.23.23.226.199 = IpAddress: 23.23.226.199 +IP-MIB::ip.21.1.1.54.227.236.160 = IpAddress: 54.227.236.160 +IP-MIB::ip.21.1.1.65.55.162.199 = IpAddress: 65.55.162.199 +IP-MIB::ip.21.1.1.80.12.242.51 = IpAddress: 80.12.242.51 +IP-MIB::ip.21.1.1.80.12.242.60 = IpAddress: 80.12.242.60 +IP-MIB::ip.21.1.1.80.12.242.90 = IpAddress: 80.12.242.90 +IP-MIB::ip.21.1.1.83.194.180.120 = IpAddress: 83.194.180.120 +IP-MIB::ip.21.1.1.83.231.216.140 = IpAddress: 83.231.216.140 +IP-MIB::ip.21.1.1.91.203.75.67 = IpAddress: 91.203.75.67 +IP-MIB::ip.21.1.1.91.203.75.68 = IpAddress: 91.203.75.68 +IP-MIB::ip.21.1.1.91.203.75.70 = IpAddress: 91.203.75.70 +IP-MIB::ip.21.1.1.107.20.246.156 = IpAddress: 107.20.246.156 +IP-MIB::ip.21.1.1.108.160.162.103 = IpAddress: 108.160.162.103 +IP-MIB::ip.21.1.1.127.0.0.0 = IpAddress: 127.0.0.0 +IP-MIB::ip.21.1.1.127.0.0.1 = IpAddress: 127.0.0.1 +IP-MIB::ip.21.1.1.169.254.0.0 = IpAddress: 169.254.0.0 +IP-MIB::ip.21.1.1.192.168.0.8 = IpAddress: 192.168.0.8 +IP-MIB::ip.21.1.1.192.168.1.0 = IpAddress: 192.168.1.0 +IP-MIB::ip.21.1.1.192.168.1.1 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.1.192.168.1.2 = IpAddress: 192.168.1.2 +IP-MIB::ip.21.1.1.192.168.1.3 = IpAddress: 192.168.1.3 +IP-MIB::ip.21.1.1.192.168.1.4 = IpAddress: 192.168.1.4 +IP-MIB::ip.21.1.1.192.168.1.255 = IpAddress: 192.168.1.255 +IP-MIB::ip.21.1.1.193.252.22.66 = IpAddress: 193.252.22.66 +IP-MIB::ip.21.1.1.193.252.22.71 = IpAddress: 193.252.22.71 +IP-MIB::ip.21.1.1.193.252.22.75 = IpAddress: 193.252.22.75 +IP-MIB::ip.21.1.1.193.252.22.88 = IpAddress: 193.252.22.88 +IP-MIB::ip.21.1.1.193.252.22.93 = IpAddress: 193.252.22.93 +IP-MIB::ip.21.1.1.194.12.14.11 = IpAddress: 194.12.14.11 +IP-MIB::ip.21.1.1.195.110.13.1 = IpAddress: 195.110.13.1 +IP-MIB::ip.21.1.1.212.27.48.3 = IpAddress: 212.27.48.3 +IP-MIB::ip.21.1.1.212.227.15.141 = IpAddress: 212.227.15.141 +IP-MIB::ip.21.1.1.212.227.15.157 = IpAddress: 212.227.15.157 +IP-MIB::ip.21.1.1.213.186.33.20 = IpAddress: 213.186.33.20 +IP-MIB::ip.21.1.1.216.146.39.70 = IpAddress: 216.146.39.70 +IP-MIB::ip.21.1.1.217.68.26.107 = IpAddress: 217.68.26.107 +IP-MIB::ip.21.1.1.217.117.159.230 = IpAddress: 217.117.159.230 +IP-MIB::ip.21.1.1.224.0.0.251 = IpAddress: 224.0.0.251 +IP-MIB::ip.21.1.2.0.0.0.0 = INTEGER: 4 +IP-MIB::ip.21.1.2.17.72.148.53 = INTEGER: 4 +IP-MIB::ip.21.1.2.17.172.192.201 = INTEGER: 4 +IP-MIB::ip.21.1.2.17.172.232.94 = INTEGER: 4 +IP-MIB::ip.21.1.2.23.23.226.199 = INTEGER: 4 +IP-MIB::ip.21.1.2.54.227.236.160 = INTEGER: 4 +IP-MIB::ip.21.1.2.65.55.162.199 = INTEGER: 4 +IP-MIB::ip.21.1.2.80.12.242.51 = INTEGER: 4 +IP-MIB::ip.21.1.2.80.12.242.60 = INTEGER: 4 +IP-MIB::ip.21.1.2.80.12.242.90 = INTEGER: 4 +IP-MIB::ip.21.1.2.83.194.180.120 = INTEGER: 4 +IP-MIB::ip.21.1.2.83.231.216.140 = INTEGER: 4 +IP-MIB::ip.21.1.2.91.203.75.67 = INTEGER: 4 +IP-MIB::ip.21.1.2.91.203.75.68 = INTEGER: 4 +IP-MIB::ip.21.1.2.91.203.75.70 = INTEGER: 4 +IP-MIB::ip.21.1.2.107.20.246.156 = INTEGER: 4 +IP-MIB::ip.21.1.2.108.160.162.103 = INTEGER: 4 +IP-MIB::ip.21.1.2.127.0.0.0 = INTEGER: 1 +IP-MIB::ip.21.1.2.127.0.0.1 = INTEGER: 1 +IP-MIB::ip.21.1.2.169.254.0.0 = INTEGER: 4 +IP-MIB::ip.21.1.2.192.168.0.8 = INTEGER: 4 +IP-MIB::ip.21.1.2.192.168.1.0 = INTEGER: 4 +IP-MIB::ip.21.1.2.192.168.1.1 = INTEGER: 4 +IP-MIB::ip.21.1.2.192.168.1.2 = INTEGER: 4 +IP-MIB::ip.21.1.2.192.168.1.3 = INTEGER: 4 +IP-MIB::ip.21.1.2.192.168.1.4 = INTEGER: 1 +IP-MIB::ip.21.1.2.192.168.1.255 = INTEGER: 4 +IP-MIB::ip.21.1.2.193.252.22.66 = INTEGER: 4 +IP-MIB::ip.21.1.2.193.252.22.71 = INTEGER: 4 +IP-MIB::ip.21.1.2.193.252.22.75 = INTEGER: 4 +IP-MIB::ip.21.1.2.193.252.22.88 = INTEGER: 4 +IP-MIB::ip.21.1.2.193.252.22.93 = INTEGER: 4 +IP-MIB::ip.21.1.2.194.12.14.11 = INTEGER: 4 +IP-MIB::ip.21.1.2.195.110.13.1 = INTEGER: 4 +IP-MIB::ip.21.1.2.212.27.48.3 = INTEGER: 4 +IP-MIB::ip.21.1.2.212.227.15.141 = INTEGER: 4 +IP-MIB::ip.21.1.2.212.227.15.157 = INTEGER: 4 +IP-MIB::ip.21.1.2.213.186.33.20 = INTEGER: 4 +IP-MIB::ip.21.1.2.216.146.39.70 = INTEGER: 4 +IP-MIB::ip.21.1.2.217.68.26.107 = INTEGER: 4 +IP-MIB::ip.21.1.2.217.117.159.230 = INTEGER: 4 +IP-MIB::ip.21.1.2.224.0.0.251 = INTEGER: 4 +IP-MIB::ip.21.1.3.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.21.1.3.17.72.148.53 = INTEGER: 1 +IP-MIB::ip.21.1.3.17.172.192.201 = INTEGER: 1 +IP-MIB::ip.21.1.3.17.172.232.94 = INTEGER: 1 +IP-MIB::ip.21.1.3.23.23.226.199 = INTEGER: 1 +IP-MIB::ip.21.1.3.54.227.236.160 = INTEGER: 1 +IP-MIB::ip.21.1.3.65.55.162.199 = INTEGER: 1 +IP-MIB::ip.21.1.3.80.12.242.51 = INTEGER: 1 +IP-MIB::ip.21.1.3.80.12.242.60 = INTEGER: 1 +IP-MIB::ip.21.1.3.80.12.242.90 = INTEGER: 1 +IP-MIB::ip.21.1.3.83.194.180.120 = INTEGER: 1 +IP-MIB::ip.21.1.3.83.231.216.140 = INTEGER: 1 +IP-MIB::ip.21.1.3.91.203.75.67 = INTEGER: 1 +IP-MIB::ip.21.1.3.91.203.75.68 = INTEGER: 1 +IP-MIB::ip.21.1.3.91.203.75.70 = INTEGER: 1 +IP-MIB::ip.21.1.3.107.20.246.156 = INTEGER: 1 +IP-MIB::ip.21.1.3.108.160.162.103 = INTEGER: 1 +IP-MIB::ip.21.1.3.127.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.3.127.0.0.1 = INTEGER: 0 +IP-MIB::ip.21.1.3.169.254.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.3.192.168.0.8 = INTEGER: 1 +IP-MIB::ip.21.1.3.192.168.1.0 = INTEGER: 0 +IP-MIB::ip.21.1.3.192.168.1.1 = INTEGER: 0 +IP-MIB::ip.21.1.3.192.168.1.2 = INTEGER: 0 +IP-MIB::ip.21.1.3.192.168.1.3 = INTEGER: 0 +IP-MIB::ip.21.1.3.192.168.1.4 = INTEGER: 0 +IP-MIB::ip.21.1.3.192.168.1.255 = INTEGER: 0 +IP-MIB::ip.21.1.3.193.252.22.66 = INTEGER: 1 +IP-MIB::ip.21.1.3.193.252.22.71 = INTEGER: 1 +IP-MIB::ip.21.1.3.193.252.22.75 = INTEGER: 1 +IP-MIB::ip.21.1.3.193.252.22.88 = INTEGER: 1 +IP-MIB::ip.21.1.3.193.252.22.93 = INTEGER: 1 +IP-MIB::ip.21.1.3.194.12.14.11 = INTEGER: 1 +IP-MIB::ip.21.1.3.195.110.13.1 = INTEGER: 1 +IP-MIB::ip.21.1.3.212.27.48.3 = INTEGER: 1 +IP-MIB::ip.21.1.3.212.227.15.141 = INTEGER: 1 +IP-MIB::ip.21.1.3.212.227.15.157 = INTEGER: 1 +IP-MIB::ip.21.1.3.213.186.33.20 = INTEGER: 1 +IP-MIB::ip.21.1.3.216.146.39.70 = INTEGER: 1 +IP-MIB::ip.21.1.3.217.68.26.107 = INTEGER: 1 +IP-MIB::ip.21.1.3.217.117.159.230 = INTEGER: 1 +IP-MIB::ip.21.1.3.224.0.0.251 = INTEGER: 1 +IP-MIB::ip.21.1.4.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.4.17.72.148.53 = INTEGER: 0 +IP-MIB::ip.21.1.4.17.172.192.201 = INTEGER: 392491 +IP-MIB::ip.21.1.4.17.172.232.94 = INTEGER: 0 +IP-MIB::ip.21.1.4.23.23.226.199 = INTEGER: 0 +IP-MIB::ip.21.1.4.54.227.236.160 = INTEGER: 0 +IP-MIB::ip.21.1.4.65.55.162.199 = INTEGER: 0 +IP-MIB::ip.21.1.4.80.12.242.51 = INTEGER: 0 +IP-MIB::ip.21.1.4.80.12.242.60 = INTEGER: 0 +IP-MIB::ip.21.1.4.80.12.242.90 = INTEGER: 0 +IP-MIB::ip.21.1.4.83.194.180.120 = INTEGER: 0 +IP-MIB::ip.21.1.4.83.231.216.140 = INTEGER: 197865 +IP-MIB::ip.21.1.4.91.203.75.67 = INTEGER: 0 +IP-MIB::ip.21.1.4.91.203.75.68 = INTEGER: 0 +IP-MIB::ip.21.1.4.91.203.75.70 = INTEGER: 0 +IP-MIB::ip.21.1.4.107.20.246.156 = INTEGER: 0 +IP-MIB::ip.21.1.4.108.160.162.103 = INTEGER: 0 +IP-MIB::ip.21.1.4.127.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.4.127.0.0.1 = INTEGER: 0 +IP-MIB::ip.21.1.4.169.254.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.0.8 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.1.0 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.1.1 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.1.2 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.1.3 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.1.4 = INTEGER: 0 +IP-MIB::ip.21.1.4.192.168.1.255 = INTEGER: 0 +IP-MIB::ip.21.1.4.193.252.22.66 = INTEGER: 0 +IP-MIB::ip.21.1.4.193.252.22.71 = INTEGER: 0 +IP-MIB::ip.21.1.4.193.252.22.75 = INTEGER: 0 +IP-MIB::ip.21.1.4.193.252.22.88 = INTEGER: 0 +IP-MIB::ip.21.1.4.193.252.22.93 = INTEGER: 0 +IP-MIB::ip.21.1.4.194.12.14.11 = INTEGER: 0 +IP-MIB::ip.21.1.4.195.110.13.1 = INTEGER: 0 +IP-MIB::ip.21.1.4.212.27.48.3 = INTEGER: 0 +IP-MIB::ip.21.1.4.212.227.15.141 = INTEGER: 262635 +IP-MIB::ip.21.1.4.212.227.15.157 = INTEGER: 101910 +IP-MIB::ip.21.1.4.213.186.33.20 = INTEGER: 0 +IP-MIB::ip.21.1.4.216.146.39.70 = INTEGER: 0 +IP-MIB::ip.21.1.4.217.68.26.107 = INTEGER: 0 +IP-MIB::ip.21.1.4.217.117.159.230 = INTEGER: 0 +IP-MIB::ip.21.1.4.224.0.0.251 = INTEGER: 0 +IP-MIB::ip.21.1.5.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.5.17.72.148.53 = INTEGER: 0 +IP-MIB::ip.21.1.5.17.172.192.201 = INTEGER: 280054 +IP-MIB::ip.21.1.5.17.172.232.94 = INTEGER: 0 +IP-MIB::ip.21.1.5.23.23.226.199 = INTEGER: 0 +IP-MIB::ip.21.1.5.54.227.236.160 = INTEGER: 0 +IP-MIB::ip.21.1.5.65.55.162.199 = INTEGER: 0 +IP-MIB::ip.21.1.5.80.12.242.51 = INTEGER: 0 +IP-MIB::ip.21.1.5.80.12.242.60 = INTEGER: 0 +IP-MIB::ip.21.1.5.80.12.242.90 = INTEGER: 0 +IP-MIB::ip.21.1.5.83.194.180.120 = INTEGER: 0 +IP-MIB::ip.21.1.5.83.231.216.140 = INTEGER: 85560 +IP-MIB::ip.21.1.5.91.203.75.67 = INTEGER: 0 +IP-MIB::ip.21.1.5.91.203.75.68 = INTEGER: 0 +IP-MIB::ip.21.1.5.91.203.75.70 = INTEGER: 0 +IP-MIB::ip.21.1.5.107.20.246.156 = INTEGER: 0 +IP-MIB::ip.21.1.5.108.160.162.103 = INTEGER: 0 +IP-MIB::ip.21.1.5.127.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.5.127.0.0.1 = INTEGER: 0 +IP-MIB::ip.21.1.5.169.254.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.0.8 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.1.0 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.1.1 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.1.2 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.1.3 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.1.4 = INTEGER: 0 +IP-MIB::ip.21.1.5.192.168.1.255 = INTEGER: 0 +IP-MIB::ip.21.1.5.193.252.22.66 = INTEGER: 0 +IP-MIB::ip.21.1.5.193.252.22.71 = INTEGER: 0 +IP-MIB::ip.21.1.5.193.252.22.75 = INTEGER: 0 +IP-MIB::ip.21.1.5.193.252.22.88 = INTEGER: 0 +IP-MIB::ip.21.1.5.193.252.22.93 = INTEGER: 0 +IP-MIB::ip.21.1.5.194.12.14.11 = INTEGER: 0 +IP-MIB::ip.21.1.5.195.110.13.1 = INTEGER: 0 +IP-MIB::ip.21.1.5.212.27.48.3 = INTEGER: 0 +IP-MIB::ip.21.1.5.212.227.15.141 = INTEGER: 84355 +IP-MIB::ip.21.1.5.212.227.15.157 = INTEGER: 35167 +IP-MIB::ip.21.1.5.213.186.33.20 = INTEGER: 0 +IP-MIB::ip.21.1.5.216.146.39.70 = INTEGER: 0 +IP-MIB::ip.21.1.5.217.68.26.107 = INTEGER: 0 +IP-MIB::ip.21.1.5.217.117.159.230 = INTEGER: 0 +IP-MIB::ip.21.1.5.224.0.0.251 = INTEGER: 0 +IP-MIB::ip.21.1.6.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.6.17.72.148.53 = INTEGER: 0 +IP-MIB::ip.21.1.6.17.172.192.201 = INTEGER: 2976 +IP-MIB::ip.21.1.6.17.172.232.94 = INTEGER: 0 +IP-MIB::ip.21.1.6.23.23.226.199 = INTEGER: 0 +IP-MIB::ip.21.1.6.54.227.236.160 = INTEGER: 0 +IP-MIB::ip.21.1.6.65.55.162.199 = INTEGER: 0 +IP-MIB::ip.21.1.6.80.12.242.51 = INTEGER: 0 +IP-MIB::ip.21.1.6.80.12.242.60 = INTEGER: 0 +IP-MIB::ip.21.1.6.80.12.242.90 = INTEGER: 0 +IP-MIB::ip.21.1.6.83.194.180.120 = INTEGER: 0 +IP-MIB::ip.21.1.6.83.231.216.140 = INTEGER: 275890130 +IP-MIB::ip.21.1.6.91.203.75.67 = INTEGER: 0 +IP-MIB::ip.21.1.6.91.203.75.68 = INTEGER: 0 +IP-MIB::ip.21.1.6.91.203.75.70 = INTEGER: 0 +IP-MIB::ip.21.1.6.107.20.246.156 = INTEGER: 0 +IP-MIB::ip.21.1.6.108.160.162.103 = INTEGER: 0 +IP-MIB::ip.21.1.6.127.0.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.6.127.0.0.1 = INTEGER: 0 +IP-MIB::ip.21.1.6.169.254.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.0.8 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.1.0 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.1.1 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.1.2 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.1.3 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.1.4 = INTEGER: 0 +IP-MIB::ip.21.1.6.192.168.1.255 = INTEGER: 0 +IP-MIB::ip.21.1.6.193.252.22.66 = INTEGER: 0 +IP-MIB::ip.21.1.6.193.252.22.71 = INTEGER: 0 +IP-MIB::ip.21.1.6.193.252.22.75 = INTEGER: 0 +IP-MIB::ip.21.1.6.193.252.22.88 = INTEGER: 0 +IP-MIB::ip.21.1.6.193.252.22.93 = INTEGER: 0 +IP-MIB::ip.21.1.6.194.12.14.11 = INTEGER: 0 +IP-MIB::ip.21.1.6.195.110.13.1 = INTEGER: 0 +IP-MIB::ip.21.1.6.212.27.48.3 = INTEGER: 0 +IP-MIB::ip.21.1.6.212.227.15.141 = INTEGER: 68964429 +IP-MIB::ip.21.1.6.212.227.15.157 = INTEGER: 0 +IP-MIB::ip.21.1.6.213.186.33.20 = INTEGER: 0 +IP-MIB::ip.21.1.6.216.146.39.70 = INTEGER: 0 +IP-MIB::ip.21.1.6.217.68.26.107 = INTEGER: 0 +IP-MIB::ip.21.1.6.217.117.159.230 = INTEGER: 0 +IP-MIB::ip.21.1.6.224.0.0.251 = INTEGER: 0 +IP-MIB::ip.21.1.7.0.0.0.0 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.17.72.148.53 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.17.172.192.201 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.17.172.232.94 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.23.23.226.199 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.54.227.236.160 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.65.55.162.199 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.80.12.242.51 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.80.12.242.60 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.80.12.242.90 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.83.194.180.120 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.83.231.216.140 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.91.203.75.67 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.91.203.75.68 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.91.203.75.70 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.107.20.246.156 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.108.160.162.103 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.127.0.0.0 = IpAddress: 127.0.0.1 +IP-MIB::ip.21.1.7.127.0.0.1 = IpAddress: 127.0.0.1 +IP-MIB::ip.21.1.7.169.254.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.7.192.168.0.8 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.192.168.1.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.7.192.168.1.1 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.7.192.168.1.2 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.7.192.168.1.3 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.7.192.168.1.4 = IpAddress: 127.0.0.1 +IP-MIB::ip.21.1.7.192.168.1.255 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.7.193.252.22.66 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.193.252.22.71 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.193.252.22.75 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.193.252.22.88 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.193.252.22.93 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.194.12.14.11 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.195.110.13.1 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.212.27.48.3 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.212.227.15.141 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.212.227.15.157 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.213.186.33.20 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.216.146.39.70 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.217.68.26.107 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.217.117.159.230 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.7.224.0.0.251 = IpAddress: 192.168.1.1 +IP-MIB::ip.21.1.8.0.0.0.0 = INTEGER: 4 +IP-MIB::ip.21.1.8.17.72.148.53 = INTEGER: 4 +IP-MIB::ip.21.1.8.17.172.192.201 = INTEGER: 4 +IP-MIB::ip.21.1.8.17.172.232.94 = INTEGER: 4 +IP-MIB::ip.21.1.8.23.23.226.199 = INTEGER: 4 +IP-MIB::ip.21.1.8.54.227.236.160 = INTEGER: 4 +IP-MIB::ip.21.1.8.65.55.162.199 = INTEGER: 4 +IP-MIB::ip.21.1.8.80.12.242.51 = INTEGER: 4 +IP-MIB::ip.21.1.8.80.12.242.60 = INTEGER: 4 +IP-MIB::ip.21.1.8.80.12.242.90 = INTEGER: 4 +IP-MIB::ip.21.1.8.83.194.180.120 = INTEGER: 4 +IP-MIB::ip.21.1.8.83.231.216.140 = INTEGER: 4 +IP-MIB::ip.21.1.8.91.203.75.67 = INTEGER: 4 +IP-MIB::ip.21.1.8.91.203.75.68 = INTEGER: 4 +IP-MIB::ip.21.1.8.91.203.75.70 = INTEGER: 4 +IP-MIB::ip.21.1.8.107.20.246.156 = INTEGER: 4 +IP-MIB::ip.21.1.8.108.160.162.103 = INTEGER: 4 +IP-MIB::ip.21.1.8.127.0.0.0 = INTEGER: 3 +IP-MIB::ip.21.1.8.127.0.0.1 = INTEGER: 3 +IP-MIB::ip.21.1.8.169.254.0.0 = INTEGER: 3 +IP-MIB::ip.21.1.8.192.168.0.8 = INTEGER: 4 +IP-MIB::ip.21.1.8.192.168.1.0 = INTEGER: 3 +IP-MIB::ip.21.1.8.192.168.1.1 = INTEGER: 3 +IP-MIB::ip.21.1.8.192.168.1.2 = INTEGER: 3 +IP-MIB::ip.21.1.8.192.168.1.3 = INTEGER: 3 +IP-MIB::ip.21.1.8.192.168.1.4 = INTEGER: 3 +IP-MIB::ip.21.1.8.192.168.1.255 = INTEGER: 3 +IP-MIB::ip.21.1.8.193.252.22.66 = INTEGER: 4 +IP-MIB::ip.21.1.8.193.252.22.71 = INTEGER: 4 +IP-MIB::ip.21.1.8.193.252.22.75 = INTEGER: 4 +IP-MIB::ip.21.1.8.193.252.22.88 = INTEGER: 4 +IP-MIB::ip.21.1.8.193.252.22.93 = INTEGER: 4 +IP-MIB::ip.21.1.8.194.12.14.11 = INTEGER: 4 +IP-MIB::ip.21.1.8.195.110.13.1 = INTEGER: 4 +IP-MIB::ip.21.1.8.212.27.48.3 = INTEGER: 4 +IP-MIB::ip.21.1.8.212.227.15.141 = INTEGER: 4 +IP-MIB::ip.21.1.8.212.227.15.157 = INTEGER: 4 +IP-MIB::ip.21.1.8.213.186.33.20 = INTEGER: 4 +IP-MIB::ip.21.1.8.216.146.39.70 = INTEGER: 4 +IP-MIB::ip.21.1.8.217.68.26.107 = INTEGER: 4 +IP-MIB::ip.21.1.8.217.117.159.230 = INTEGER: 4 +IP-MIB::ip.21.1.8.224.0.0.251 = INTEGER: 4 +IP-MIB::ip.21.1.9.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.9.17.72.148.53 = INTEGER: 2 +IP-MIB::ip.21.1.9.17.172.192.201 = INTEGER: 2 +IP-MIB::ip.21.1.9.17.172.232.94 = INTEGER: 2 +IP-MIB::ip.21.1.9.23.23.226.199 = INTEGER: 2 +IP-MIB::ip.21.1.9.54.227.236.160 = INTEGER: 2 +IP-MIB::ip.21.1.9.65.55.162.199 = INTEGER: 2 +IP-MIB::ip.21.1.9.80.12.242.51 = INTEGER: 2 +IP-MIB::ip.21.1.9.80.12.242.60 = INTEGER: 2 +IP-MIB::ip.21.1.9.80.12.242.90 = INTEGER: 2 +IP-MIB::ip.21.1.9.83.194.180.120 = INTEGER: 2 +IP-MIB::ip.21.1.9.83.231.216.140 = INTEGER: 2 +IP-MIB::ip.21.1.9.91.203.75.67 = INTEGER: 2 +IP-MIB::ip.21.1.9.91.203.75.68 = INTEGER: 2 +IP-MIB::ip.21.1.9.91.203.75.70 = INTEGER: 2 +IP-MIB::ip.21.1.9.107.20.246.156 = INTEGER: 2 +IP-MIB::ip.21.1.9.108.160.162.103 = INTEGER: 2 +IP-MIB::ip.21.1.9.127.0.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.9.127.0.0.1 = INTEGER: 2 +IP-MIB::ip.21.1.9.169.254.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.0.8 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.1.0 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.1.1 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.1.2 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.1.3 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.1.4 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.1.255 = INTEGER: 2 +IP-MIB::ip.21.1.9.193.252.22.66 = INTEGER: 2 +IP-MIB::ip.21.1.9.193.252.22.71 = INTEGER: 2 +IP-MIB::ip.21.1.9.193.252.22.75 = INTEGER: 2 +IP-MIB::ip.21.1.9.193.252.22.88 = INTEGER: 2 +IP-MIB::ip.21.1.9.193.252.22.93 = INTEGER: 2 +IP-MIB::ip.21.1.9.194.12.14.11 = INTEGER: 2 +IP-MIB::ip.21.1.9.195.110.13.1 = INTEGER: 2 +IP-MIB::ip.21.1.9.212.27.48.3 = INTEGER: 2 +IP-MIB::ip.21.1.9.212.227.15.141 = INTEGER: 2 +IP-MIB::ip.21.1.9.212.227.15.157 = INTEGER: 2 +IP-MIB::ip.21.1.9.213.186.33.20 = INTEGER: 2 +IP-MIB::ip.21.1.9.216.146.39.70 = INTEGER: 2 +IP-MIB::ip.21.1.9.217.68.26.107 = INTEGER: 2 +IP-MIB::ip.21.1.9.217.117.159.230 = INTEGER: 2 +IP-MIB::ip.21.1.9.224.0.0.251 = INTEGER: 2 +IP-MIB::ip.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.11.17.72.148.53 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.17.172.192.201 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.17.172.232.94 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.23.23.226.199 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.54.227.236.160 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.65.55.162.199 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.80.12.242.51 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.80.12.242.60 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.80.12.242.90 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.83.194.180.120 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.83.231.216.140 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.91.203.75.67 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.91.203.75.68 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.91.203.75.70 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.107.20.246.156 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.108.160.162.103 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.127.0.0.0 = IpAddress: 255.0.0.0 +IP-MIB::ip.21.1.11.127.0.0.1 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.169.254.0.0 = IpAddress: 124.0.5.4 +IP-MIB::ip.21.1.11.192.168.0.8 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.192.168.1.0 = IpAddress: 128.0.5.4 +IP-MIB::ip.21.1.11.192.168.1.1 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.192.168.1.2 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.192.168.1.3 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.192.168.1.4 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.192.168.1.255 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.193.252.22.66 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.193.252.22.71 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.193.252.22.75 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.193.252.22.88 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.193.252.22.93 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.194.12.14.11 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.195.110.13.1 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.212.27.48.3 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.212.227.15.141 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.212.227.15.157 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.213.186.33.20 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.216.146.39.70 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.217.68.26.107 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.217.117.159.230 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.11.224.0.0.251 = IpAddress: 255.255.255.255 +IP-MIB::ip.21.1.12.0.0.0.0 = INTEGER: 1500 +IP-MIB::ip.21.1.12.17.72.148.53 = INTEGER: 1500 +IP-MIB::ip.21.1.12.17.172.192.201 = INTEGER: 1500 +IP-MIB::ip.21.1.12.17.172.232.94 = INTEGER: 1500 +IP-MIB::ip.21.1.12.23.23.226.199 = INTEGER: 1500 +IP-MIB::ip.21.1.12.54.227.236.160 = INTEGER: 1500 +IP-MIB::ip.21.1.12.65.55.162.199 = INTEGER: 1500 +IP-MIB::ip.21.1.12.80.12.242.51 = INTEGER: 1500 +IP-MIB::ip.21.1.12.80.12.242.60 = INTEGER: 1500 +IP-MIB::ip.21.1.12.80.12.242.90 = INTEGER: 1500 +IP-MIB::ip.21.1.12.83.194.180.120 = INTEGER: 1500 +IP-MIB::ip.21.1.12.83.231.216.140 = INTEGER: 1500 +IP-MIB::ip.21.1.12.91.203.75.67 = INTEGER: 1500 +IP-MIB::ip.21.1.12.91.203.75.68 = INTEGER: 1500 +IP-MIB::ip.21.1.12.91.203.75.70 = INTEGER: 1500 +IP-MIB::ip.21.1.12.107.20.246.156 = INTEGER: 1500 +IP-MIB::ip.21.1.12.108.160.162.103 = INTEGER: 1500 +IP-MIB::ip.21.1.12.127.0.0.0 = INTEGER: 16384 +IP-MIB::ip.21.1.12.127.0.0.1 = INTEGER: 16384 +IP-MIB::ip.21.1.12.169.254.0.0 = INTEGER: 1500 +IP-MIB::ip.21.1.12.192.168.0.8 = INTEGER: 1500 +IP-MIB::ip.21.1.12.192.168.1.0 = INTEGER: 1500 +IP-MIB::ip.21.1.12.192.168.1.1 = INTEGER: 1500 +IP-MIB::ip.21.1.12.192.168.1.2 = INTEGER: 1500 +IP-MIB::ip.21.1.12.192.168.1.3 = INTEGER: 1500 +IP-MIB::ip.21.1.12.192.168.1.4 = INTEGER: 16384 +IP-MIB::ip.21.1.12.192.168.1.255 = INTEGER: 1500 +IP-MIB::ip.21.1.12.193.252.22.66 = INTEGER: 1500 +IP-MIB::ip.21.1.12.193.252.22.71 = INTEGER: 1500 +IP-MIB::ip.21.1.12.193.252.22.75 = INTEGER: 1500 +IP-MIB::ip.21.1.12.193.252.22.88 = INTEGER: 1500 +IP-MIB::ip.21.1.12.193.252.22.93 = INTEGER: 1500 +IP-MIB::ip.21.1.12.194.12.14.11 = INTEGER: 1500 +IP-MIB::ip.21.1.12.195.110.13.1 = INTEGER: 1500 +IP-MIB::ip.21.1.12.212.27.48.3 = INTEGER: 1500 +IP-MIB::ip.21.1.12.212.227.15.141 = INTEGER: 1500 +IP-MIB::ip.21.1.12.212.227.15.157 = INTEGER: 1500 +IP-MIB::ip.21.1.12.213.186.33.20 = INTEGER: 1500 +IP-MIB::ip.21.1.12.216.146.39.70 = INTEGER: 1500 +IP-MIB::ip.21.1.12.217.68.26.107 = INTEGER: 1492 +IP-MIB::ip.21.1.12.217.117.159.230 = INTEGER: 1500 +IP-MIB::ip.21.1.12.224.0.0.251 = INTEGER: 1500 +IP-MIB::ip.21.1.13.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.17.72.148.53 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.17.172.192.201 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.17.172.232.94 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.23.23.226.199 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.54.227.236.160 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.65.55.162.199 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.80.12.242.51 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.80.12.242.60 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.80.12.242.90 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.83.194.180.120 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.83.231.216.140 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.91.203.75.67 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.91.203.75.68 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.91.203.75.70 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.107.20.246.156 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.108.160.162.103 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.127.0.0.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.127.0.0.1 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.169.254.0.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.0.8 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.1.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.1.1 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.1.2 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.1.3 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.1.4 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.1.255 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.193.252.22.66 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.193.252.22.71 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.193.252.22.75 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.193.252.22.88 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.193.252.22.93 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.194.12.14.11 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.195.110.13.1 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.212.27.48.3 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.212.227.15.141 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.212.227.15.157 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.213.186.33.20 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.216.146.39.70 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.217.68.26.107 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.217.117.159.230 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.224.0.0.251 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ipNetToMediaIfIndex.4.192.168.1.1 = INTEGER: 4 +IP-MIB::ipNetToMediaIfIndex.4.192.168.1.2 = INTEGER: 4 +IP-MIB::ipNetToMediaIfIndex.4.192.168.1.3 = INTEGER: 4 +IP-MIB::ipNetToMediaIfIndex.4.192.168.1.255 = INTEGER: 4 +IP-MIB::ipNetToMediaPhysAddress.4.192.168.1.1 = STRING: 0:26:5a:e0:f2:c1 +IP-MIB::ipNetToMediaPhysAddress.4.192.168.1.2 = STRING: f0:cb:a1:71:48:8 +IP-MIB::ipNetToMediaPhysAddress.4.192.168.1.3 = STRING: 40:b3:95:ac:17:85 +IP-MIB::ipNetToMediaPhysAddress.4.192.168.1.255 = STRING: ff:ff:ff:ff:ff:ff +IP-MIB::ipNetToMediaNetAddress.4.192.168.1.1 = IpAddress: 192.168.1.1 +IP-MIB::ipNetToMediaNetAddress.4.192.168.1.2 = IpAddress: 192.168.1.2 +IP-MIB::ipNetToMediaNetAddress.4.192.168.1.3 = IpAddress: 192.168.1.3 +IP-MIB::ipNetToMediaNetAddress.4.192.168.1.255 = IpAddress: 192.168.1.255 +IP-MIB::ipNetToMediaType.4.192.168.1.1 = INTEGER: other(1) +IP-MIB::ipNetToMediaType.4.192.168.1.2 = INTEGER: other(1) +IP-MIB::ipNetToMediaType.4.192.168.1.3 = INTEGER: other(1) +IP-MIB::ipNetToMediaType.4.192.168.1.255 = INTEGER: other(1) +IP-MIB::ipRoutingDiscards.0 = Counter32: 0 +IP-MIB::icmpInMsgs.0 = Counter32: 2000 +IP-MIB::icmpInErrors.0 = Counter32: 0 +IP-MIB::icmpInDestUnreachs.0 = Counter32: 2000 +IP-MIB::icmpInTimeExcds.0 = Counter32: 0 +IP-MIB::icmpInParmProbs.0 = Counter32: 0 +IP-MIB::icmpInSrcQuenchs.0 = Counter32: 0 +IP-MIB::icmpInRedirects.0 = Counter32: 0 +IP-MIB::icmpInEchos.0 = Counter32: 0 +IP-MIB::icmpInEchoReps.0 = Counter32: 0 +IP-MIB::icmpInTimestamps.0 = Counter32: 0 +IP-MIB::icmpInTimestampReps.0 = Counter32: 0 +IP-MIB::icmpInAddrMasks.0 = Counter32: 0 +IP-MIB::icmpInAddrMaskReps.0 = Counter32: 0 +IP-MIB::icmpOutMsgs.0 = Counter32: 1206 +IP-MIB::icmpOutErrors.0 = Counter32: 0 +IP-MIB::icmpOutDestUnreachs.0 = Counter32: 1206 +IP-MIB::icmpOutTimeExcds.0 = Counter32: 0 +IP-MIB::icmpOutParmProbs.0 = Counter32: 0 +IP-MIB::icmpOutSrcQuenchs.0 = Counter32: 0 +IP-MIB::icmpOutRedirects.0 = Counter32: 0 +IP-MIB::icmpOutEchos.0 = Counter32: 0 +IP-MIB::icmpOutEchoReps.0 = Counter32: 0 +IP-MIB::icmpOutTimestamps.0 = Counter32: 0 +IP-MIB::icmpOutTimestampReps.0 = Counter32: 0 +IP-MIB::icmpOutAddrMasks.0 = Counter32: 0 +IP-MIB::icmpOutAddrMaskReps.0 = Counter32: 0 +TCP-MIB::tcpRtoAlgorithm.0 = INTEGER: vanj(4) +TCP-MIB::tcpRtoMin.0 = INTEGER: 1000 milliseconds +TCP-MIB::tcpRtoMax.0 = INTEGER: 64000 milliseconds +TCP-MIB::tcpMaxConn.0 = INTEGER: -1 +TCP-MIB::tcpActiveOpens.0 = Counter32: 226216 +TCP-MIB::tcpPassiveOpens.0 = Counter32: 140733 +TCP-MIB::tcpAttemptFails.0 = Counter32: 2330 +TCP-MIB::tcpEstabResets.0 = Counter32: 1211 +TCP-MIB::tcpCurrEstab.0 = Gauge32: 0 +TCP-MIB::tcpInSegs.0 = Counter32: 7671844 +TCP-MIB::tcpOutSegs.0 = Counter32: 8689759 +TCP-MIB::tcpRetransSegs.0 = Counter32: 11139 +TCP-MIB::tcpConnState.0.0.0.0.0.0.0.0.0.0 = INTEGER: closed(1) +TCP-MIB::tcpConnState.0.0.0.0.22.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.80.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.88.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.445.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.548.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.631.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.3306.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.3689.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.5900.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.9631.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.17500.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.62413.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.1.631.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.1.6258.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.1.6263.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.1.8021.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.1.25035.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.1.52698.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.631.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.1024.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.1025.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62558 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62560 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62561 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62564 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62565 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62566 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62567 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62569 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62570 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62571 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62572 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62573 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62575 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62576 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62577 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62579 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62580 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62581 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62582 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62584 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62585 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62588 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62590 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62598 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62600 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62602 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62603 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62604 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62607 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62608 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.1025.127.0.0.1.62610 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.127.0.0.1.4370.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.4380.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.6258.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.6263.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.6263.127.0.0.1.49294 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.8021.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.25035.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.26164.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.26164.127.0.0.1.51974 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.49294.127.0.0.1.6263 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.51974.127.0.0.1.26164 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.62608.127.0.0.1.1025 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.58350.17.172.232.94.5223 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58362.212.227.15.141.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58369.17.172.192.201.993 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.58385.193.252.22.71.143 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.58389.17.172.192.201.993 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58392.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58412.212.227.15.157.143 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.58418.17.172.192.201.993 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58424.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58425.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58426.17.172.192.201.993 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.58433.17.172.192.201.993 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58434.212.227.15.157.143 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.58437.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58442.212.227.15.141.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58460.108.160.162.103.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.58756.194.12.14.11.33467 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.59142.83.231.216.140.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.61541.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.61542.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.61543.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.61550.212.227.15.157.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62071.193.252.22.88.143 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.62079.193.252.22.93.143 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.1.4.62451.83.231.216.140.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62470.217.117.159.230.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62481.195.110.13.1.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62484.195.110.13.1.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62489.107.20.246.156.443 = INTEGER: finWait1(6) +TCP-MIB::tcpConnState.192.168.1.4.62490.54.227.236.160.443 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62503.83.194.180.120.443 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62505.83.194.180.120.443 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62544.192.168.0.8.6690 = INTEGER: synSent(3) +TCP-MIB::tcpConnState.192.168.1.4.62545.83.194.180.120.6690 = INTEGER: synSent(3) +TCP-MIB::tcpConnState.192.168.1.4.62557.217.68.26.107.80 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62559.91.203.75.68.80 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62562.194.12.14.11.33467 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62568.83.231.216.140.80 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62574.217.68.26.107.80 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62583.216.146.39.70.80 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62586.212.27.48.3.110 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62587.80.12.242.51.110 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62592.213.186.33.20.110 = INTEGER: finWait2(7) +TCP-MIB::tcpConnState.192.168.1.4.62595.213.186.33.20.110 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.192.168.1.4.62596.193.252.22.66.143 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62597.83.194.180.120.34768 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62605.83.194.180.120.443 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.1.4.62606.217.68.26.107.80 = INTEGER: timeWait(11) +TCP-MIB::tcpConnState.254.63.175.88.62110.152.253.237.30.60515 = INTEGER: finWait2(7) +TCP-MIB::tcpConnState.254.63.175.88.62114.152.253.237.30.60516 = INTEGER: finWait2(7) +TCP-MIB::tcpConnState.254.63.175.88.62124.152.253.237.30.60520 = INTEGER: finWait2(7) +TCP-MIB::tcpConnLocalAddress.0.0.0.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.80.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.88.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.445.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.548.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.3306.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.3689.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.5900.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.9631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.17500.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.62413.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.1.631.0.0.0.0.0 = IpAddress: 0.0.0.1 +TCP-MIB::tcpConnLocalAddress.0.0.0.1.6258.0.0.0.0.0 = IpAddress: 0.0.0.1 +TCP-MIB::tcpConnLocalAddress.0.0.0.1.6263.0.0.0.0.0 = IpAddress: 0.0.0.1 +TCP-MIB::tcpConnLocalAddress.0.0.0.1.8021.0.0.0.0.0 = IpAddress: 0.0.0.1 +TCP-MIB::tcpConnLocalAddress.0.0.0.1.25035.0.0.0.0.0 = IpAddress: 0.0.0.1 +TCP-MIB::tcpConnLocalAddress.0.0.0.1.52698.0.0.0.0.0 = IpAddress: 0.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.631.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1024.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62558 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62560 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62561 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62564 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62565 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62566 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62567 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62569 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62570 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62571 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62572 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62573 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62575 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62576 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62577 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62579 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62580 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62581 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62582 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62584 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62585 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62588 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62590 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62598 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62600 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62602 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62603 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62604 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62607 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62608 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.1025.127.0.0.1.62610 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.4370.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.4380.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.6258.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.6263.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.6263.127.0.0.1.49294 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.8021.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.25035.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.26164.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.26164.127.0.0.1.51974 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.49294.127.0.0.1.6263 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.51974.127.0.0.1.26164 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.62608.127.0.0.1.1025 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58350.17.172.232.94.5223 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58362.212.227.15.141.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58369.17.172.192.201.993 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58385.193.252.22.71.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58389.17.172.192.201.993 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58392.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58412.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58418.17.172.192.201.993 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58424.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58425.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58426.17.172.192.201.993 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58433.17.172.192.201.993 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58434.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58437.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58442.212.227.15.141.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58460.108.160.162.103.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.58756.194.12.14.11.33467 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.59142.83.231.216.140.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.61541.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.61542.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.61543.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.61550.212.227.15.157.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62071.193.252.22.88.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62079.193.252.22.93.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62451.83.231.216.140.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62470.217.117.159.230.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62481.195.110.13.1.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62484.195.110.13.1.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62489.107.20.246.156.443 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62490.54.227.236.160.443 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62503.83.194.180.120.443 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62505.83.194.180.120.443 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62544.192.168.0.8.6690 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62545.83.194.180.120.6690 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62557.217.68.26.107.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62559.91.203.75.68.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62562.194.12.14.11.33467 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62568.83.231.216.140.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62574.217.68.26.107.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62583.216.146.39.70.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62586.212.27.48.3.110 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62587.80.12.242.51.110 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62592.213.186.33.20.110 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62595.213.186.33.20.110 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62596.193.252.22.66.143 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62597.83.194.180.120.34768 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62605.83.194.180.120.443 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.192.168.1.4.62606.217.68.26.107.80 = IpAddress: 192.168.1.4 +TCP-MIB::tcpConnLocalAddress.254.63.175.88.62110.152.253.237.30.60515 = IpAddress: 254.63.175.88 +TCP-MIB::tcpConnLocalAddress.254.63.175.88.62114.152.253.237.30.60516 = IpAddress: 254.63.175.88 +TCP-MIB::tcpConnLocalAddress.254.63.175.88.62124.152.253.237.30.60520 = IpAddress: 254.63.175.88 +TCP-MIB::tcpConnLocalPort.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnLocalPort.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22 +TCP-MIB::tcpConnLocalPort.0.0.0.0.80.0.0.0.0.0 = INTEGER: 80 +TCP-MIB::tcpConnLocalPort.0.0.0.0.88.0.0.0.0.0 = INTEGER: 88 +TCP-MIB::tcpConnLocalPort.0.0.0.0.445.0.0.0.0.0 = INTEGER: 445 +TCP-MIB::tcpConnLocalPort.0.0.0.0.548.0.0.0.0.0 = INTEGER: 548 +TCP-MIB::tcpConnLocalPort.0.0.0.0.631.0.0.0.0.0 = INTEGER: 631 +TCP-MIB::tcpConnLocalPort.0.0.0.0.3306.0.0.0.0.0 = INTEGER: 3306 +TCP-MIB::tcpConnLocalPort.0.0.0.0.3689.0.0.0.0.0 = INTEGER: 3689 +TCP-MIB::tcpConnLocalPort.0.0.0.0.5900.0.0.0.0.0 = INTEGER: 5900 +TCP-MIB::tcpConnLocalPort.0.0.0.0.9631.0.0.0.0.0 = INTEGER: 9631 +TCP-MIB::tcpConnLocalPort.0.0.0.0.17500.0.0.0.0.0 = INTEGER: 17500 +TCP-MIB::tcpConnLocalPort.0.0.0.0.62413.0.0.0.0.0 = INTEGER: 62413 +TCP-MIB::tcpConnLocalPort.0.0.0.1.631.0.0.0.0.0 = INTEGER: 631 +TCP-MIB::tcpConnLocalPort.0.0.0.1.6258.0.0.0.0.0 = INTEGER: 6258 +TCP-MIB::tcpConnLocalPort.0.0.0.1.6263.0.0.0.0.0 = INTEGER: 6263 +TCP-MIB::tcpConnLocalPort.0.0.0.1.8021.0.0.0.0.0 = INTEGER: 8021 +TCP-MIB::tcpConnLocalPort.0.0.0.1.25035.0.0.0.0.0 = INTEGER: 25035 +TCP-MIB::tcpConnLocalPort.0.0.0.1.52698.0.0.0.0.0 = INTEGER: 52698 +TCP-MIB::tcpConnLocalPort.127.0.0.1.631.0.0.0.0.0 = INTEGER: 631 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 1024 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.0.0.0.0.0 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62558 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62560 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62561 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62564 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62565 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62566 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62567 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62569 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62570 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62571 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62572 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62573 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62575 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62576 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62577 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62579 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62580 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62581 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62582 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62584 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62585 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62588 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62590 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62598 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62600 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62602 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62603 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62604 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62607 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62608 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.1025.127.0.0.1.62610 = INTEGER: 1025 +TCP-MIB::tcpConnLocalPort.127.0.0.1.4370.0.0.0.0.0 = INTEGER: 4370 +TCP-MIB::tcpConnLocalPort.127.0.0.1.4380.0.0.0.0.0 = INTEGER: 4380 +TCP-MIB::tcpConnLocalPort.127.0.0.1.6258.0.0.0.0.0 = INTEGER: 6258 +TCP-MIB::tcpConnLocalPort.127.0.0.1.6263.0.0.0.0.0 = INTEGER: 6263 +TCP-MIB::tcpConnLocalPort.127.0.0.1.6263.127.0.0.1.49294 = INTEGER: 6263 +TCP-MIB::tcpConnLocalPort.127.0.0.1.8021.0.0.0.0.0 = INTEGER: 8021 +TCP-MIB::tcpConnLocalPort.127.0.0.1.25035.0.0.0.0.0 = INTEGER: 25035 +TCP-MIB::tcpConnLocalPort.127.0.0.1.26164.0.0.0.0.0 = INTEGER: 26164 +TCP-MIB::tcpConnLocalPort.127.0.0.1.26164.127.0.0.1.51974 = INTEGER: 26164 +TCP-MIB::tcpConnLocalPort.127.0.0.1.49294.127.0.0.1.6263 = INTEGER: 49294 +TCP-MIB::tcpConnLocalPort.127.0.0.1.51974.127.0.0.1.26164 = INTEGER: 51974 +TCP-MIB::tcpConnLocalPort.127.0.0.1.62608.127.0.0.1.1025 = INTEGER: 62608 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58350.17.172.232.94.5223 = INTEGER: 58350 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58362.212.227.15.141.143 = INTEGER: 58362 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58369.17.172.192.201.993 = INTEGER: 58369 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58385.193.252.22.71.143 = INTEGER: 58385 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58389.17.172.192.201.993 = INTEGER: 58389 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58392.212.227.15.157.143 = INTEGER: 58392 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58412.212.227.15.157.143 = INTEGER: 58412 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58418.17.172.192.201.993 = INTEGER: 58418 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58424.212.227.15.157.143 = INTEGER: 58424 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58425.212.227.15.157.143 = INTEGER: 58425 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58426.17.172.192.201.993 = INTEGER: 58426 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58433.17.172.192.201.993 = INTEGER: 58433 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58434.212.227.15.157.143 = INTEGER: 58434 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58437.212.227.15.157.143 = INTEGER: 58437 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58442.212.227.15.141.143 = INTEGER: 58442 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58460.108.160.162.103.80 = INTEGER: 58460 +TCP-MIB::tcpConnLocalPort.192.168.1.4.58756.194.12.14.11.33467 = INTEGER: 58756 +TCP-MIB::tcpConnLocalPort.192.168.1.4.59142.83.231.216.140.80 = INTEGER: 59142 +TCP-MIB::tcpConnLocalPort.192.168.1.4.61541.212.227.15.157.143 = INTEGER: 61541 +TCP-MIB::tcpConnLocalPort.192.168.1.4.61542.212.227.15.157.143 = INTEGER: 61542 +TCP-MIB::tcpConnLocalPort.192.168.1.4.61543.212.227.15.157.143 = INTEGER: 61543 +TCP-MIB::tcpConnLocalPort.192.168.1.4.61550.212.227.15.157.143 = INTEGER: 61550 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62071.193.252.22.88.143 = INTEGER: 62071 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62079.193.252.22.93.143 = INTEGER: 62079 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62451.83.231.216.140.80 = INTEGER: 62451 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62470.217.117.159.230.80 = INTEGER: 62470 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62481.195.110.13.1.80 = INTEGER: 62481 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62484.195.110.13.1.80 = INTEGER: 62484 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62489.107.20.246.156.443 = INTEGER: 62489 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62490.54.227.236.160.443 = INTEGER: 62490 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62503.83.194.180.120.443 = INTEGER: 62503 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62505.83.194.180.120.443 = INTEGER: 62505 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62544.192.168.0.8.6690 = INTEGER: 62544 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62545.83.194.180.120.6690 = INTEGER: 62545 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62557.217.68.26.107.80 = INTEGER: 62557 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62559.91.203.75.68.80 = INTEGER: 62559 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62562.194.12.14.11.33467 = INTEGER: 62562 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62568.83.231.216.140.80 = INTEGER: 62568 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62574.217.68.26.107.80 = INTEGER: 62574 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62583.216.146.39.70.80 = INTEGER: 62583 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62586.212.27.48.3.110 = INTEGER: 62586 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62587.80.12.242.51.110 = INTEGER: 62587 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62592.213.186.33.20.110 = INTEGER: 62592 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62595.213.186.33.20.110 = INTEGER: 62595 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62596.193.252.22.66.143 = INTEGER: 62596 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62597.83.194.180.120.34768 = INTEGER: 62597 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62605.83.194.180.120.443 = INTEGER: 62605 +TCP-MIB::tcpConnLocalPort.192.168.1.4.62606.217.68.26.107.80 = INTEGER: 62606 +TCP-MIB::tcpConnLocalPort.254.63.175.88.62110.152.253.237.30.60515 = INTEGER: 62110 +TCP-MIB::tcpConnLocalPort.254.63.175.88.62114.152.253.237.30.60516 = INTEGER: 62114 +TCP-MIB::tcpConnLocalPort.254.63.175.88.62124.152.253.237.30.60520 = INTEGER: 62124 +TCP-MIB::tcpConnRemAddress.0.0.0.0.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.80.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.88.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.445.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.548.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.3306.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.3689.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.5900.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.9631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.17500.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.62413.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.1.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.1.6258.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.1.6263.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.1.8021.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.1.25035.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.1.52698.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1024.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62558 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62560 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62561 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62564 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62565 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62566 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62567 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62569 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62570 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62571 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62572 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62573 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62575 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62576 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62577 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62579 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62580 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62581 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62582 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62584 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62585 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62588 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62590 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62598 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62600 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62602 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62603 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62604 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62607 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62608 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.1025.127.0.0.1.62610 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.4370.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.4380.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.6258.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.6263.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.6263.127.0.0.1.49294 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.8021.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.25035.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.26164.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.26164.127.0.0.1.51974 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.49294.127.0.0.1.6263 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.51974.127.0.0.1.26164 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.62608.127.0.0.1.1025 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58350.17.172.232.94.5223 = IpAddress: 17.172.232.94 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58362.212.227.15.141.143 = IpAddress: 212.227.15.141 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58369.17.172.192.201.993 = IpAddress: 17.172.192.201 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58385.193.252.22.71.143 = IpAddress: 193.252.22.71 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58389.17.172.192.201.993 = IpAddress: 17.172.192.201 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58392.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58412.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58418.17.172.192.201.993 = IpAddress: 17.172.192.201 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58424.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58425.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58426.17.172.192.201.993 = IpAddress: 17.172.192.201 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58433.17.172.192.201.993 = IpAddress: 17.172.192.201 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58434.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58437.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58442.212.227.15.141.143 = IpAddress: 212.227.15.141 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58460.108.160.162.103.80 = IpAddress: 108.160.162.103 +TCP-MIB::tcpConnRemAddress.192.168.1.4.58756.194.12.14.11.33467 = IpAddress: 194.12.14.11 +TCP-MIB::tcpConnRemAddress.192.168.1.4.59142.83.231.216.140.80 = IpAddress: 83.231.216.140 +TCP-MIB::tcpConnRemAddress.192.168.1.4.61541.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.61542.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.61543.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.61550.212.227.15.157.143 = IpAddress: 212.227.15.157 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62071.193.252.22.88.143 = IpAddress: 193.252.22.88 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62079.193.252.22.93.143 = IpAddress: 193.252.22.93 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62451.83.231.216.140.80 = IpAddress: 83.231.216.140 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62470.217.117.159.230.80 = IpAddress: 217.117.159.230 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62481.195.110.13.1.80 = IpAddress: 195.110.13.1 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62484.195.110.13.1.80 = IpAddress: 195.110.13.1 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62489.107.20.246.156.443 = IpAddress: 107.20.246.156 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62490.54.227.236.160.443 = IpAddress: 54.227.236.160 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62503.83.194.180.120.443 = IpAddress: 83.194.180.120 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62505.83.194.180.120.443 = IpAddress: 83.194.180.120 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62544.192.168.0.8.6690 = IpAddress: 192.168.0.8 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62545.83.194.180.120.6690 = IpAddress: 83.194.180.120 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62557.217.68.26.107.80 = IpAddress: 217.68.26.107 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62559.91.203.75.68.80 = IpAddress: 91.203.75.68 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62562.194.12.14.11.33467 = IpAddress: 194.12.14.11 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62568.83.231.216.140.80 = IpAddress: 83.231.216.140 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62574.217.68.26.107.80 = IpAddress: 217.68.26.107 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62583.216.146.39.70.80 = IpAddress: 216.146.39.70 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62586.212.27.48.3.110 = IpAddress: 212.27.48.3 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62587.80.12.242.51.110 = IpAddress: 80.12.242.51 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62592.213.186.33.20.110 = IpAddress: 213.186.33.20 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62595.213.186.33.20.110 = IpAddress: 213.186.33.20 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62596.193.252.22.66.143 = IpAddress: 193.252.22.66 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62597.83.194.180.120.34768 = IpAddress: 83.194.180.120 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62605.83.194.180.120.443 = IpAddress: 83.194.180.120 +TCP-MIB::tcpConnRemAddress.192.168.1.4.62606.217.68.26.107.80 = IpAddress: 217.68.26.107 +TCP-MIB::tcpConnRemAddress.254.63.175.88.62110.152.253.237.30.60515 = IpAddress: 152.253.237.30 +TCP-MIB::tcpConnRemAddress.254.63.175.88.62114.152.253.237.30.60516 = IpAddress: 152.253.237.30 +TCP-MIB::tcpConnRemAddress.254.63.175.88.62124.152.253.237.30.60520 = IpAddress: 152.253.237.30 +TCP-MIB::tcpConnRemPort.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.80.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.88.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.445.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.548.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.631.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.3306.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.3689.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.5900.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.9631.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.17500.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.62413.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.1.631.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.1.6258.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.1.6263.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.1.8021.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.1.25035.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.1.52698.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.631.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.1024.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62558 = INTEGER: 62558 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62560 = INTEGER: 62560 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62561 = INTEGER: 62561 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62564 = INTEGER: 62564 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62565 = INTEGER: 62565 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62566 = INTEGER: 62566 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62567 = INTEGER: 62567 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62569 = INTEGER: 62569 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62570 = INTEGER: 62570 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62571 = INTEGER: 62571 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62572 = INTEGER: 62572 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62573 = INTEGER: 62573 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62575 = INTEGER: 62575 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62576 = INTEGER: 62576 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62577 = INTEGER: 62577 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62579 = INTEGER: 62579 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62580 = INTEGER: 62580 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62581 = INTEGER: 62581 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62582 = INTEGER: 62582 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62584 = INTEGER: 62584 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62585 = INTEGER: 62585 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62588 = INTEGER: 62588 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62590 = INTEGER: 62590 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62598 = INTEGER: 62598 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62600 = INTEGER: 62600 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62602 = INTEGER: 62602 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62603 = INTEGER: 62603 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62604 = INTEGER: 62604 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62607 = INTEGER: 62607 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62608 = INTEGER: 62608 +TCP-MIB::tcpConnRemPort.127.0.0.1.1025.127.0.0.1.62610 = INTEGER: 62610 +TCP-MIB::tcpConnRemPort.127.0.0.1.4370.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.4380.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.6258.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.6263.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.6263.127.0.0.1.49294 = INTEGER: 49294 +TCP-MIB::tcpConnRemPort.127.0.0.1.8021.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.25035.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.26164.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.26164.127.0.0.1.51974 = INTEGER: 51974 +TCP-MIB::tcpConnRemPort.127.0.0.1.49294.127.0.0.1.6263 = INTEGER: 6263 +TCP-MIB::tcpConnRemPort.127.0.0.1.51974.127.0.0.1.26164 = INTEGER: 26164 +TCP-MIB::tcpConnRemPort.127.0.0.1.62608.127.0.0.1.1025 = INTEGER: 1025 +TCP-MIB::tcpConnRemPort.192.168.1.4.58350.17.172.232.94.5223 = INTEGER: 5223 +TCP-MIB::tcpConnRemPort.192.168.1.4.58362.212.227.15.141.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58369.17.172.192.201.993 = INTEGER: 993 +TCP-MIB::tcpConnRemPort.192.168.1.4.58385.193.252.22.71.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58389.17.172.192.201.993 = INTEGER: 993 +TCP-MIB::tcpConnRemPort.192.168.1.4.58392.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58412.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58418.17.172.192.201.993 = INTEGER: 993 +TCP-MIB::tcpConnRemPort.192.168.1.4.58424.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58425.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58426.17.172.192.201.993 = INTEGER: 993 +TCP-MIB::tcpConnRemPort.192.168.1.4.58433.17.172.192.201.993 = INTEGER: 993 +TCP-MIB::tcpConnRemPort.192.168.1.4.58434.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58437.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58442.212.227.15.141.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.58460.108.160.162.103.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.58756.194.12.14.11.33467 = INTEGER: 33467 +TCP-MIB::tcpConnRemPort.192.168.1.4.59142.83.231.216.140.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.61541.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.61542.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.61543.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.61550.212.227.15.157.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.62071.193.252.22.88.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.62079.193.252.22.93.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.62451.83.231.216.140.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62470.217.117.159.230.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62481.195.110.13.1.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62484.195.110.13.1.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62489.107.20.246.156.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.1.4.62490.54.227.236.160.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.1.4.62503.83.194.180.120.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.1.4.62505.83.194.180.120.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.1.4.62544.192.168.0.8.6690 = INTEGER: 6690 +TCP-MIB::tcpConnRemPort.192.168.1.4.62545.83.194.180.120.6690 = INTEGER: 6690 +TCP-MIB::tcpConnRemPort.192.168.1.4.62557.217.68.26.107.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62559.91.203.75.68.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62562.194.12.14.11.33467 = INTEGER: 33467 +TCP-MIB::tcpConnRemPort.192.168.1.4.62568.83.231.216.140.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62574.217.68.26.107.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62583.216.146.39.70.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.192.168.1.4.62586.212.27.48.3.110 = INTEGER: 110 +TCP-MIB::tcpConnRemPort.192.168.1.4.62587.80.12.242.51.110 = INTEGER: 110 +TCP-MIB::tcpConnRemPort.192.168.1.4.62592.213.186.33.20.110 = INTEGER: 110 +TCP-MIB::tcpConnRemPort.192.168.1.4.62595.213.186.33.20.110 = INTEGER: 110 +TCP-MIB::tcpConnRemPort.192.168.1.4.62596.193.252.22.66.143 = INTEGER: 143 +TCP-MIB::tcpConnRemPort.192.168.1.4.62597.83.194.180.120.34768 = INTEGER: 34768 +TCP-MIB::tcpConnRemPort.192.168.1.4.62605.83.194.180.120.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.1.4.62606.217.68.26.107.80 = INTEGER: 80 +TCP-MIB::tcpConnRemPort.254.63.175.88.62110.152.253.237.30.60515 = INTEGER: 60515 +TCP-MIB::tcpConnRemPort.254.63.175.88.62114.152.253.237.30.60516 = INTEGER: 60516 +TCP-MIB::tcpConnRemPort.254.63.175.88.62124.152.253.237.30.60520 = INTEGER: 60520 +TCP-MIB::tcpInErrs.0 = Counter32: 83 +TCP-MIB::tcpOutRsts.0 = Counter32: 226953 +UDP-MIB::udpNoPorts.0 = Counter32: 1206 +UDP-MIB::udpInErrors.0 = Counter32: 59402 +UDP-MIB::udpOutDatagrams.0 = Counter32: 237553 +UDP-MIB::udpLocalAddress.0.0.0.0.0 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.88 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.123 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.137 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.138 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.161 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.5353 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.17500 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.50445 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.55006 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.61596 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.62842 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.1.123 = IpAddress: 0.0.0.1 +UDP-MIB::udpLocalAddress.127.0.0.1.123 = IpAddress: 127.0.0.1 +UDP-MIB::udpLocalAddress.127.0.0.1.60762 = IpAddress: 127.0.0.1 +UDP-MIB::udpLocalAddress.192.168.1.4.123 = IpAddress: 192.168.1.4 +UDP-MIB::udpLocalAddress.254.63.175.88.123 = IpAddress: 254.63.175.88 +UDP-MIB::udpLocalPort.0.0.0.0.0 = INTEGER: 0 +UDP-MIB::udpLocalPort.0.0.0.0.88 = INTEGER: 88 +UDP-MIB::udpLocalPort.0.0.0.0.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.0.0.0.0.137 = INTEGER: 137 +UDP-MIB::udpLocalPort.0.0.0.0.138 = INTEGER: 138 +UDP-MIB::udpLocalPort.0.0.0.0.161 = INTEGER: 161 +UDP-MIB::udpLocalPort.0.0.0.0.5353 = INTEGER: 5353 +UDP-MIB::udpLocalPort.0.0.0.0.17500 = INTEGER: 17500 +UDP-MIB::udpLocalPort.0.0.0.0.50445 = INTEGER: 50445 +UDP-MIB::udpLocalPort.0.0.0.0.55006 = INTEGER: 55006 +UDP-MIB::udpLocalPort.0.0.0.0.61596 = INTEGER: 61596 +UDP-MIB::udpLocalPort.0.0.0.0.62842 = INTEGER: 62842 +UDP-MIB::udpLocalPort.0.0.0.1.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.127.0.0.1.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.127.0.0.1.60762 = INTEGER: 60762 +UDP-MIB::udpLocalPort.192.168.1.4.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.254.63.175.88.123 = INTEGER: 123 +SNMPv2-MIB::snmpInPkts.0 = Counter32: 67254 +SNMPv2-MIB::snmpOutPkts.0 = Counter32: 67254 +SNMPv2-MIB::snmpInBadVersions.0 = Counter32: 0 +SNMPv2-MIB::snmpInBadCommunityNames.0 = Counter32: 0 +SNMPv2-MIB::snmpInBadCommunityUses.0 = Counter32: 0 +SNMPv2-MIB::snmpInASNParseErrs.0 = Counter32: 0 +SNMPv2-MIB::snmpInTooBigs.0 = Counter32: 0 +SNMPv2-MIB::snmpInNoSuchNames.0 = Counter32: 0 +SNMPv2-MIB::snmpInBadValues.0 = Counter32: 0 +SNMPv2-MIB::snmpInReadOnlys.0 = Counter32: 0 +SNMPv2-MIB::snmpInGenErrs.0 = Counter32: 0 +SNMPv2-MIB::snmpInTotalReqVars.0 = Counter32: 67264 +SNMPv2-MIB::snmpInTotalSetVars.0 = Counter32: 0 +SNMPv2-MIB::snmpInGetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpInGetNexts.0 = Counter32: 67268 +SNMPv2-MIB::snmpInSetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpInGetResponses.0 = Counter32: 0 +SNMPv2-MIB::snmpInTraps.0 = Counter32: 0 +SNMPv2-MIB::snmpOutTooBigs.0 = Counter32: 0 +SNMPv2-MIB::snmpOutNoSuchNames.0 = Counter32: 0 +SNMPv2-MIB::snmpOutBadValues.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGenErrs.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGetNexts.0 = Counter32: 0 +SNMPv2-MIB::snmpOutSetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGetResponses.0 = Counter32: 67278 +SNMPv2-MIB::snmpOutTraps.0 = Counter32: 0 +SNMPv2-MIB::snmpEnableAuthenTraps.0 = INTEGER: disabled(2) +SNMPv2-MIB::snmpSilentDrops.0 = Counter32: 0 +SNMPv2-MIB::snmpProxyDrops.0 = Counter32: 0 +HOST-RESOURCES-MIB::hrSystemUptime.0 = Timeticks: (20124477) 2 days, 7:54:04.77 +HOST-RESOURCES-MIB::hrSystemDate.0 = STRING: 2014-9-7,14:22:5.0,-2:0 +HOST-RESOURCES-MIB::hrSystemInitialLoadDevice.0 = INTEGER: 1536 +HOST-RESOURCES-MIB::hrSystemNumUsers.0 = Gauge32: 6 +HOST-RESOURCES-MIB::hrSystemMaxProcesses.0 = INTEGER: 0 +HOST-RESOURCES-MIB::hrMemorySize.0 = INTEGER: 16777216 KBytes +HOST-RESOURCES-MIB::hrStorageIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrStorageIndex.10 = INTEGER: 10 +HOST-RESOURCES-MIB::hrStorageIndex.31 = INTEGER: 31 +HOST-RESOURCES-MIB::hrStorageIndex.32 = INTEGER: 32 +HOST-RESOURCES-MIB::hrStorageIndex.33 = INTEGER: 33 +HOST-RESOURCES-MIB::hrStorageIndex.34 = INTEGER: 34 +HOST-RESOURCES-MIB::hrStorageIndex.35 = INTEGER: 35 +HOST-RESOURCES-MIB::hrStorageIndex.36 = INTEGER: 36 +HOST-RESOURCES-MIB::hrStorageIndex.37 = INTEGER: 37 +HOST-RESOURCES-MIB::hrStorageType.1 = OID: HOST-RESOURCES-TYPES::hrStorageRam +HOST-RESOURCES-MIB::hrStorageType.10 = OID: HOST-RESOURCES-TYPES::hrStorageVirtualMemory +HOST-RESOURCES-MIB::hrStorageType.31 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.32 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.33 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.34 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.35 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.36 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.37 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageDescr.1 = STRING: Physical memory +HOST-RESOURCES-MIB::hrStorageDescr.10 = STRING: Swap space +HOST-RESOURCES-MIB::hrStorageDescr.31 = STRING: / +HOST-RESOURCES-MIB::hrStorageDescr.32 = STRING: /dev +HOST-RESOURCES-MIB::hrStorageDescr.33 = STRING: /net +HOST-RESOURCES-MIB::hrStorageDescr.34 = STRING: /home +HOST-RESOURCES-MIB::hrStorageDescr.35 = STRING: /Volumes/BOOTCAMP +HOST-RESOURCES-MIB::hrStorageDescr.36 = STRING: /Volumes/SnmpB-0.8 +HOST-RESOURCES-MIB::hrStorageDescr.37 = STRING: /Volumes/ManageEngine MibBrowser +HOST-RESOURCES-MIB::hrStorageAllocationUnits.1 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.10 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.31 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.32 = INTEGER: 512 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.33 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.34 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.35 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.36 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.37 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageSize.1 = INTEGER: 4194304 +HOST-RESOURCES-MIB::hrStorageSize.10 = INTEGER: 540671 +HOST-RESOURCES-MIB::hrStorageSize.31 = INTEGER: 228197221 +HOST-RESOURCES-MIB::hrStorageSize.32 = INTEGER: 429 +HOST-RESOURCES-MIB::hrStorageSize.33 = INTEGER: 0 +HOST-RESOURCES-MIB::hrStorageSize.34 = INTEGER: 0 +HOST-RESOURCES-MIB::hrStorageSize.35 = INTEGER: 15868927 +HOST-RESOURCES-MIB::hrStorageSize.36 = INTEGER: 1161 +HOST-RESOURCES-MIB::hrStorageSize.37 = INTEGER: 2550 +HOST-RESOURCES-MIB::hrStorageUsed.1 = INTEGER: 3558502 +HOST-RESOURCES-MIB::hrStorageUsed.10 = INTEGER: 1524005 +HOST-RESOURCES-MIB::hrStorageUsed.31 = INTEGER: 163216834 +HOST-RESOURCES-MIB::hrStorageUsed.32 = INTEGER: 429 +HOST-RESOURCES-MIB::hrStorageUsed.33 = INTEGER: 0 +HOST-RESOURCES-MIB::hrStorageUsed.34 = INTEGER: 0 +HOST-RESOURCES-MIB::hrStorageUsed.35 = INTEGER: 13085225 +HOST-RESOURCES-MIB::hrStorageUsed.36 = INTEGER: 891 +HOST-RESOURCES-MIB::hrStorageUsed.37 = INTEGER: 2510 +HOST-RESOURCES-MIB::hrDeviceIndex.768 = INTEGER: 768 +HOST-RESOURCES-MIB::hrDeviceIndex.769 = INTEGER: 769 +HOST-RESOURCES-MIB::hrDeviceIndex.770 = INTEGER: 770 +HOST-RESOURCES-MIB::hrDeviceIndex.771 = INTEGER: 771 +HOST-RESOURCES-MIB::hrDeviceIndex.772 = INTEGER: 772 +HOST-RESOURCES-MIB::hrDeviceIndex.773 = INTEGER: 773 +HOST-RESOURCES-MIB::hrDeviceIndex.774 = INTEGER: 774 +HOST-RESOURCES-MIB::hrDeviceIndex.775 = INTEGER: 775 +HOST-RESOURCES-MIB::hrDeviceIndex.1025 = INTEGER: 1025 +HOST-RESOURCES-MIB::hrDeviceIndex.1026 = INTEGER: 1026 +HOST-RESOURCES-MIB::hrDeviceIndex.1027 = INTEGER: 1027 +HOST-RESOURCES-MIB::hrDeviceIndex.1028 = INTEGER: 1028 +HOST-RESOURCES-MIB::hrDeviceIndex.1029 = INTEGER: 1029 +HOST-RESOURCES-MIB::hrDeviceIndex.1030 = INTEGER: 1030 +HOST-RESOURCES-MIB::hrDeviceIndex.1031 = INTEGER: 1031 +HOST-RESOURCES-MIB::hrDeviceIndex.1032 = INTEGER: 1032 +HOST-RESOURCES-MIB::hrDeviceIndex.1536 = INTEGER: 1536 +HOST-RESOURCES-MIB::hrDeviceIndex.1543 = INTEGER: 1543 +HOST-RESOURCES-MIB::hrDeviceIndex.1544 = INTEGER: 1544 +HOST-RESOURCES-MIB::hrDeviceIndex.3072 = INTEGER: 3072 +HOST-RESOURCES-MIB::hrDeviceType.768 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.769 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.770 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.771 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.772 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.773 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.774 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.775 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.1025 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1026 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1027 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1028 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1029 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1030 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1031 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1032 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1536 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1543 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1544 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.3072 = OID: HOST-RESOURCES-TYPES::hrDeviceCoprocessor +HOST-RESOURCES-MIB::hrDeviceDescr.768 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.769 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.770 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.771 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.772 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.773 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.774 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.775 = STRING: i486 - Intel 80486 +HOST-RESOURCES-MIB::hrDeviceDescr.1025 = STRING: network interface lo0 +HOST-RESOURCES-MIB::hrDeviceDescr.1026 = STRING: network interface gif0 +HOST-RESOURCES-MIB::hrDeviceDescr.1027 = STRING: network interface stf0 +HOST-RESOURCES-MIB::hrDeviceDescr.1028 = STRING: network interface en0 +HOST-RESOURCES-MIB::hrDeviceDescr.1029 = STRING: network interface en1 +HOST-RESOURCES-MIB::hrDeviceDescr.1030 = STRING: network interface en2 +HOST-RESOURCES-MIB::hrDeviceDescr.1031 = STRING: network interface bridge0 +HOST-RESOURCES-MIB::hrDeviceDescr.1032 = STRING: network interface p2p0 +HOST-RESOURCES-MIB::hrDeviceDescr.1536 = STRING: APPLE SSD SM1024F +HOST-RESOURCES-MIB::hrDeviceDescr.1543 = STRING: Disk Image +HOST-RESOURCES-MIB::hrDeviceDescr.1544 = STRING: Disk Image +HOST-RESOURCES-MIB::hrDeviceDescr.3072 = STRING: Guessing that there's a floating point co-processor +HOST-RESOURCES-MIB::hrDeviceID.768 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.769 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.770 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.771 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.772 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.773 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.774 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.775 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1025 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1026 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1027 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1028 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1029 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1030 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1031 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1032 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1536 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1543 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1544 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.3072 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceStatus.768 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.769 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.770 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.771 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.772 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.773 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.774 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.775 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1025 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1026 = INTEGER: down(5) +HOST-RESOURCES-MIB::hrDeviceStatus.1027 = INTEGER: down(5) +HOST-RESOURCES-MIB::hrDeviceStatus.1028 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1029 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1030 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1031 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1032 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceErrors.1025 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1026 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1027 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1028 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1029 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1030 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1031 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1032 = Counter32: 0 +HOST-RESOURCES-MIB::hrProcessorFrwID.768 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.769 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.770 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.771 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.772 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.773 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.774 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.775 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorLoad.768 = INTEGER: 21 +HOST-RESOURCES-MIB::hrProcessorLoad.769 = INTEGER: 2 +HOST-RESOURCES-MIB::hrProcessorLoad.770 = INTEGER: 12 +HOST-RESOURCES-MIB::hrProcessorLoad.771 = INTEGER: 2 +HOST-RESOURCES-MIB::hrProcessorLoad.772 = INTEGER: 12 +HOST-RESOURCES-MIB::hrProcessorLoad.773 = INTEGER: 2 +HOST-RESOURCES-MIB::hrProcessorLoad.774 = INTEGER: 11 +HOST-RESOURCES-MIB::hrProcessorLoad.775 = INTEGER: 2 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1025 = INTEGER: 1 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1026 = INTEGER: 2 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1027 = INTEGER: 3 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1028 = INTEGER: 4 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1029 = INTEGER: 5 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1030 = INTEGER: 6 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1031 = INTEGER: 7 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1032 = INTEGER: 8 +HOST-RESOURCES-MIB::hrDiskStorageAccess.1536 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1543 = INTEGER: readOnly(2) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1544 = INTEGER: readOnly(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1536 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1543 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1544 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1536 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1543 = INTEGER: true(1) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1544 = INTEGER: true(1) +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1536 = INTEGER: 977105060 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1543 = INTEGER: 4681 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1544 = INTEGER: 10240 KBytes +HOST-RESOURCES-MIB::hrPartitionIndex.1536.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1536.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrPartitionIndex.1536.3 = INTEGER: 3 +HOST-RESOURCES-MIB::hrPartitionIndex.1536.4 = INTEGER: 4 +HOST-RESOURCES-MIB::hrPartitionIndex.1543.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1543.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrPartitionIndex.1544.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionLabel.1536.1 = STRING: "EFI System Partition" +HOST-RESOURCES-MIB::hrPartitionLabel.1536.2 = STRING: "Bart" +HOST-RESOURCES-MIB::hrPartitionLabel.1536.3 = STRING: "Recovery HD" +HOST-RESOURCES-MIB::hrPartitionLabel.1536.4 = STRING: "BOOTCAMP" +HOST-RESOURCES-MIB::hrPartitionLabel.1543.1 = STRING: "Apple" +HOST-RESOURCES-MIB::hrPartitionLabel.1543.2 = STRING: "disk image" +HOST-RESOURCES-MIB::hrPartitionLabel.1544.1 = STRING: "disk image" +HOST-RESOURCES-MIB::hrPartitionID.1536.1 = STRING: "0x1000001" +HOST-RESOURCES-MIB::hrPartitionID.1536.2 = STRING: "0x1000002" +HOST-RESOURCES-MIB::hrPartitionID.1536.3 = STRING: "0x1000003" +HOST-RESOURCES-MIB::hrPartitionID.1536.4 = STRING: "0x1000004" +HOST-RESOURCES-MIB::hrPartitionID.1543.1 = STRING: "0x100000d" +HOST-RESOURCES-MIB::hrPartitionID.1543.2 = STRING: "0x100000c" +HOST-RESOURCES-MIB::hrPartitionID.1544.1 = STRING: "0x100000f" +HOST-RESOURCES-MIB::hrPartitionSize.1536.1 = INTEGER: 0 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1536.2 = INTEGER: 912788884 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1536.3 = INTEGER: 0 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1536.4 = INTEGER: 63475708 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1543.1 = INTEGER: 0 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1543.2 = INTEGER: 4644 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1544.1 = INTEGER: 10200 KBytes +HOST-RESOURCES-MIB::hrPartitionFSIndex.1536.1 = INTEGER: 0 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1536.2 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1536.3 = INTEGER: 0 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1536.4 = INTEGER: 5 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1543.1 = INTEGER: 0 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1543.2 = INTEGER: 6 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1544.1 = INTEGER: 7 +HOST-RESOURCES-MIB::hrFSIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrFSIndex.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrFSIndex.3 = INTEGER: 3 +HOST-RESOURCES-MIB::hrFSIndex.4 = INTEGER: 4 +HOST-RESOURCES-MIB::hrFSIndex.5 = INTEGER: 5 +HOST-RESOURCES-MIB::hrFSIndex.6 = INTEGER: 6 +HOST-RESOURCES-MIB::hrFSIndex.7 = INTEGER: 7 +HOST-RESOURCES-MIB::hrFSMountPoint.1 = STRING: "/" +HOST-RESOURCES-MIB::hrFSMountPoint.2 = STRING: "/dev" +HOST-RESOURCES-MIB::hrFSMountPoint.3 = STRING: "/net" +HOST-RESOURCES-MIB::hrFSMountPoint.4 = STRING: "/home" +HOST-RESOURCES-MIB::hrFSMountPoint.5 = STRING: "/Volumes/BOOTCAMP" +HOST-RESOURCES-MIB::hrFSMountPoint.6 = STRING: "/Volumes/SnmpB-0.8" +HOST-RESOURCES-MIB::hrFSMountPoint.7 = STRING: "/Volumes/ManageEngine MibBrowser " +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.1 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.2 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.3 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.4 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.5 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.6 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.7 = "" +HOST-RESOURCES-MIB::hrFSType.1 = OID: HOST-RESOURCES-TYPES::hrFSHFS +HOST-RESOURCES-MIB::hrFSType.2 = OID: HOST-RESOURCES-TYPES::hrFSOther +HOST-RESOURCES-MIB::hrFSType.3 = OID: HOST-RESOURCES-TYPES::hrFSOther +HOST-RESOURCES-MIB::hrFSType.4 = OID: HOST-RESOURCES-TYPES::hrFSOther +HOST-RESOURCES-MIB::hrFSType.5 = OID: HOST-RESOURCES-TYPES::hrFSOther +HOST-RESOURCES-MIB::hrFSType.6 = OID: HOST-RESOURCES-TYPES::hrFSHFS +HOST-RESOURCES-MIB::hrFSType.7 = OID: HOST-RESOURCES-TYPES::hrFSHFS +HOST-RESOURCES-MIB::hrFSAccess.1 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.2 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.3 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.4 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.5 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.6 = INTEGER: readOnly(2) +HOST-RESOURCES-MIB::hrFSAccess.7 = INTEGER: readOnly(2) +HOST-RESOURCES-MIB::hrFSBootable.1 = INTEGER: true(1) +HOST-RESOURCES-MIB::hrFSBootable.2 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.3 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.4 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.5 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.6 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.7 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSStorageIndex.1 = INTEGER: 31 +HOST-RESOURCES-MIB::hrFSStorageIndex.2 = INTEGER: 32 +HOST-RESOURCES-MIB::hrFSStorageIndex.3 = INTEGER: 33 +HOST-RESOURCES-MIB::hrFSStorageIndex.4 = INTEGER: 34 +HOST-RESOURCES-MIB::hrFSStorageIndex.5 = INTEGER: 35 +HOST-RESOURCES-MIB::hrFSStorageIndex.6 = INTEGER: 36 +HOST-RESOURCES-MIB::hrFSStorageIndex.7 = INTEGER: 37 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.1 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.2 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.3 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.4 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.5 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.6 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.7 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.1 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.2 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.3 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.4 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.5 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.6 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.7 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWRunIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunIndex.11 = INTEGER: 11 +HOST-RESOURCES-MIB::hrSWRunIndex.12 = INTEGER: 12 +HOST-RESOURCES-MIB::hrSWRunIndex.13 = INTEGER: 13 +HOST-RESOURCES-MIB::hrSWRunIndex.14 = INTEGER: 14 +HOST-RESOURCES-MIB::hrSWRunIndex.15 = INTEGER: 15 +HOST-RESOURCES-MIB::hrSWRunIndex.16 = INTEGER: 16 +HOST-RESOURCES-MIB::hrSWRunIndex.17 = INTEGER: 17 +HOST-RESOURCES-MIB::hrSWRunIndex.18 = INTEGER: 18 +HOST-RESOURCES-MIB::hrSWRunIndex.19 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWRunIndex.20 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWRunIndex.21 = INTEGER: 21 +HOST-RESOURCES-MIB::hrSWRunIndex.23 = INTEGER: 23 +HOST-RESOURCES-MIB::hrSWRunIndex.25 = INTEGER: 25 +HOST-RESOURCES-MIB::hrSWRunIndex.36 = INTEGER: 36 +HOST-RESOURCES-MIB::hrSWRunIndex.37 = INTEGER: 37 +HOST-RESOURCES-MIB::hrSWRunIndex.147 = INTEGER: 147 +HOST-RESOURCES-MIB::hrSWRunIndex.148 = INTEGER: 148 +HOST-RESOURCES-MIB::hrSWRunIndex.149 = INTEGER: 149 +HOST-RESOURCES-MIB::hrSWRunIndex.150 = INTEGER: 150 +HOST-RESOURCES-MIB::hrSWRunIndex.152 = INTEGER: 152 +HOST-RESOURCES-MIB::hrSWRunIndex.321 = INTEGER: 321 +HOST-RESOURCES-MIB::hrSWRunIndex.322 = INTEGER: 322 +HOST-RESOURCES-MIB::hrSWRunIndex.323 = INTEGER: 323 +HOST-RESOURCES-MIB::hrSWRunIndex.324 = INTEGER: 324 +HOST-RESOURCES-MIB::hrSWRunIndex.327 = INTEGER: 327 +HOST-RESOURCES-MIB::hrSWRunIndex.330 = INTEGER: 330 +HOST-RESOURCES-MIB::hrSWRunIndex.332 = INTEGER: 332 +HOST-RESOURCES-MIB::hrSWRunIndex.337 = INTEGER: 337 +HOST-RESOURCES-MIB::hrSWRunIndex.340 = INTEGER: 340 +HOST-RESOURCES-MIB::hrSWRunIndex.341 = INTEGER: 341 +HOST-RESOURCES-MIB::hrSWRunIndex.342 = INTEGER: 342 +HOST-RESOURCES-MIB::hrSWRunIndex.343 = INTEGER: 343 +HOST-RESOURCES-MIB::hrSWRunIndex.344 = INTEGER: 344 +HOST-RESOURCES-MIB::hrSWRunIndex.345 = INTEGER: 345 +HOST-RESOURCES-MIB::hrSWRunIndex.347 = INTEGER: 347 +HOST-RESOURCES-MIB::hrSWRunIndex.349 = INTEGER: 349 +HOST-RESOURCES-MIB::hrSWRunIndex.352 = INTEGER: 352 +HOST-RESOURCES-MIB::hrSWRunIndex.353 = INTEGER: 353 +HOST-RESOURCES-MIB::hrSWRunIndex.354 = INTEGER: 354 +HOST-RESOURCES-MIB::hrSWRunIndex.358 = INTEGER: 358 +HOST-RESOURCES-MIB::hrSWRunIndex.360 = INTEGER: 360 +HOST-RESOURCES-MIB::hrSWRunIndex.361 = INTEGER: 361 +HOST-RESOURCES-MIB::hrSWRunIndex.363 = INTEGER: 363 +HOST-RESOURCES-MIB::hrSWRunIndex.392 = INTEGER: 392 +HOST-RESOURCES-MIB::hrSWRunIndex.411 = INTEGER: 411 +HOST-RESOURCES-MIB::hrSWRunIndex.412 = INTEGER: 412 +HOST-RESOURCES-MIB::hrSWRunIndex.413 = INTEGER: 413 +HOST-RESOURCES-MIB::hrSWRunIndex.417 = INTEGER: 417 +HOST-RESOURCES-MIB::hrSWRunIndex.422 = INTEGER: 422 +HOST-RESOURCES-MIB::hrSWRunIndex.428 = INTEGER: 428 +HOST-RESOURCES-MIB::hrSWRunIndex.547 = INTEGER: 547 +HOST-RESOURCES-MIB::hrSWRunIndex.676 = INTEGER: 676 +HOST-RESOURCES-MIB::hrSWRunIndex.677 = INTEGER: 677 +HOST-RESOURCES-MIB::hrSWRunIndex.692 = INTEGER: 692 +HOST-RESOURCES-MIB::hrSWRunIndex.786 = INTEGER: 786 +HOST-RESOURCES-MIB::hrSWRunIndex.792 = INTEGER: 792 +HOST-RESOURCES-MIB::hrSWRunIndex.796 = INTEGER: 796 +HOST-RESOURCES-MIB::hrSWRunIndex.798 = INTEGER: 798 +HOST-RESOURCES-MIB::hrSWRunIndex.804 = INTEGER: 804 +HOST-RESOURCES-MIB::hrSWRunIndex.810 = INTEGER: 810 +HOST-RESOURCES-MIB::hrSWRunIndex.814 = INTEGER: 814 +HOST-RESOURCES-MIB::hrSWRunIndex.821 = INTEGER: 821 +HOST-RESOURCES-MIB::hrSWRunIndex.822 = INTEGER: 822 +HOST-RESOURCES-MIB::hrSWRunIndex.823 = INTEGER: 823 +HOST-RESOURCES-MIB::hrSWRunIndex.827 = INTEGER: 827 +HOST-RESOURCES-MIB::hrSWRunIndex.828 = INTEGER: 828 +HOST-RESOURCES-MIB::hrSWRunIndex.839 = INTEGER: 839 +HOST-RESOURCES-MIB::hrSWRunIndex.840 = INTEGER: 840 +HOST-RESOURCES-MIB::hrSWRunIndex.841 = INTEGER: 841 +HOST-RESOURCES-MIB::hrSWRunIndex.849 = INTEGER: 849 +HOST-RESOURCES-MIB::hrSWRunIndex.855 = INTEGER: 855 +HOST-RESOURCES-MIB::hrSWRunIndex.858 = INTEGER: 858 +HOST-RESOURCES-MIB::hrSWRunIndex.861 = INTEGER: 861 +HOST-RESOURCES-MIB::hrSWRunIndex.862 = INTEGER: 862 +HOST-RESOURCES-MIB::hrSWRunIndex.863 = INTEGER: 863 +HOST-RESOURCES-MIB::hrSWRunIndex.864 = INTEGER: 864 +HOST-RESOURCES-MIB::hrSWRunIndex.865 = INTEGER: 865 +HOST-RESOURCES-MIB::hrSWRunIndex.866 = INTEGER: 866 +HOST-RESOURCES-MIB::hrSWRunIndex.869 = INTEGER: 869 +HOST-RESOURCES-MIB::hrSWRunIndex.870 = INTEGER: 870 +HOST-RESOURCES-MIB::hrSWRunIndex.871 = INTEGER: 871 +HOST-RESOURCES-MIB::hrSWRunIndex.872 = INTEGER: 872 +HOST-RESOURCES-MIB::hrSWRunIndex.873 = INTEGER: 873 +HOST-RESOURCES-MIB::hrSWRunIndex.874 = INTEGER: 874 +HOST-RESOURCES-MIB::hrSWRunIndex.877 = INTEGER: 877 +HOST-RESOURCES-MIB::hrSWRunIndex.878 = INTEGER: 878 +HOST-RESOURCES-MIB::hrSWRunIndex.880 = INTEGER: 880 +HOST-RESOURCES-MIB::hrSWRunIndex.881 = INTEGER: 881 +HOST-RESOURCES-MIB::hrSWRunIndex.884 = INTEGER: 884 +HOST-RESOURCES-MIB::hrSWRunIndex.885 = INTEGER: 885 +HOST-RESOURCES-MIB::hrSWRunIndex.886 = INTEGER: 886 +HOST-RESOURCES-MIB::hrSWRunIndex.887 = INTEGER: 887 +HOST-RESOURCES-MIB::hrSWRunIndex.889 = INTEGER: 889 +HOST-RESOURCES-MIB::hrSWRunIndex.890 = INTEGER: 890 +HOST-RESOURCES-MIB::hrSWRunIndex.891 = INTEGER: 891 +HOST-RESOURCES-MIB::hrSWRunIndex.892 = INTEGER: 892 +HOST-RESOURCES-MIB::hrSWRunIndex.896 = INTEGER: 896 +HOST-RESOURCES-MIB::hrSWRunIndex.897 = INTEGER: 897 +HOST-RESOURCES-MIB::hrSWRunIndex.901 = INTEGER: 901 +HOST-RESOURCES-MIB::hrSWRunIndex.904 = INTEGER: 904 +HOST-RESOURCES-MIB::hrSWRunIndex.906 = INTEGER: 906 +HOST-RESOURCES-MIB::hrSWRunIndex.908 = INTEGER: 908 +HOST-RESOURCES-MIB::hrSWRunIndex.909 = INTEGER: 909 +HOST-RESOURCES-MIB::hrSWRunIndex.911 = INTEGER: 911 +HOST-RESOURCES-MIB::hrSWRunIndex.913 = INTEGER: 913 +HOST-RESOURCES-MIB::hrSWRunIndex.914 = INTEGER: 914 +HOST-RESOURCES-MIB::hrSWRunIndex.915 = INTEGER: 915 +HOST-RESOURCES-MIB::hrSWRunIndex.917 = INTEGER: 917 +HOST-RESOURCES-MIB::hrSWRunIndex.918 = INTEGER: 918 +HOST-RESOURCES-MIB::hrSWRunIndex.919 = INTEGER: 919 +HOST-RESOURCES-MIB::hrSWRunIndex.920 = INTEGER: 920 +HOST-RESOURCES-MIB::hrSWRunIndex.921 = INTEGER: 921 +HOST-RESOURCES-MIB::hrSWRunIndex.922 = INTEGER: 922 +HOST-RESOURCES-MIB::hrSWRunIndex.923 = INTEGER: 923 +HOST-RESOURCES-MIB::hrSWRunIndex.924 = INTEGER: 924 +HOST-RESOURCES-MIB::hrSWRunIndex.926 = INTEGER: 926 +HOST-RESOURCES-MIB::hrSWRunIndex.927 = INTEGER: 927 +HOST-RESOURCES-MIB::hrSWRunIndex.928 = INTEGER: 928 +HOST-RESOURCES-MIB::hrSWRunIndex.930 = INTEGER: 930 +HOST-RESOURCES-MIB::hrSWRunIndex.934 = INTEGER: 934 +HOST-RESOURCES-MIB::hrSWRunIndex.935 = INTEGER: 935 +HOST-RESOURCES-MIB::hrSWRunIndex.936 = INTEGER: 936 +HOST-RESOURCES-MIB::hrSWRunIndex.937 = INTEGER: 937 +HOST-RESOURCES-MIB::hrSWRunIndex.939 = INTEGER: 939 +HOST-RESOURCES-MIB::hrSWRunIndex.941 = INTEGER: 941 +HOST-RESOURCES-MIB::hrSWRunIndex.944 = INTEGER: 944 +HOST-RESOURCES-MIB::hrSWRunIndex.1078 = INTEGER: 1078 +HOST-RESOURCES-MIB::hrSWRunIndex.1111 = INTEGER: 1111 +HOST-RESOURCES-MIB::hrSWRunIndex.1161 = INTEGER: 1161 +HOST-RESOURCES-MIB::hrSWRunIndex.1167 = INTEGER: 1167 +HOST-RESOURCES-MIB::hrSWRunIndex.1294 = INTEGER: 1294 +HOST-RESOURCES-MIB::hrSWRunIndex.1316 = INTEGER: 1316 +HOST-RESOURCES-MIB::hrSWRunIndex.1321 = INTEGER: 1321 +HOST-RESOURCES-MIB::hrSWRunIndex.1344 = INTEGER: 1344 +HOST-RESOURCES-MIB::hrSWRunIndex.1472 = INTEGER: 1472 +HOST-RESOURCES-MIB::hrSWRunIndex.1477 = INTEGER: 1477 +HOST-RESOURCES-MIB::hrSWRunIndex.1478 = INTEGER: 1478 +HOST-RESOURCES-MIB::hrSWRunIndex.1479 = INTEGER: 1479 +HOST-RESOURCES-MIB::hrSWRunIndex.1480 = INTEGER: 1480 +HOST-RESOURCES-MIB::hrSWRunIndex.1481 = INTEGER: 1481 +HOST-RESOURCES-MIB::hrSWRunIndex.1482 = INTEGER: 1482 +HOST-RESOURCES-MIB::hrSWRunIndex.1483 = INTEGER: 1483 +HOST-RESOURCES-MIB::hrSWRunIndex.1484 = INTEGER: 1484 +HOST-RESOURCES-MIB::hrSWRunIndex.1485 = INTEGER: 1485 +HOST-RESOURCES-MIB::hrSWRunIndex.1486 = INTEGER: 1486 +HOST-RESOURCES-MIB::hrSWRunIndex.1487 = INTEGER: 1487 +HOST-RESOURCES-MIB::hrSWRunIndex.1488 = INTEGER: 1488 +HOST-RESOURCES-MIB::hrSWRunIndex.1489 = INTEGER: 1489 +HOST-RESOURCES-MIB::hrSWRunIndex.1490 = INTEGER: 1490 +HOST-RESOURCES-MIB::hrSWRunIndex.1491 = INTEGER: 1491 +HOST-RESOURCES-MIB::hrSWRunIndex.1492 = INTEGER: 1492 +HOST-RESOURCES-MIB::hrSWRunIndex.1493 = INTEGER: 1493 +HOST-RESOURCES-MIB::hrSWRunIndex.1495 = INTEGER: 1495 +HOST-RESOURCES-MIB::hrSWRunIndex.1496 = INTEGER: 1496 +HOST-RESOURCES-MIB::hrSWRunIndex.1499 = INTEGER: 1499 +HOST-RESOURCES-MIB::hrSWRunIndex.1500 = INTEGER: 1500 +HOST-RESOURCES-MIB::hrSWRunIndex.1504 = INTEGER: 1504 +HOST-RESOURCES-MIB::hrSWRunIndex.1505 = INTEGER: 1505 +HOST-RESOURCES-MIB::hrSWRunIndex.1508 = INTEGER: 1508 +HOST-RESOURCES-MIB::hrSWRunIndex.1509 = INTEGER: 1509 +HOST-RESOURCES-MIB::hrSWRunIndex.1510 = INTEGER: 1510 +HOST-RESOURCES-MIB::hrSWRunIndex.1511 = INTEGER: 1511 +HOST-RESOURCES-MIB::hrSWRunIndex.1518 = INTEGER: 1518 +HOST-RESOURCES-MIB::hrSWRunIndex.1523 = INTEGER: 1523 +HOST-RESOURCES-MIB::hrSWRunIndex.1527 = INTEGER: 1527 +HOST-RESOURCES-MIB::hrSWRunIndex.1530 = INTEGER: 1530 +HOST-RESOURCES-MIB::hrSWRunIndex.1531 = INTEGER: 1531 +HOST-RESOURCES-MIB::hrSWRunIndex.1533 = INTEGER: 1533 +HOST-RESOURCES-MIB::hrSWRunIndex.1534 = INTEGER: 1534 +HOST-RESOURCES-MIB::hrSWRunIndex.1535 = INTEGER: 1535 +HOST-RESOURCES-MIB::hrSWRunIndex.1536 = INTEGER: 1536 +HOST-RESOURCES-MIB::hrSWRunIndex.1537 = INTEGER: 1537 +HOST-RESOURCES-MIB::hrSWRunIndex.1538 = INTEGER: 1538 +HOST-RESOURCES-MIB::hrSWRunIndex.1544 = INTEGER: 1544 +HOST-RESOURCES-MIB::hrSWRunIndex.1546 = INTEGER: 1546 +HOST-RESOURCES-MIB::hrSWRunIndex.1550 = INTEGER: 1550 +HOST-RESOURCES-MIB::hrSWRunIndex.1552 = INTEGER: 1552 +HOST-RESOURCES-MIB::hrSWRunIndex.1553 = INTEGER: 1553 +HOST-RESOURCES-MIB::hrSWRunIndex.1558 = INTEGER: 1558 +HOST-RESOURCES-MIB::hrSWRunIndex.1568 = INTEGER: 1568 +HOST-RESOURCES-MIB::hrSWRunIndex.1621 = INTEGER: 1621 +HOST-RESOURCES-MIB::hrSWRunIndex.1632 = INTEGER: 1632 +HOST-RESOURCES-MIB::hrSWRunIndex.1641 = INTEGER: 1641 +HOST-RESOURCES-MIB::hrSWRunIndex.1777 = INTEGER: 1777 +HOST-RESOURCES-MIB::hrSWRunIndex.1781 = INTEGER: 1781 +HOST-RESOURCES-MIB::hrSWRunIndex.1782 = INTEGER: 1782 +HOST-RESOURCES-MIB::hrSWRunIndex.1791 = INTEGER: 1791 +HOST-RESOURCES-MIB::hrSWRunIndex.1794 = INTEGER: 1794 +HOST-RESOURCES-MIB::hrSWRunIndex.1923 = INTEGER: 1923 +HOST-RESOURCES-MIB::hrSWRunIndex.1931 = INTEGER: 1931 +HOST-RESOURCES-MIB::hrSWRunIndex.2274 = INTEGER: 2274 +HOST-RESOURCES-MIB::hrSWRunIndex.2280 = INTEGER: 2280 +HOST-RESOURCES-MIB::hrSWRunIndex.2281 = INTEGER: 2281 +HOST-RESOURCES-MIB::hrSWRunIndex.2297 = INTEGER: 2297 +HOST-RESOURCES-MIB::hrSWRunIndex.2328 = INTEGER: 2328 +HOST-RESOURCES-MIB::hrSWRunIndex.2329 = INTEGER: 2329 +HOST-RESOURCES-MIB::hrSWRunIndex.2414 = INTEGER: 2414 +HOST-RESOURCES-MIB::hrSWRunIndex.2417 = INTEGER: 2417 +HOST-RESOURCES-MIB::hrSWRunIndex.2418 = INTEGER: 2418 +HOST-RESOURCES-MIB::hrSWRunIndex.2426 = INTEGER: 2426 +HOST-RESOURCES-MIB::hrSWRunIndex.2723 = INTEGER: 2723 +HOST-RESOURCES-MIB::hrSWRunIndex.2724 = INTEGER: 2724 +HOST-RESOURCES-MIB::hrSWRunIndex.2725 = INTEGER: 2725 +HOST-RESOURCES-MIB::hrSWRunIndex.3086 = INTEGER: 3086 +HOST-RESOURCES-MIB::hrSWRunIndex.3088 = INTEGER: 3088 +HOST-RESOURCES-MIB::hrSWRunIndex.3089 = INTEGER: 3089 +HOST-RESOURCES-MIB::hrSWRunIndex.3978 = INTEGER: 3978 +HOST-RESOURCES-MIB::hrSWRunIndex.3979 = INTEGER: 3979 +HOST-RESOURCES-MIB::hrSWRunIndex.4020 = INTEGER: 4020 +HOST-RESOURCES-MIB::hrSWRunIndex.5375 = INTEGER: 5375 +HOST-RESOURCES-MIB::hrSWRunIndex.5376 = INTEGER: 5376 +HOST-RESOURCES-MIB::hrSWRunIndex.6379 = INTEGER: 6379 +HOST-RESOURCES-MIB::hrSWRunIndex.7487 = INTEGER: 7487 +HOST-RESOURCES-MIB::hrSWRunIndex.7633 = INTEGER: 7633 +HOST-RESOURCES-MIB::hrSWRunIndex.7634 = INTEGER: 7634 +HOST-RESOURCES-MIB::hrSWRunIndex.7635 = INTEGER: 7635 +HOST-RESOURCES-MIB::hrSWRunIndex.7639 = INTEGER: 7639 +HOST-RESOURCES-MIB::hrSWRunIndex.7693 = INTEGER: 7693 +HOST-RESOURCES-MIB::hrSWRunIndex.7695 = INTEGER: 7695 +HOST-RESOURCES-MIB::hrSWRunIndex.7697 = INTEGER: 7697 +HOST-RESOURCES-MIB::hrSWRunIndex.7699 = INTEGER: 7699 +HOST-RESOURCES-MIB::hrSWRunIndex.7780 = INTEGER: 7780 +HOST-RESOURCES-MIB::hrSWRunIndex.8117 = INTEGER: 8117 +HOST-RESOURCES-MIB::hrSWRunIndex.9665 = INTEGER: 9665 +HOST-RESOURCES-MIB::hrSWRunIndex.10185 = INTEGER: 10185 +HOST-RESOURCES-MIB::hrSWRunIndex.10188 = INTEGER: 10188 +HOST-RESOURCES-MIB::hrSWRunIndex.12157 = INTEGER: 12157 +HOST-RESOURCES-MIB::hrSWRunIndex.12158 = INTEGER: 12158 +HOST-RESOURCES-MIB::hrSWRunIndex.12651 = INTEGER: 12651 +HOST-RESOURCES-MIB::hrSWRunIndex.16050 = INTEGER: 16050 +HOST-RESOURCES-MIB::hrSWRunIndex.16930 = INTEGER: 16930 +HOST-RESOURCES-MIB::hrSWRunIndex.19200 = INTEGER: 19200 +HOST-RESOURCES-MIB::hrSWRunIndex.20439 = INTEGER: 20439 +HOST-RESOURCES-MIB::hrSWRunIndex.20850 = INTEGER: 20850 +HOST-RESOURCES-MIB::hrSWRunIndex.21264 = INTEGER: 21264 +HOST-RESOURCES-MIB::hrSWRunIndex.21531 = INTEGER: 21531 +HOST-RESOURCES-MIB::hrSWRunIndex.21645 = INTEGER: 21645 +HOST-RESOURCES-MIB::hrSWRunIndex.21646 = INTEGER: 21646 +HOST-RESOURCES-MIB::hrSWRunIndex.21655 = INTEGER: 21655 +HOST-RESOURCES-MIB::hrSWRunIndex.21656 = INTEGER: 21656 +HOST-RESOURCES-MIB::hrSWRunIndex.21657 = INTEGER: 21657 +HOST-RESOURCES-MIB::hrSWRunIndex.21658 = INTEGER: 21658 +HOST-RESOURCES-MIB::hrSWRunIndex.22704 = INTEGER: 22704 +HOST-RESOURCES-MIB::hrSWRunIndex.23910 = INTEGER: 23910 +HOST-RESOURCES-MIB::hrSWRunIndex.24153 = INTEGER: 24153 +HOST-RESOURCES-MIB::hrSWRunIndex.24939 = INTEGER: 24939 +HOST-RESOURCES-MIB::hrSWRunIndex.25070 = INTEGER: 25070 +HOST-RESOURCES-MIB::hrSWRunIndex.26404 = INTEGER: 26404 +HOST-RESOURCES-MIB::hrSWRunIndex.27110 = INTEGER: 27110 +HOST-RESOURCES-MIB::hrSWRunIndex.27116 = INTEGER: 27116 +HOST-RESOURCES-MIB::hrSWRunIndex.28182 = INTEGER: 28182 +HOST-RESOURCES-MIB::hrSWRunIndex.28792 = INTEGER: 28792 +HOST-RESOURCES-MIB::hrSWRunIndex.29979 = INTEGER: 29979 +HOST-RESOURCES-MIB::hrSWRunIndex.30109 = INTEGER: 30109 +HOST-RESOURCES-MIB::hrSWRunIndex.30110 = INTEGER: 30110 +HOST-RESOURCES-MIB::hrSWRunIndex.32305 = INTEGER: 32305 +HOST-RESOURCES-MIB::hrSWRunIndex.34242 = INTEGER: 34242 +HOST-RESOURCES-MIB::hrSWRunIndex.34407 = INTEGER: 34407 +HOST-RESOURCES-MIB::hrSWRunIndex.34410 = INTEGER: 34410 +HOST-RESOURCES-MIB::hrSWRunIndex.34677 = INTEGER: 34677 +HOST-RESOURCES-MIB::hrSWRunIndex.36508 = INTEGER: 36508 +HOST-RESOURCES-MIB::hrSWRunIndex.38221 = INTEGER: 38221 +HOST-RESOURCES-MIB::hrSWRunIndex.38223 = INTEGER: 38223 +HOST-RESOURCES-MIB::hrSWRunIndex.40168 = INTEGER: 40168 +HOST-RESOURCES-MIB::hrSWRunIndex.40169 = INTEGER: 40169 +HOST-RESOURCES-MIB::hrSWRunIndex.40672 = INTEGER: 40672 +HOST-RESOURCES-MIB::hrSWRunIndex.41783 = INTEGER: 41783 +HOST-RESOURCES-MIB::hrSWRunIndex.43950 = INTEGER: 43950 +HOST-RESOURCES-MIB::hrSWRunIndex.43963 = INTEGER: 43963 +HOST-RESOURCES-MIB::hrSWRunIndex.45411 = INTEGER: 45411 +HOST-RESOURCES-MIB::hrSWRunIndex.46384 = INTEGER: 46384 +HOST-RESOURCES-MIB::hrSWRunIndex.46413 = INTEGER: 46413 +HOST-RESOURCES-MIB::hrSWRunIndex.46606 = INTEGER: 46606 +HOST-RESOURCES-MIB::hrSWRunIndex.46627 = INTEGER: 46627 +HOST-RESOURCES-MIB::hrSWRunIndex.46634 = INTEGER: 46634 +HOST-RESOURCES-MIB::hrSWRunIndex.49295 = INTEGER: 49295 +HOST-RESOURCES-MIB::hrSWRunIndex.49298 = INTEGER: 49298 +HOST-RESOURCES-MIB::hrSWRunIndex.49299 = INTEGER: 49299 +HOST-RESOURCES-MIB::hrSWRunIndex.50220 = INTEGER: 50220 +HOST-RESOURCES-MIB::hrSWRunIndex.50221 = INTEGER: 50221 +HOST-RESOURCES-MIB::hrSWRunIndex.50413 = INTEGER: 50413 +HOST-RESOURCES-MIB::hrSWRunIndex.50414 = INTEGER: 50414 +HOST-RESOURCES-MIB::hrSWRunIndex.51570 = INTEGER: 51570 +HOST-RESOURCES-MIB::hrSWRunIndex.51828 = INTEGER: 51828 +HOST-RESOURCES-MIB::hrSWRunIndex.55826 = INTEGER: 55826 +HOST-RESOURCES-MIB::hrSWRunIndex.58049 = INTEGER: 58049 +HOST-RESOURCES-MIB::hrSWRunIndex.64318 = INTEGER: 64318 +HOST-RESOURCES-MIB::hrSWRunIndex.64324 = INTEGER: 64324 +HOST-RESOURCES-MIB::hrSWRunIndex.64326 = INTEGER: 64326 +HOST-RESOURCES-MIB::hrSWRunIndex.64333 = INTEGER: 64333 +HOST-RESOURCES-MIB::hrSWRunIndex.64335 = INTEGER: 64335 +HOST-RESOURCES-MIB::hrSWRunIndex.65582 = INTEGER: 65582 +HOST-RESOURCES-MIB::hrSWRunIndex.66999 = INTEGER: 66999 +HOST-RESOURCES-MIB::hrSWRunIndex.67150 = INTEGER: 67150 +HOST-RESOURCES-MIB::hrSWRunIndex.70178 = INTEGER: 70178 +HOST-RESOURCES-MIB::hrSWRunIndex.70180 = INTEGER: 70180 +HOST-RESOURCES-MIB::hrSWRunIndex.72346 = INTEGER: 72346 +HOST-RESOURCES-MIB::hrSWRunIndex.74373 = INTEGER: 74373 +HOST-RESOURCES-MIB::hrSWRunIndex.74550 = INTEGER: 74550 +HOST-RESOURCES-MIB::hrSWRunIndex.74854 = INTEGER: 74854 +HOST-RESOURCES-MIB::hrSWRunIndex.75386 = INTEGER: 75386 +HOST-RESOURCES-MIB::hrSWRunIndex.78119 = INTEGER: 78119 +HOST-RESOURCES-MIB::hrSWRunIndex.78124 = INTEGER: 78124 +HOST-RESOURCES-MIB::hrSWRunIndex.79103 = INTEGER: 79103 +HOST-RESOURCES-MIB::hrSWRunIndex.79228 = INTEGER: 79228 +HOST-RESOURCES-MIB::hrSWRunIndex.79736 = INTEGER: 79736 +HOST-RESOURCES-MIB::hrSWRunIndex.85429 = INTEGER: 85429 +HOST-RESOURCES-MIB::hrSWRunIndex.87043 = INTEGER: 87043 +HOST-RESOURCES-MIB::hrSWRunIndex.87682 = INTEGER: 87682 +HOST-RESOURCES-MIB::hrSWRunIndex.87840 = INTEGER: 87840 +HOST-RESOURCES-MIB::hrSWRunIndex.87960 = INTEGER: 87960 +HOST-RESOURCES-MIB::hrSWRunIndex.88929 = INTEGER: 88929 +HOST-RESOURCES-MIB::hrSWRunIndex.89165 = INTEGER: 89165 +HOST-RESOURCES-MIB::hrSWRunIndex.90098 = INTEGER: 90098 +HOST-RESOURCES-MIB::hrSWRunIndex.90099 = INTEGER: 90099 +HOST-RESOURCES-MIB::hrSWRunIndex.90100 = INTEGER: 90100 +HOST-RESOURCES-MIB::hrSWRunIndex.91030 = INTEGER: 91030 +HOST-RESOURCES-MIB::hrSWRunIndex.91238 = INTEGER: 91238 +HOST-RESOURCES-MIB::hrSWRunIndex.93814 = INTEGER: 93814 +HOST-RESOURCES-MIB::hrSWRunIndex.98361 = INTEGER: 98361 +HOST-RESOURCES-MIB::hrSWRunIndex.99260 = INTEGER: 99260 +HOST-RESOURCES-MIB::hrSWRunName.1 = STRING: "launchd" +HOST-RESOURCES-MIB::hrSWRunName.11 = STRING: "UserEventAgent" +HOST-RESOURCES-MIB::hrSWRunName.12 = STRING: "kextd" +HOST-RESOURCES-MIB::hrSWRunName.13 = STRING: "taskgated" +HOST-RESOURCES-MIB::hrSWRunName.14 = STRING: "notifyd" +HOST-RESOURCES-MIB::hrSWRunName.15 = STRING: "securityd" +HOST-RESOURCES-MIB::hrSWRunName.16 = STRING: "diskarbitrationd" +HOST-RESOURCES-MIB::hrSWRunName.17 = STRING: "powerd" +HOST-RESOURCES-MIB::hrSWRunName.18 = STRING: "configd" +HOST-RESOURCES-MIB::hrSWRunName.19 = STRING: "syslogd" +HOST-RESOURCES-MIB::hrSWRunName.20 = STRING: "distnoted" +HOST-RESOURCES-MIB::hrSWRunName.21 = STRING: "opendirectoryd" +HOST-RESOURCES-MIB::hrSWRunName.23 = STRING: "cfprefsd" +HOST-RESOURCES-MIB::hrSWRunName.25 = STRING: "xpcd" +HOST-RESOURCES-MIB::hrSWRunName.36 = STRING: "com.apple.authd" +HOST-RESOURCES-MIB::hrSWRunName.37 = STRING: "coreservicesd" +HOST-RESOURCES-MIB::hrSWRunName.147 = STRING: "fseventsd" +HOST-RESOURCES-MIB::hrSWRunName.148 = STRING: "usbd" +HOST-RESOURCES-MIB::hrSWRunName.149 = STRING: "networkd" +HOST-RESOURCES-MIB::hrSWRunName.150 = STRING: "mDNSResponder" +HOST-RESOURCES-MIB::hrSWRunName.152 = STRING: "sysmond" +HOST-RESOURCES-MIB::hrSWRunName.321 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.322 = STRING: "wdhelper" +HOST-RESOURCES-MIB::hrSWRunName.323 = STRING: "warmd" +HOST-RESOURCES-MIB::hrSWRunName.324 = STRING: "usbmuxd" +HOST-RESOURCES-MIB::hrSWRunName.327 = STRING: "stackshot" +HOST-RESOURCES-MIB::hrSWRunName.330 = STRING: "SleepServicesD" +HOST-RESOURCES-MIB::hrSWRunName.332 = STRING: "revisiond" +HOST-RESOURCES-MIB::hrSWRunName.337 = STRING: "mds" +HOST-RESOURCES-MIB::hrSWRunName.340 = STRING: "loginwindow" +HOST-RESOURCES-MIB::hrSWRunName.341 = STRING: "logind" +HOST-RESOURCES-MIB::hrSWRunName.342 = STRING: "locationd" +HOST-RESOURCES-MIB::hrSWRunName.343 = STRING: "KernelEventAgent" +HOST-RESOURCES-MIB::hrSWRunName.344 = STRING: "kdc" +HOST-RESOURCES-MIB::hrSWRunName.345 = STRING: "InternetSharing" +HOST-RESOURCES-MIB::hrSWRunName.347 = STRING: "hidd" +HOST-RESOURCES-MIB::hrSWRunName.349 = STRING: "dynamic_pager" +HOST-RESOURCES-MIB::hrSWRunName.352 = STRING: "displaypolicyd" +HOST-RESOURCES-MIB::hrSWRunName.353 = STRING: "launchservicesd" +HOST-RESOURCES-MIB::hrSWRunName.354 = STRING: "appleeventsd" +HOST-RESOURCES-MIB::hrSWRunName.358 = STRING: "autofsd" +HOST-RESOURCES-MIB::hrSWRunName.360 = STRING: "aosnotifyd" +HOST-RESOURCES-MIB::hrSWRunName.361 = STRING: "airportd" +HOST-RESOURCES-MIB::hrSWRunName.363 = STRING: "Little Snitch Daemon" +HOST-RESOURCES-MIB::hrSWRunName.392 = STRING: "networkd_privileged" +HOST-RESOURCES-MIB::hrSWRunName.411 = STRING: "ntpd" +HOST-RESOURCES-MIB::hrSWRunName.412 = STRING: "cupsd" +HOST-RESOURCES-MIB::hrSWRunName.413 = STRING: "cron" +HOST-RESOURCES-MIB::hrSWRunName.417 = STRING: "SystemStarter" +HOST-RESOURCES-MIB::hrSWRunName.422 = STRING: "pacemaker" +HOST-RESOURCES-MIB::hrSWRunName.428 = STRING: "WindowServer" +HOST-RESOURCES-MIB::hrSWRunName.547 = STRING: "mds_stores" +HOST-RESOURCES-MIB::hrSWRunName.676 = STRING: "tuxera_ntfs_daemon" +HOST-RESOURCES-MIB::hrSWRunName.677 = STRING: "tuxera_ntfs" +HOST-RESOURCES-MIB::hrSWRunName.692 = STRING: "sh" +HOST-RESOURCES-MIB::hrSWRunName.786 = STRING: "CVMServer" +HOST-RESOURCES-MIB::hrSWRunName.792 = STRING: "mysqld" +HOST-RESOURCES-MIB::hrSWRunName.796 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.798 = STRING: "com.apple.CodeSigningHelper" +HOST-RESOURCES-MIB::hrSWRunName.804 = STRING: "gkbisd" +HOST-RESOURCES-MIB::hrSWRunName.810 = STRING: "launchd" +HOST-RESOURCES-MIB::hrSWRunName.814 = STRING: "tccd" +HOST-RESOURCES-MIB::hrSWRunName.821 = STRING: "softwareupdated" +HOST-RESOURCES-MIB::hrSWRunName.822 = STRING: "xpcd" +HOST-RESOURCES-MIB::hrSWRunName.823 = STRING: "suhelperd" +HOST-RESOURCES-MIB::hrSWRunName.827 = STRING: "launchd" +HOST-RESOURCES-MIB::hrSWRunName.828 = STRING: "launchd" +HOST-RESOURCES-MIB::hrSWRunName.839 = STRING: "distnoted" +HOST-RESOURCES-MIB::hrSWRunName.840 = STRING: "distnoted" +HOST-RESOURCES-MIB::hrSWRunName.841 = STRING: "cfprefsd" +HOST-RESOURCES-MIB::hrSWRunName.849 = STRING: "securityd_service" +HOST-RESOURCES-MIB::hrSWRunName.855 = STRING: "UserEventAgent" +HOST-RESOURCES-MIB::hrSWRunName.858 = STRING: "Reeder" +HOST-RESOURCES-MIB::hrSWRunName.861 = STRING: "Mail" +HOST-RESOURCES-MIB::hrSWRunName.862 = STRING: "Safari" +HOST-RESOURCES-MIB::hrSWRunName.863 = STRING: "iTerm" +HOST-RESOURCES-MIB::hrSWRunName.864 = STRING: "Little Snitch Agent" +HOST-RESOURCES-MIB::hrSWRunName.865 = STRING: "TextEdit" +HOST-RESOURCES-MIB::hrSWRunName.866 = STRING: "1Password" +HOST-RESOURCES-MIB::hrSWRunName.869 = STRING: "TextMate" +HOST-RESOURCES-MIB::hrSWRunName.870 = STRING: "Preview" +HOST-RESOURCES-MIB::hrSWRunName.871 = STRING: "Snippets" +HOST-RESOURCES-MIB::hrSWRunName.872 = STRING: "LaunchBar" +HOST-RESOURCES-MIB::hrSWRunName.873 = STRING: "Calendar" +HOST-RESOURCES-MIB::hrSWRunName.874 = STRING: "pboard" +HOST-RESOURCES-MIB::hrSWRunName.877 = STRING: "Dock" +HOST-RESOURCES-MIB::hrSWRunName.878 = STRING: "SystemUIServer" +HOST-RESOURCES-MIB::hrSWRunName.880 = STRING: "coreaudiod" +HOST-RESOURCES-MIB::hrSWRunName.881 = STRING: "usernoted" +HOST-RESOURCES-MIB::hrSWRunName.884 = STRING: "Little Snitch Network Monitor" +HOST-RESOURCES-MIB::hrSWRunName.885 = STRING: "fontd" +HOST-RESOURCES-MIB::hrSWRunName.886 = STRING: "xpcd" +HOST-RESOURCES-MIB::hrSWRunName.887 = STRING: "xpcd" +HOST-RESOURCES-MIB::hrSWRunName.889 = STRING: "sharingd" +HOST-RESOURCES-MIB::hrSWRunName.890 = STRING: "tccd" +HOST-RESOURCES-MIB::hrSWRunName.891 = STRING: "librariand" +HOST-RESOURCES-MIB::hrSWRunName.892 = STRING: "ubd" +HOST-RESOURCES-MIB::hrSWRunName.896 = STRING: "apsd" +HOST-RESOURCES-MIB::hrSWRunName.897 = STRING: "com.apple.audio.DriverHelper" +HOST-RESOURCES-MIB::hrSWRunName.901 = STRING: "filecoordinationd" +HOST-RESOURCES-MIB::hrSWRunName.904 = STRING: "CalendarAgent" +HOST-RESOURCES-MIB::hrSWRunName.906 = STRING: "gamed" +HOST-RESOURCES-MIB::hrSWRunName.908 = STRING: "com.apple.internetaccounts" +HOST-RESOURCES-MIB::hrSWRunName.909 = STRING: "secd" +HOST-RESOURCES-MIB::hrSWRunName.911 = STRING: "xpcd" +HOST-RESOURCES-MIB::hrSWRunName.913 = STRING: "lsboxd" +HOST-RESOURCES-MIB::hrSWRunName.914 = STRING: "accountsd" +HOST-RESOURCES-MIB::hrSWRunName.915 = STRING: "storeagent" +HOST-RESOURCES-MIB::hrSWRunName.917 = STRING: "NotificationCenter" +HOST-RESOURCES-MIB::hrSWRunName.918 = STRING: "com.apple.IconServicesAgent" +HOST-RESOURCES-MIB::hrSWRunName.919 = STRING: "com.apple.WebKit.Networking" +HOST-RESOURCES-MIB::hrSWRunName.920 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.921 = STRING: "soagent" +HOST-RESOURCES-MIB::hrSWRunName.922 = STRING: "sandboxd" +HOST-RESOURCES-MIB::hrSWRunName.923 = STRING: "com.apple.ShareKitHelper" +HOST-RESOURCES-MIB::hrSWRunName.924 = STRING: "imagent" +HOST-RESOURCES-MIB::hrSWRunName.926 = STRING: "com.apple.imdpersistence.IMDPersistenceAgent" +HOST-RESOURCES-MIB::hrSWRunName.927 = STRING: "backupd" +HOST-RESOURCES-MIB::hrSWRunName.928 = STRING: "identityservicesd" +HOST-RESOURCES-MIB::hrSWRunName.930 = STRING: "com.apple.dock.extra" +HOST-RESOURCES-MIB::hrSWRunName.934 = STRING: "ScopedBookmarkAgent" +HOST-RESOURCES-MIB::hrSWRunName.935 = STRING: "coresymbolicationd" +HOST-RESOURCES-MIB::hrSWRunName.936 = STRING: "com.apple.AppSandboxSMLoginItemEnabler" +HOST-RESOURCES-MIB::hrSWRunName.937 = STRING: "printtool" +HOST-RESOURCES-MIB::hrSWRunName.939 = STRING: "2BUA8C4S2C.com.agilebits.onepassword-osx-helper" +HOST-RESOURCES-MIB::hrSWRunName.941 = STRING: "com.apple.NotesMigratorService" +HOST-RESOURCES-MIB::hrSWRunName.944 = STRING: "GeekTool Helper" +HOST-RESOURCES-MIB::hrSWRunName.1078 = STRING: "diskmanagementd" +HOST-RESOURCES-MIB::hrSWRunName.1111 = STRING: "System Events" +HOST-RESOURCES-MIB::hrSWRunName.1161 = STRING: "pbs" +HOST-RESOURCES-MIB::hrSWRunName.1167 = STRING: "AppleSpell" +HOST-RESOURCES-MIB::hrSWRunName.1294 = STRING: "login" +HOST-RESOURCES-MIB::hrSWRunName.1316 = STRING: "com.apple.InputMethodKit.UserDictionary" +HOST-RESOURCES-MIB::hrSWRunName.1321 = STRING: "AirPlayUIAgent" +HOST-RESOURCES-MIB::hrSWRunName.1344 = STRING: "universalAccessAuthWarn" +HOST-RESOURCES-MIB::hrSWRunName.1472 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1477 = STRING: "recentsd" +HOST-RESOURCES-MIB::hrSWRunName.1478 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1479 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1480 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1481 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1482 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1483 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1484 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1485 = STRING: "com.apple.DataDetectorsDynamicData" +HOST-RESOURCES-MIB::hrSWRunName.1486 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1487 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1488 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1489 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1490 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1491 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1492 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1493 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1495 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1496 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1499 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1500 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.1504 = STRING: "mdflagwriter" +HOST-RESOURCES-MIB::hrSWRunName.1505 = STRING: "GitHub Conduit" +HOST-RESOURCES-MIB::hrSWRunName.1508 = STRING: "EvernoteHelper" +HOST-RESOURCES-MIB::hrSWRunName.1509 = STRING: "notificator" +HOST-RESOURCES-MIB::hrSWRunName.1510 = STRING: "WiFiKeychainProxy" +HOST-RESOURCES-MIB::hrSWRunName.1511 = STRING: "SocialPushAgent" +HOST-RESOURCES-MIB::hrSWRunName.1518 = STRING: "AppleIDAuthAgent" +HOST-RESOURCES-MIB::hrSWRunName.1523 = STRING: "LOGINserver" +HOST-RESOURCES-MIB::hrSWRunName.1527 = STRING: "SpotifyWebHelper" +HOST-RESOURCES-MIB::hrSWRunName.1530 = STRING: "ControlPlane" +HOST-RESOURCES-MIB::hrSWRunName.1531 = STRING: "iTunesHelper" +HOST-RESOURCES-MIB::hrSWRunName.1533 = STRING: "ChronoSyncBackgrounder" +HOST-RESOURCES-MIB::hrSWRunName.1534 = STRING: "Synology Cloud Station" +HOST-RESOURCES-MIB::hrSWRunName.1535 = STRING: "Default Folder X Helper" +HOST-RESOURCES-MIB::hrSWRunName.1536 = STRING: "Dropbox" +HOST-RESOURCES-MIB::hrSWRunName.1537 = STRING: "handyPrintUserDaemon" +HOST-RESOURCES-MIB::hrSWRunName.1538 = STRING: "EyeTV Helper" +HOST-RESOURCES-MIB::hrSWRunName.1544 = STRING: "owncloud" +HOST-RESOURCES-MIB::hrSWRunName.1546 = STRING: "iScheduleTimeMachine" +HOST-RESOURCES-MIB::hrSWRunName.1550 = STRING: "syspolicyd" +HOST-RESOURCES-MIB::hrSWRunName.1552 = STRING: "USBserver" +HOST-RESOURCES-MIB::hrSWRunName.1553 = STRING: "NETserver" +HOST-RESOURCES-MIB::hrSWRunName.1558 = STRING: "com.apple.foundation.UserScriptService" +HOST-RESOURCES-MIB::hrSWRunName.1568 = STRING: "CloudKeychainProxy" +HOST-RESOURCES-MIB::hrSWRunName.1621 = STRING: "SynoSIMBL Agent" +HOST-RESOURCES-MIB::hrSWRunName.1632 = STRING: "cloud-eventd" +HOST-RESOURCES-MIB::hrSWRunName.1641 = STRING: "client-mac" +HOST-RESOURCES-MIB::hrSWRunName.1777 = STRING: "WebKitPluginAgent" +HOST-RESOURCES-MIB::hrSWRunName.1781 = STRING: "dbfseventsd" +HOST-RESOURCES-MIB::hrSWRunName.1782 = STRING: "dbfseventsd" +HOST-RESOURCES-MIB::hrSWRunName.1791 = STRING: "dbfseventsd" +HOST-RESOURCES-MIB::hrSWRunName.1794 = STRING: "Image Capture Extension" +HOST-RESOURCES-MIB::hrSWRunName.1923 = STRING: "spindump_agent" +HOST-RESOURCES-MIB::hrSWRunName.1931 = STRING: "Default Folder X Agent" +HOST-RESOURCES-MIB::hrSWRunName.2274 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.2280 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.2281 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.2297 = STRING: "mdworker" +HOST-RESOURCES-MIB::hrSWRunName.2328 = STRING: "login" +HOST-RESOURCES-MIB::hrSWRunName.2329 = STRING: "-bash" +HOST-RESOURCES-MIB::hrSWRunName.2414 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.2417 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.2418 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.2426 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.2723 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.2724 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.2725 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.3086 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.3088 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.3089 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.3978 = STRING: "login" +HOST-RESOURCES-MIB::hrSWRunName.3979 = STRING: "-bash" +HOST-RESOURCES-MIB::hrSWRunName.4020 = STRING: "com.apple.iCloudHelper" +HOST-RESOURCES-MIB::hrSWRunName.5375 = STRING: "com.apple.BKAgentService" +HOST-RESOURCES-MIB::hrSWRunName.5376 = STRING: "bookstoreagent" +HOST-RESOURCES-MIB::hrSWRunName.6379 = STRING: "autoconn-mac" +HOST-RESOURCES-MIB::hrSWRunName.7487 = STRING: "installd" +HOST-RESOURCES-MIB::hrSWRunName.7633 = STRING: "xpcd" +HOST-RESOURCES-MIB::hrSWRunName.7634 = STRING: "com.apple.IconServicesAgent" +HOST-RESOURCES-MIB::hrSWRunName.7635 = STRING: "distnoted" +HOST-RESOURCES-MIB::hrSWRunName.7639 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.7693 = STRING: "sh" +HOST-RESOURCES-MIB::hrSWRunName.7695 = STRING: "sh" +HOST-RESOURCES-MIB::hrSWRunName.7697 = STRING: "netstat" +HOST-RESOURCES-MIB::hrSWRunName.7699 = STRING: "grep" +HOST-RESOURCES-MIB::hrSWRunName.7780 = STRING: "snmpwalk" +HOST-RESOURCES-MIB::hrSWRunName.8117 = STRING: "Finder" +HOST-RESOURCES-MIB::hrSWRunName.9665 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.10185 = STRING: "login" +HOST-RESOURCES-MIB::hrSWRunName.10188 = STRING: "-bash" +HOST-RESOURCES-MIB::hrSWRunName.12157 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.12158 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.12651 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.16050 = STRING: "systemstatsd" +HOST-RESOURCES-MIB::hrSWRunName.16930 = STRING: "ssh" +HOST-RESOURCES-MIB::hrSWRunName.19200 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.20439 = STRING: "ocspd" +HOST-RESOURCES-MIB::hrSWRunName.20850 = STRING: "netbiosd" +HOST-RESOURCES-MIB::hrSWRunName.21264 = STRING: "HoudahSpotHelper" +HOST-RESOURCES-MIB::hrSWRunName.21531 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.21645 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.21646 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.21655 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.21656 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.21657 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.21658 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.22704 = STRING: "com.apple.appkit.xpc.openAndSavePanelService" +HOST-RESOURCES-MIB::hrSWRunName.23910 = STRING: "ssh" +HOST-RESOURCES-MIB::hrSWRunName.24153 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.24939 = STRING: "nbagent" +HOST-RESOURCES-MIB::hrSWRunName.25070 = STRING: "nbstated" +HOST-RESOURCES-MIB::hrSWRunName.26404 = STRING: "cookied" +HOST-RESOURCES-MIB::hrSWRunName.27110 = STRING: "periodic-wrapper" +HOST-RESOURCES-MIB::hrSWRunName.27116 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.28182 = STRING: "ssh" +HOST-RESOURCES-MIB::hrSWRunName.28792 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.29979 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.30109 = STRING: "login" +HOST-RESOURCES-MIB::hrSWRunName.30110 = STRING: "-bash" +HOST-RESOURCES-MIB::hrSWRunName.32305 = STRING: "Notes" +HOST-RESOURCES-MIB::hrSWRunName.34242 = STRING: "System Preferences" +HOST-RESOURCES-MIB::hrSWRunName.34407 = STRING: "com.apple.preference.network.remoteservice" +HOST-RESOURCES-MIB::hrSWRunName.34410 = STRING: "com.apple.systemadministration.writeconfig" +HOST-RESOURCES-MIB::hrSWRunName.34677 = STRING: "USBAgent" +HOST-RESOURCES-MIB::hrSWRunName.36508 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.38221 = STRING: "ssh" +HOST-RESOURCES-MIB::hrSWRunName.38223 = STRING: "ssh-agent" +HOST-RESOURCES-MIB::hrSWRunName.40168 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.40169 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.40672 = STRING: "com.apple.menuextra.airport.keychainproxy" +HOST-RESOURCES-MIB::hrSWRunName.41783 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.43950 = STRING: "diskimages-helper" +HOST-RESOURCES-MIB::hrSWRunName.43963 = STRING: "hdiejectd" +HOST-RESOURCES-MIB::hrSWRunName.45411 = STRING: "mdworker" +HOST-RESOURCES-MIB::hrSWRunName.46384 = STRING: "iTunes" +HOST-RESOURCES-MIB::hrSWRunName.46413 = STRING: "DashboardClient" +HOST-RESOURCES-MIB::hrSWRunName.46606 = STRING: "com.apple.MediaLibraryService" +HOST-RESOURCES-MIB::hrSWRunName.46627 = STRING: "ath" +HOST-RESOURCES-MIB::hrSWRunName.46634 = STRING: "AppleMobileDeviceHelper" +HOST-RESOURCES-MIB::hrSWRunName.49295 = STRING: "QuickLookUIHelper" +HOST-RESOURCES-MIB::hrSWRunName.49298 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.49299 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.50220 = STRING: "aslmanager" +HOST-RESOURCES-MIB::hrSWRunName.50221 = STRING: "aslmanager" +HOST-RESOURCES-MIB::hrSWRunName.50413 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.50414 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.51570 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.51828 = STRING: "com.apple.appkit.xpc.sandboxedServiceRunner" +HOST-RESOURCES-MIB::hrSWRunName.55826 = STRING: "snmpd" +HOST-RESOURCES-MIB::hrSWRunName.58049 = STRING: "ath" +HOST-RESOURCES-MIB::hrSWRunName.64318 = STRING: "Terminal" +HOST-RESOURCES-MIB::hrSWRunName.64324 = STRING: "login" +HOST-RESOURCES-MIB::hrSWRunName.64326 = STRING: "-bash" +HOST-RESOURCES-MIB::hrSWRunName.64333 = STRING: "sh" +HOST-RESOURCES-MIB::hrSWRunName.64335 = STRING: "java" +HOST-RESOURCES-MIB::hrSWRunName.65582 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.66999 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.67150 = STRING: "com.apple.WebKit.WebContent" +HOST-RESOURCES-MIB::hrSWRunName.70178 = STRING: "launchd" +HOST-RESOURCES-MIB::hrSWRunName.70180 = STRING: "mdflagwriter" +HOST-RESOURCES-MIB::hrSWRunName.72346 = STRING: "com.apple.sbd" +HOST-RESOURCES-MIB::hrSWRunName.74373 = STRING: "diskimages-helper" +HOST-RESOURCES-MIB::hrSWRunName.74550 = STRING: "PluginProcess" +HOST-RESOURCES-MIB::hrSWRunName.74854 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.75386 = STRING: "EscrowSecurityAlert" +HOST-RESOURCES-MIB::hrSWRunName.78119 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.78124 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.79103 = STRING: "com.apple.coremedia.videodecoder" +HOST-RESOURCES-MIB::hrSWRunName.79228 = STRING: "ssh" +HOST-RESOURCES-MIB::hrSWRunName.79736 = STRING: "SafariNotificationAgent" +HOST-RESOURCES-MIB::hrSWRunName.85429 = STRING: "helpd" +HOST-RESOURCES-MIB::hrSWRunName.87043 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.87682 = STRING: "com.apple.appkit.xpc.openAndSavePanelService" +HOST-RESOURCES-MIB::hrSWRunName.87840 = STRING: "com.apple.Preview.TrustedBookmarksService" +HOST-RESOURCES-MIB::hrSWRunName.87960 = STRING: "com.apple.hiservices-xpcservice" +HOST-RESOURCES-MIB::hrSWRunName.88929 = STRING: "mdworker" +HOST-RESOURCES-MIB::hrSWRunName.89165 = STRING: "check_afp" +HOST-RESOURCES-MIB::hrSWRunName.90098 = STRING: "com.apple.audio.SandboxHelper" +HOST-RESOURCES-MIB::hrSWRunName.90099 = STRING: "com.apple.audio.ComponentHelper" +HOST-RESOURCES-MIB::hrSWRunName.90100 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunName.91030 = STRING: "DiskUnmountWatcher" +HOST-RESOURCES-MIB::hrSWRunName.91238 = STRING: "mdworker" +HOST-RESOURCES-MIB::hrSWRunName.93814 = STRING: "ssh" +HOST-RESOURCES-MIB::hrSWRunName.98361 = STRING: "mdworker" +HOST-RESOURCES-MIB::hrSWRunName.99260 = STRING: "com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunID.1 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.11 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.13 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.14 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.16 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.17 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.18 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.19 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.20 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.23 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.25 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.36 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.37 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.147 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.148 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.149 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.150 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.152 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.321 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.322 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.323 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.324 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.327 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.330 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.332 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.337 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.340 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.341 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.342 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.343 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.344 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.345 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.347 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.349 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.352 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.353 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.354 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.358 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.360 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.361 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.363 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.392 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.411 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.412 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.413 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.417 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.422 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.428 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.547 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.676 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.677 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.692 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.786 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.792 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.796 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.798 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.804 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.810 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.814 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.821 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.822 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.823 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.827 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.828 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.839 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.840 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.841 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.849 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.855 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.858 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.861 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.862 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.863 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.864 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.865 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.866 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.869 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.870 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.871 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.872 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.873 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.874 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.877 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.878 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.880 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.881 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.884 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.885 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.886 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.887 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.889 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.890 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.891 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.892 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.896 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.897 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.901 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.904 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.906 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.908 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.909 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.911 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.913 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.914 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.915 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.917 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.918 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.919 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.920 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.921 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.922 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.923 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.924 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.926 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.927 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.928 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.930 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.934 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.935 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.936 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.937 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.939 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.941 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.944 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1078 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1111 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1161 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1167 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1294 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1316 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1321 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1344 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1472 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1477 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1478 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1479 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1480 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1481 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1482 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1483 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1484 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1485 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1486 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1487 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1488 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1489 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1490 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1491 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1492 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1493 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1495 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1496 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1499 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1500 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1504 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1505 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1508 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1509 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1510 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1511 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1518 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1523 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1527 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1530 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1531 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1533 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1534 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1535 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1536 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1537 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1538 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1544 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1546 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1550 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1552 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1553 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1558 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1568 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1621 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1632 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1641 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1777 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1781 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1782 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1791 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1794 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1923 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1931 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2274 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2280 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2281 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2297 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2328 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2329 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2414 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2417 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2418 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2426 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2723 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2724 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2725 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3086 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3088 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3089 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3978 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3979 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.4020 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.5375 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.5376 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.6379 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7487 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7633 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7634 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7635 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7639 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7693 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7695 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7697 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7699 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7780 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8117 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.9665 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.10185 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.10188 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12157 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12158 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12651 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.16050 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.16930 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.19200 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.20439 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.20850 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21264 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21531 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21645 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21646 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21655 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21656 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21657 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.21658 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.22704 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.23910 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.24153 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.24939 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.25070 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.26404 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.27110 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.27116 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.28182 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.28792 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.29979 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.30109 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.30110 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.32305 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.34242 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.34407 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.34410 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.34677 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.36508 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.38221 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.38223 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.40168 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.40169 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.40672 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.41783 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.43950 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.43963 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.45411 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.46384 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.46413 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.46606 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.46627 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.46634 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.49295 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.49298 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.49299 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.50220 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.50221 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.50413 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.50414 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.51570 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.51828 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.55826 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.58049 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.64318 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.64324 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.64326 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.64333 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.64335 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.65582 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.66999 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.67150 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.70178 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.70180 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.72346 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.74373 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.74550 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.74854 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.75386 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.78119 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.78124 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.79103 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.79228 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.79736 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.85429 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.87043 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.87682 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.87840 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.87960 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.88929 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.89165 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.90098 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.90099 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.90100 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.91030 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.91238 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.93814 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.98361 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.99260 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunPath.1 = STRING: "/sbin/launchd" +HOST-RESOURCES-MIB::hrSWRunPath.11 = STRING: "/usr/libexec/UserEventAgent" +HOST-RESOURCES-MIB::hrSWRunPath.12 = STRING: "/usr/libexec/kextd" +HOST-RESOURCES-MIB::hrSWRunPath.13 = STRING: "/usr/libexec/taskgated" +HOST-RESOURCES-MIB::hrSWRunPath.14 = STRING: "/usr/sbin/notifyd" +HOST-RESOURCES-MIB::hrSWRunPath.15 = STRING: "/usr/sbin/securityd" +HOST-RESOURCES-MIB::hrSWRunPath.16 = STRING: "/usr/libexec/diskarbitrationd" +HOST-RESOURCES-MIB::hrSWRunPath.17 = STRING: "/System/Library/CoreServices/powerd.bundle/powerd" +HOST-RESOURCES-MIB::hrSWRunPath.18 = STRING: "/usr/libexec/configd" +HOST-RESOURCES-MIB::hrSWRunPath.19 = STRING: "/usr/sbin/syslogd" +HOST-RESOURCES-MIB::hrSWRunPath.20 = STRING: "/usr/sbin/distnoted" +HOST-RESOURCES-MIB::hrSWRunPath.21 = STRING: "/usr/libexec/opendirectoryd" +HOST-RESOURCES-MIB::hrSWRunPath.23 = STRING: "/usr/sbin/cfprefsd" +HOST-RESOURCES-MIB::hrSWRunPath.25 = STRING: "/usr/libexec/xpcd" +HOST-RESOURCES-MIB::hrSWRunPath.36 = STRING: "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd" +HOST-RESOURCES-MIB::hrSWRunPath.37 = STRING: "/System/Library/CoreServices/coreservicesd" +HOST-RESOURCES-MIB::hrSWRunPath.147 = STRING: "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Support/fseventsd" +HOST-RESOURCES-MIB::hrSWRunPath.148 = STRING: "/usr/libexec/usbd" +HOST-RESOURCES-MIB::hrSWRunPath.149 = STRING: "/usr/libexec/networkd" +HOST-RESOURCES-MIB::hrSWRunPath.150 = STRING: "/usr/sbin/mDNSResponder" +HOST-RESOURCES-MIB::hrSWRunPath.152 = STRING: "/usr/libexec/sysmond" +HOST-RESOURCES-MIB::hrSWRunPath.321 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.322 = STRING: "/usr/libexec/wdhelper" +HOST-RESOURCES-MIB::hrSWRunPath.323 = STRING: "/usr/libexec/warmd" +HOST-RESOURCES-MIB::hrSWRunPath.324 = STRING: "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd" +HOST-RESOURCES-MIB::hrSWRunPath.327 = STRING: "/usr/libexec/stackshot" +HOST-RESOURCES-MIB::hrSWRunPath.330 = STRING: "/System/Library/CoreServices/SleepServicesD" +HOST-RESOURCES-MIB::hrSWRunPath.332 = STRING: "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond" +HOST-RESOURCES-MIB::hrSWRunPath.337 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds" +HOST-RESOURCES-MIB::hrSWRunPath.340 = STRING: "/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow" +HOST-RESOURCES-MIB::hrSWRunPath.341 = STRING: "/System/Library/CoreServices/logind" +HOST-RESOURCES-MIB::hrSWRunPath.342 = STRING: "/usr/libexec/locationd" +HOST-RESOURCES-MIB::hrSWRunPath.343 = STRING: "/usr/sbin/KernelEventAgent" +HOST-RESOURCES-MIB::hrSWRunPath.344 = STRING: "/System/Library/PrivateFrameworks/Heimdal.framework/Helpers/kdc" +HOST-RESOURCES-MIB::hrSWRunPath.345 = STRING: "/usr/libexec/InternetSharing" +HOST-RESOURCES-MIB::hrSWRunPath.347 = STRING: "/usr/libexec/hidd" +HOST-RESOURCES-MIB::hrSWRunPath.349 = STRING: "/sbin/dynamic_pager" +HOST-RESOURCES-MIB::hrSWRunPath.352 = STRING: "/usr/libexec/displaypolicyd" +HOST-RESOURCES-MIB::hrSWRunPath.353 = STRING: "/System/Library/CoreServices/launchservicesd" +HOST-RESOURCES-MIB::hrSWRunPath.354 = STRING: "/System/Library/CoreServices/appleeventsd" +HOST-RESOURCES-MIB::hrSWRunPath.358 = STRING: "/usr/libexec/autofsd" +HOST-RESOURCES-MIB::hrSWRunPath.360 = STRING: "/usr/libexec/aosnotifyd" +HOST-RESOURCES-MIB::hrSWRunPath.361 = STRING: "/usr/libexec/airportd" +HOST-RESOURCES-MIB::hrSWRunPath.363 = STRING: "/Library/Little Snitch/Little Snitch Daemon.bundle/Contents/MacOS/Little Snitch Daemon" +HOST-RESOURCES-MIB::hrSWRunPath.392 = STRING: "/usr/libexec/networkd_privileged" +HOST-RESOURCES-MIB::hrSWRunPath.411 = STRING: "/usr/sbin/ntpd" +HOST-RESOURCES-MIB::hrSWRunPath.412 = STRING: "/usr/sbin/cupsd" +HOST-RESOURCES-MIB::hrSWRunPath.413 = STRING: "/usr/sbin/cron" +HOST-RESOURCES-MIB::hrSWRunPath.417 = STRING: "/sbin/SystemStarter" +HOST-RESOURCES-MIB::hrSWRunPath.422 = STRING: "/usr/libexec/pacemaker" +HOST-RESOURCES-MIB::hrSWRunPath.428 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphics.framework/Resources/WindowServer" +HOST-RESOURCES-MIB::hrSWRunPath.547 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores" +HOST-RESOURCES-MIB::hrSWRunPath.676 = STRING: "/System/Library/Filesystems/fusefs_txantfs.fs/Support/10.5/tuxera_ntfs_daemon" +HOST-RESOURCES-MIB::hrSWRunPath.677 = STRING: "/System/Library/Filesystems/fusefs_txantfs.fs/Support/10.5/tuxera_ntfs" +HOST-RESOURCES-MIB::hrSWRunPath.692 = STRING: "/bin/sh" +HOST-RESOURCES-MIB::hrSWRunPath.786 = STRING: "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer" +HOST-RESOURCES-MIB::hrSWRunPath.792 = STRING: "/usr/local/mysql/bin/mysqld" +HOST-RESOURCES-MIB::hrSWRunPath.796 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.798 = STRING: "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.C$" +HOST-RESOURCES-MIB::hrSWRunPath.804 = STRING: "/usr/libexec/gkbisd" +HOST-RESOURCES-MIB::hrSWRunPath.810 = STRING: "/sbin/launchd" +HOST-RESOURCES-MIB::hrSWRunPath.814 = STRING: "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd" +HOST-RESOURCES-MIB::hrSWRunPath.821 = STRING: "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated" +HOST-RESOURCES-MIB::hrSWRunPath.822 = STRING: "/usr/libexec/xpcd" +HOST-RESOURCES-MIB::hrSWRunPath.823 = STRING: "/System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/suhelperd" +HOST-RESOURCES-MIB::hrSWRunPath.827 = STRING: "/sbin/launchd" +HOST-RESOURCES-MIB::hrSWRunPath.828 = STRING: "/sbin/launchd" +HOST-RESOURCES-MIB::hrSWRunPath.839 = STRING: "/usr/sbin/distnoted" +HOST-RESOURCES-MIB::hrSWRunPath.840 = STRING: "/usr/sbin/distnoted" +HOST-RESOURCES-MIB::hrSWRunPath.841 = STRING: "/usr/sbin/cfprefsd" +HOST-RESOURCES-MIB::hrSWRunPath.849 = STRING: "/usr/libexec/securityd_service" +HOST-RESOURCES-MIB::hrSWRunPath.855 = STRING: "/usr/libexec/UserEventAgent" +HOST-RESOURCES-MIB::hrSWRunPath.858 = STRING: "/Applications/Reeder.app/Contents/MacOS/Reeder" +HOST-RESOURCES-MIB::hrSWRunPath.861 = STRING: "/Applications/Mail.app/Contents/MacOS/Mail" +HOST-RESOURCES-MIB::hrSWRunPath.862 = STRING: "/Applications/Safari.app/Contents/MacOS/Safari" +HOST-RESOURCES-MIB::hrSWRunPath.863 = STRING: "/Applications/iTerm.app/Contents/MacOS/iTerm" +HOST-RESOURCES-MIB::hrSWRunPath.864 = STRING: "/Library/Little Snitch/Little Snitch Agent.app/Contents/MacOS/Little Snitch Agent" +HOST-RESOURCES-MIB::hrSWRunPath.865 = STRING: "/Applications/TextEdit.app/Contents/MacOS/TextEdit" +HOST-RESOURCES-MIB::hrSWRunPath.866 = STRING: "/Applications/1Password.app/Contents/MacOS/1Password" +HOST-RESOURCES-MIB::hrSWRunPath.869 = STRING: "/Applications/TextMate.app/Contents/MacOS/TextMate" +HOST-RESOURCES-MIB::hrSWRunPath.870 = STRING: "/Applications/Preview.app/Contents/MacOS/Preview" +HOST-RESOURCES-MIB::hrSWRunPath.871 = STRING: "/Applications/Snippets.app/Contents/MacOS/Snippets" +HOST-RESOURCES-MIB::hrSWRunPath.872 = STRING: "/Applications/LaunchBar.app/Contents/MacOS/LaunchBar" +HOST-RESOURCES-MIB::hrSWRunPath.873 = STRING: "/Applications/Calendar.app/Contents/MacOS/Calendar" +HOST-RESOURCES-MIB::hrSWRunPath.874 = STRING: "/usr/sbin/pboard" +HOST-RESOURCES-MIB::hrSWRunPath.877 = STRING: "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock" +HOST-RESOURCES-MIB::hrSWRunPath.878 = STRING: "/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer" +HOST-RESOURCES-MIB::hrSWRunPath.880 = STRING: "/usr/sbin/coreaudiod" +HOST-RESOURCES-MIB::hrSWRunPath.881 = STRING: "/usr/sbin/usernoted" +HOST-RESOURCES-MIB::hrSWRunPath.884 = STRING: "/Library/Little Snitch/Little Snitch Network Monitor.app/Contents/MacOS/Little Snitch Network Monitor" +HOST-RESOURCES-MIB::hrSWRunPath.885 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd" +HOST-RESOURCES-MIB::hrSWRunPath.886 = STRING: "/usr/libexec/xpcd" +HOST-RESOURCES-MIB::hrSWRunPath.887 = STRING: "/usr/libexec/xpcd" +HOST-RESOURCES-MIB::hrSWRunPath.889 = STRING: "/usr/libexec/sharingd" +HOST-RESOURCES-MIB::hrSWRunPath.890 = STRING: "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd" +HOST-RESOURCES-MIB::hrSWRunPath.891 = STRING: "/usr/libexec/librariand" +HOST-RESOURCES-MIB::hrSWRunPath.892 = STRING: "/System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Support/ubd" +HOST-RESOURCES-MIB::hrSWRunPath.896 = STRING: "/System/Library/PrivateFrameworks/ApplePushService.framework/apsd" +HOST-RESOURCES-MIB::hrSWRunPath.897 = STRING: "/System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple$" +HOST-RESOURCES-MIB::hrSWRunPath.901 = STRING: "/usr/sbin/filecoordinationd" +HOST-RESOURCES-MIB::hrSWRunPath.904 = STRING: "/System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent" +HOST-RESOURCES-MIB::hrSWRunPath.906 = STRING: "/System/Library/Frameworks/GameKit.framework/Versions/A/Resources/gamed" +HOST-RESOURCES-MIB::hrSWRunPath.908 = STRING: "/System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/XPCServices/com.apple.internetaccounts.xpc/Contents/Mac$" +HOST-RESOURCES-MIB::hrSWRunPath.909 = STRING: "/usr/libexec/secd" +HOST-RESOURCES-MIB::hrSWRunPath.911 = STRING: "/usr/libexec/xpcd" +HOST-RESOURCES-MIB::hrSWRunPath.913 = STRING: "/usr/libexec/lsboxd" +HOST-RESOURCES-MIB::hrSWRunPath.914 = STRING: "/System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd" +HOST-RESOURCES-MIB::hrSWRunPath.915 = STRING: "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeagent" +HOST-RESOURCES-MIB::hrSWRunPath.917 = STRING: "/System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter" +HOST-RESOURCES-MIB::hrSWRunPath.918 = STRING: "/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/XPCServices/com.apple.IconServicesAgent.xpc/Contents/MacOS/$" +HOST-RESOURCES-MIB::hrSWRunPath.919 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.920 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.921 = STRING: "/System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent" +HOST-RESOURCES-MIB::hrSWRunPath.922 = STRING: "/usr/libexec/sandboxd" +HOST-RESOURCES-MIB::hrSWRunPath.923 = STRING: "/System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/XPCServices/com.apple.ShareKitHelper.xpc/Contents/MacOS/com.app$" +HOST-RESOURCES-MIB::hrSWRunPath.924 = STRING: "/System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent" +HOST-RESOURCES-MIB::hrSWRunPath.926 = STRING: "/System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAge$" +HOST-RESOURCES-MIB::hrSWRunPath.927 = STRING: "/System/Library/CoreServices/backupd" +HOST-RESOURCES-MIB::hrSWRunPath.928 = STRING: "/System/Library/PrivateFrameworks/IDSCore.framework/identityservicesd.app/Contents/MacOS/identityservicesd" +HOST-RESOURCES-MIB::hrSWRunPath.930 = STRING: "/System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra" +HOST-RESOURCES-MIB::hrSWRunPath.934 = STRING: "/System/Library/CoreServices/ScopedBookmarkAgent" +HOST-RESOURCES-MIB::hrSWRunPath.935 = STRING: "/System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd" +HOST-RESOURCES-MIB::hrSWRunPath.936 = STRING: "/System/Library/Frameworks/ServiceManagement.framework/XPCServices/AppSandboxSMLoginItemEnabler.xpc/Contents/MacOS/AppSandboxSM$" +HOST-RESOURCES-MIB::hrSWRunPath.937 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool" +HOST-RESOURCES-MIB::hrSWRunPath.939 = STRING: "/Applications/1Password.app/Contents/Library/LoginItems/2BUA8C4S2C.com.agilebits.onepassword-osx-helper.app/Contents/MacOS/2BUA$" +HOST-RESOURCES-MIB::hrSWRunPath.941 = STRING: "/System/Library/PrivateFrameworks/Notes.framework/Versions/A/XPCServices/com.apple.NotesMigratorService.xpc/Contents/MacOS/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.944 = STRING: "/Applications/GeekTool.app/Contents/PlugIns/GeekTool.prefPane/Contents/Resources/GeekTool Helper.app/Contents/MacOS/GeekTool He$" +HOST-RESOURCES-MIB::hrSWRunPath.1078 = STRING: "/usr/sbin/diskmanagementd" +HOST-RESOURCES-MIB::hrSWRunPath.1111 = STRING: "/System/Library/CoreServices/System Events.app/Contents/MacOS/System Events" +HOST-RESOURCES-MIB::hrSWRunPath.1161 = STRING: "/System/Library/CoreServices/pbs" +HOST-RESOURCES-MIB::hrSWRunPath.1167 = STRING: "/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell" +HOST-RESOURCES-MIB::hrSWRunPath.1294 = "" +HOST-RESOURCES-MIB::hrSWRunPath.1316 = STRING: "/System/Library/Frameworks/InputMethodKit.framework/Versions/A/XPCServices/com.apple.InputMethodKit.UserDictionary.xpc/Contents$" +HOST-RESOURCES-MIB::hrSWRunPath.1321 = STRING: "/System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent" +HOST-RESOURCES-MIB::hrSWRunPath.1344 = STRING: "/System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Resources/universalAccessAuthWarn.app/Contents/MacOS/uni$" +HOST-RESOURCES-MIB::hrSWRunPath.1472 = STRING: "/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.a$" +HOST-RESOURCES-MIB::hrSWRunPath.1477 = STRING: "/System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd" +HOST-RESOURCES-MIB::hrSWRunPath.1478 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1479 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1480 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1481 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1482 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1483 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1484 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1485 = STRING: "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/XPCServices/DataDetectorsDynamicData.xpc/Contents/MacO$" +HOST-RESOURCES-MIB::hrSWRunPath.1486 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1487 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1488 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1489 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1490 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1491 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1492 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1493 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1495 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1496 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1499 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1500 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS$" +HOST-RESOURCES-MIB::hrSWRunPath.1504 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter" +HOST-RESOURCES-MIB::hrSWRunPath.1505 = STRING: "/Applications/GitHub.app/Contents/Library/LoginItems/GitHub Conduit.app/Contents/MacOS/GitHub Conduit" +HOST-RESOURCES-MIB::hrSWRunPath.1508 = STRING: "/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app/Contents/MacOS/EvernoteHelper" +HOST-RESOURCES-MIB::hrSWRunPath.1509 = STRING: "/Library/PreferencePanes/ExtFSforMacOSX.prefPane/Contents/MacOS/notificator" +HOST-RESOURCES-MIB::hrSWRunPath.1510 = STRING: "/usr/libexec/WiFiKeychainProxy" +HOST-RESOURCES-MIB::hrSWRunPath.1511 = STRING: "/System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent" +HOST-RESOURCES-MIB::hrSWRunPath.1518 = STRING: "/System/Library/CoreServices/AppleIDAuthAgent" +HOST-RESOURCES-MIB::hrSWRunPath.1523 = STRING: "/Library/Printers/Brother/Utilities/Server/LOGINserver.app/Contents/MacOS/LOGINserver" +HOST-RESOURCES-MIB::hrSWRunPath.1527 = STRING: "/Users/bruno/Library/Application Support/Spotify/SpotifyWebHelper" +HOST-RESOURCES-MIB::hrSWRunPath.1530 = STRING: "/Applications/ControlPlane.app/Contents/MacOS/ControlPlane" +HOST-RESOURCES-MIB::hrSWRunPath.1531 = STRING: "/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iTunesHelper" +HOST-RESOURCES-MIB::hrSWRunPath.1533 = STRING: "/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app/Contents/MacOS/ChronoSyncBackgrounder" +HOST-RESOURCES-MIB::hrSWRunPath.1534 = STRING: "/Applications/Synology Cloud Station.app/Contents/MacOS/Synology Cloud Station" +HOST-RESOURCES-MIB::hrSWRunPath.1535 = STRING: "/Users/bruno/Library/PreferencePanes/Default Folder X.prefPane/Contents/Resources/Default Folder X Helper.app/Contents/MacOS/De$" +HOST-RESOURCES-MIB::hrSWRunPath.1536 = STRING: "/Applications/Dropbox.app/Contents/MacOS/Dropbox" +HOST-RESOURCES-MIB::hrSWRunPath.1537 = STRING: "/Applications/handyPrint.app/Contents/Library/LoginItems/handyPrintUserDaemon.app/Contents/MacOS/handyPrintUserDaemon" +HOST-RESOURCES-MIB::hrSWRunPath.1538 = STRING: "/Library/Application Support/EyeTV/EyeTV Helper.app/Contents/MacOS/EyeTV Helper" +HOST-RESOURCES-MIB::hrSWRunPath.1544 = STRING: "/Applications/owncloud.app/Contents/MacOS/owncloud" +HOST-RESOURCES-MIB::hrSWRunPath.1546 = STRING: "/Applications/iScheduleTimeMachine.app/Contents/MacOS/iScheduleTimeMachine" +HOST-RESOURCES-MIB::hrSWRunPath.1550 = STRING: "/usr/libexec/syspolicyd" +HOST-RESOURCES-MIB::hrSWRunPath.1552 = STRING: "/Library/Printers/Brother/Utilities/Server/USBserver.app/Contents/MacOS/USBserver" +HOST-RESOURCES-MIB::hrSWRunPath.1553 = STRING: "/Library/Printers/Brother/Utilities/Server/NETserver.app/Contents/MacOS/NETserver" +HOST-RESOURCES-MIB::hrSWRunPath.1558 = STRING: "/System/Library/Frameworks/Foundation.framework/Versions/C/XPCServices/com.apple.foundation.UserScriptService.xpc/Contents/MacO$" +HOST-RESOURCES-MIB::hrSWRunPath.1568 = STRING: "/System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy" +HOST-RESOURCES-MIB::hrSWRunPath.1621 = STRING: "/Library/ScriptingAdditions/SynoSIMBL.osax/Contents/Resources/SynoSIMBL Agent.app/Contents/MacOS/SynoSIMBL Agent" +HOST-RESOURCES-MIB::hrSWRunPath.1632 = STRING: "/Applications/Synology Cloud Station.app/Contents/MacOS/bin/cloud-eventd" +HOST-RESOURCES-MIB::hrSWRunPath.1641 = STRING: "/Applications/Synology Cloud Station.app/Contents/MacOS/bin/client-mac" +HOST-RESOURCES-MIB::hrSWRunPath.1777 = STRING: "/System/Library/Frameworks/WebKit.framework/WebKitPluginAgent" +HOST-RESOURCES-MIB::hrSWRunPath.1781 = STRING: "/Library/DropboxHelperTools/Dropbox_u501/dbfseventsd" +HOST-RESOURCES-MIB::hrSWRunPath.1782 = STRING: "/Library/DropboxHelperTools/Dropbox_u501/dbfseventsd" +HOST-RESOURCES-MIB::hrSWRunPath.1791 = STRING: "/Library/DropboxHelperTools/Dropbox_u501/dbfseventsd" +HOST-RESOURCES-MIB::hrSWRunPath.1794 = STRING: "/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension" +HOST-RESOURCES-MIB::hrSWRunPath.1923 = STRING: "/usr/libexec/spindump_agent" +HOST-RESOURCES-MIB::hrSWRunPath.1931 = STRING: "/Users/bruno/Library/PreferencePanes/Default Folder X.prefPane/Contents/Resources/Default Folder X.bundle/Contents/Resources/De$" +HOST-RESOURCES-MIB::hrSWRunPath.2274 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.2280 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.2281 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.2297 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker" +HOST-RESOURCES-MIB::hrSWRunPath.2328 = STRING: "/usr/bin/login" +HOST-RESOURCES-MIB::hrSWRunPath.2329 = STRING: "/bin/bash" +HOST-RESOURCES-MIB::hrSWRunPath.2414 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.2417 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.2418 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.2426 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.2723 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.2724 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.2725 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.3086 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.3088 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.3089 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.3978 = STRING: "/usr/bin/login" +HOST-RESOURCES-MIB::hrSWRunPath.3979 = STRING: "/bin/bash" +HOST-RESOURCES-MIB::hrSWRunPath.4020 = STRING: "/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.i$" +HOST-RESOURCES-MIB::hrSWRunPath.5375 = STRING: "/System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com.apple.BKAgentService.xpc/Contents/MacOS/com.appl$" +HOST-RESOURCES-MIB::hrSWRunPath.5376 = STRING: "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/bookstoreagent" +HOST-RESOURCES-MIB::hrSWRunPath.6379 = STRING: "/Applications/Synology Cloud Station.app/Contents/MacOS/bin/autoconn-mac" +HOST-RESOURCES-MIB::hrSWRunPath.7487 = STRING: "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd" +HOST-RESOURCES-MIB::hrSWRunPath.7633 = STRING: "/usr/libexec/xpcd" +HOST-RESOURCES-MIB::hrSWRunPath.7634 = STRING: "/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/XPCServices/com.apple.IconServicesAgent.xpc/Contents/MacOS/$" +HOST-RESOURCES-MIB::hrSWRunPath.7635 = STRING: "/usr/sbin/distnoted" +HOST-RESOURCES-MIB::hrSWRunPath.7639 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.7693 = STRING: "/bin/sh" +HOST-RESOURCES-MIB::hrSWRunPath.7695 = STRING: "/bin/sh" +HOST-RESOURCES-MIB::hrSWRunPath.7697 = STRING: "/usr/sbin/netstat" +HOST-RESOURCES-MIB::hrSWRunPath.7699 = STRING: "/usr/bin/grep" +HOST-RESOURCES-MIB::hrSWRunPath.7780 = STRING: "/usr/bin/snmpwalk" +HOST-RESOURCES-MIB::hrSWRunPath.8117 = STRING: "/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder" +HOST-RESOURCES-MIB::hrSWRunPath.9665 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.10185 = STRING: "/usr/bin/login" +HOST-RESOURCES-MIB::hrSWRunPath.10188 = STRING: "/bin/bash" +HOST-RESOURCES-MIB::hrSWRunPath.12157 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.12158 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.12651 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.16050 = STRING: "/usr/libexec/systemstatsd" +HOST-RESOURCES-MIB::hrSWRunPath.16930 = STRING: "/usr/bin/ssh" +HOST-RESOURCES-MIB::hrSWRunPath.19200 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.20439 = STRING: "/usr/sbin/ocspd" +HOST-RESOURCES-MIB::hrSWRunPath.20850 = STRING: "/usr/sbin/netbiosd" +HOST-RESOURCES-MIB::hrSWRunPath.21264 = STRING: "/Applications/HoudahSpot.app/Contents/Library/LoginItems/HoudahSpotHelper.app/Contents/MacOS/HoudahSpotHelper" +HOST-RESOURCES-MIB::hrSWRunPath.21531 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.21645 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.21646 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.21655 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.21656 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.21657 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.21658 = STRING: "/usr/sbin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.22704 = STRING: "/System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/Ma$" +HOST-RESOURCES-MIB::hrSWRunPath.23910 = STRING: "/usr/bin/ssh" +HOST-RESOURCES-MIB::hrSWRunPath.24153 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.24939 = STRING: "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent" +HOST-RESOURCES-MIB::hrSWRunPath.25070 = STRING: "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated" +HOST-RESOURCES-MIB::hrSWRunPath.26404 = STRING: "/System/Library/Frameworks/CFNetwork.framework/Versions/A/Support/cookied" +HOST-RESOURCES-MIB::hrSWRunPath.27110 = STRING: "/usr/libexec/periodic-wrapper" +HOST-RESOURCES-MIB::hrSWRunPath.27116 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.28182 = STRING: "/usr/bin/ssh" +HOST-RESOURCES-MIB::hrSWRunPath.28792 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.29979 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.30109 = STRING: "/usr/bin/login" +HOST-RESOURCES-MIB::hrSWRunPath.30110 = STRING: "/bin/bash" +HOST-RESOURCES-MIB::hrSWRunPath.32305 = STRING: "/Applications/Notes.app/Contents/MacOS/Notes" +HOST-RESOURCES-MIB::hrSWRunPath.34242 = STRING: "/Applications/System Preferences.app/Contents/MacOS/System Preferences" +HOST-RESOURCES-MIB::hrSWRunPath.34407 = STRING: "/System/Library/PreferencePanes/Network.prefPane/Contents/XPCServices/com.apple.preference.network.remoteservice.xpc/Contents/M$" +HOST-RESOURCES-MIB::hrSWRunPath.34410 = STRING: "/System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig" +HOST-RESOURCES-MIB::hrSWRunPath.34677 = STRING: "/usr/libexec/USBAgent" +HOST-RESOURCES-MIB::hrSWRunPath.36508 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.38221 = STRING: "/usr/bin/ssh" +HOST-RESOURCES-MIB::hrSWRunPath.38223 = STRING: "/usr/bin/ssh-agent" +HOST-RESOURCES-MIB::hrSWRunPath.40168 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.40169 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.40672 = STRING: "/System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/XPCServices/com.apple.menuextra.airport.keychainproxy.xpc/Conten$" +HOST-RESOURCES-MIB::hrSWRunPath.41783 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.43950 = STRING: "/System/Library/PrivateFrameworks/DiskImages.framework/Resources/diskimages-helper" +HOST-RESOURCES-MIB::hrSWRunPath.43963 = STRING: "/System/Library/PrivateFrameworks/DiskImages.framework/Resources/hdiejectd" +HOST-RESOURCES-MIB::hrSWRunPath.45411 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker" +HOST-RESOURCES-MIB::hrSWRunPath.46384 = STRING: "/Applications/iTunes.app/Contents/MacOS/iTunes" +HOST-RESOURCES-MIB::hrSWRunPath.46413 = STRING: "/System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Contents/MacOS/DashboardClient" +HOST-RESOURCES-MIB::hrSWRunPath.46606 = STRING: "/System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.a$" +HOST-RESOURCES-MIB::hrSWRunPath.46627 = STRING: "/System/Library/PrivateFrameworks/AirTrafficHost.framework/ath" +HOST-RESOURCES-MIB::hrSWRunPath.46634 = STRING: "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/Current/AppleMobileDeviceHelper.app/Contents/MacOS/AppleMobil$" +HOST-RESOURCES-MIB::hrSWRunPath.49295 = STRING: "/System/Library/Frameworks/Quartz.framework/Frameworks/QuickLookUI.framework/Resources/QuickLookUIHelper.app/Contents/MacOS/Qui$" +HOST-RESOURCES-MIB::hrSWRunPath.49298 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.49299 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.50220 = STRING: "/usr/sbin/aslmanager" +HOST-RESOURCES-MIB::hrSWRunPath.50221 = STRING: "/usr/sbin/aslmanager" +HOST-RESOURCES-MIB::hrSWRunPath.50413 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.50414 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.51570 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.51828 = STRING: "/System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/SandboxedServiceRunner.xpc/Contents/MacOS/SandboxedServiceRu$" +HOST-RESOURCES-MIB::hrSWRunPath.55826 = STRING: "/usr/libexec/snmpd" +HOST-RESOURCES-MIB::hrSWRunPath.58049 = STRING: "/System/Library/PrivateFrameworks/AirTrafficHost.framework/ath" +HOST-RESOURCES-MIB::hrSWRunPath.64318 = STRING: "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal" +HOST-RESOURCES-MIB::hrSWRunPath.64324 = STRING: "/usr/bin/login" +HOST-RESOURCES-MIB::hrSWRunPath.64326 = STRING: "/bin/bash" +HOST-RESOURCES-MIB::hrSWRunPath.64333 = STRING: "/bin/sh" +HOST-RESOURCES-MIB::hrSWRunPath.64335 = STRING: "/Library/Java/JavaVirtualMachines/jdk1.7.0_67.jdk/Contents/Home/bin/java" +HOST-RESOURCES-MIB::hrSWRunPath.65582 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.66999 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.67150 = STRING: "/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.a$" +HOST-RESOURCES-MIB::hrSWRunPath.70178 = STRING: "/sbin/launchd" +HOST-RESOURCES-MIB::hrSWRunPath.70180 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdflagwriter" +HOST-RESOURCES-MIB::hrSWRunPath.72346 = STRING: "/System/Library/PrivateFrameworks/CloudServices.framework/Resources/com.apple.sbd" +HOST-RESOURCES-MIB::hrSWRunPath.74373 = STRING: "/System/Library/PrivateFrameworks/DiskImages.framework/Resources/diskimages-helper" +HOST-RESOURCES-MIB::hrSWRunPath.74550 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/PluginProcess.app/Contents/MacOS/PluginProcess" +HOST-RESOURCES-MIB::hrSWRunPath.74854 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.75386 = STRING: "/System/Library/PrivateFrameworks/CloudServices.framework/Resources/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert" +HOST-RESOURCES-MIB::hrSWRunPath.78119 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.78124 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.79103 = STRING: "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCSer$" +HOST-RESOURCES-MIB::hrSWRunPath.79228 = STRING: "/usr/bin/ssh" +HOST-RESOURCES-MIB::hrSWRunPath.79736 = STRING: "/usr/libexec/SafariNotificationAgent" +HOST-RESOURCES-MIB::hrSWRunPath.85429 = STRING: "/System/Library/PrivateFrameworks/HelpData.framework/Versions/A/Resources/helpd" +HOST-RESOURCES-MIB::hrSWRunPath.87043 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.87682 = STRING: "/System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/com.apple.appkit.xpc.openAndSavePanelService.xpc/Contents/Ma$" +HOST-RESOURCES-MIB::hrSWRunPath.87840 = STRING: "/Applications/Preview.app/Contents/XPCServices/com.apple.Preview.TrustedBookmarksService.xpc/Contents/MacOS/com.apple.Preview.T$" +HOST-RESOURCES-MIB::hrSWRunPath.87960 = STRING: "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.$" +HOST-RESOURCES-MIB::hrSWRunPath.88929 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker" +HOST-RESOURCES-MIB::hrSWRunPath.89165 = STRING: "/System/Library/Filesystems/AppleShare/check_afp.app/Contents/MacOS/check_afp" +HOST-RESOURCES-MIB::hrSWRunPath.90098 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.$" +HOST-RESOURCES-MIB::hrSWRunPath.90099 = STRING: "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.ComponentHelper.xpc/Contents/MacOS/com.apple.audi$" +HOST-RESOURCES-MIB::hrSWRunPath.90100 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunPath.91030 = STRING: "/System/Library/PrivateFrameworks/KerberosHelper/Helpers/DiskUnmountWatcher" +HOST-RESOURCES-MIB::hrSWRunPath.91238 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker" +HOST-RESOURCES-MIB::hrSWRunPath.93814 = STRING: "/usr/bin/ssh" +HOST-RESOURCES-MIB::hrSWRunPath.98361 = STRING: "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker" +HOST-RESOURCES-MIB::hrSWRunPath.99260 = STRING: "/System/Library/Frameworks/QTKit.framework/Versions/A/XPCServices/com.apple.qtkitserver.xpc/Contents/MacOS/com.apple.qtkitserver" +HOST-RESOURCES-MIB::hrSWRunParameters.1 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.11 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.13 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.14 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.16 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.17 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.18 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.19 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.20 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.21 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.23 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.25 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.36 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.37 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.147 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.148 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.149 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.150 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.152 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.321 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.322 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.323 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.324 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.327 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.330 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.332 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.337 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.340 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.341 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.342 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.343 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.344 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.345 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.347 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.349 = STRING: "-F " +HOST-RESOURCES-MIB::hrSWRunParameters.352 = STRING: "-E 1 -k " +HOST-RESOURCES-MIB::hrSWRunParameters.353 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.354 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.358 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.360 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.361 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.363 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.392 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.411 = STRING: "-c /private/etc/ntp-restrict.conf -n -g -p /var/run/ntpd.pid -f " +HOST-RESOURCES-MIB::hrSWRunParameters.412 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.413 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.417 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.422 = STRING: "-b -e 0.0001 -a " +HOST-RESOURCES-MIB::hrSWRunParameters.428 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.547 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.676 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.677 = STRING: "/dev/rdisk0s4 /Volumes/BOOTCAMP " +HOST-RESOURCES-MIB::hrSWRunParameters.692 = STRING: "/usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data " +HOST-RESOURCES-MIB::hrSWRunParameters.786 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.792 = STRING: "--basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/u$" +HOST-RESOURCES-MIB::hrSWRunParameters.796 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.798 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.804 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.810 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.814 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.821 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.822 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.823 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.827 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.828 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.839 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.840 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.841 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.849 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.855 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.858 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.861 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.862 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.863 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.864 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.865 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.866 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.869 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.870 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.871 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.872 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.873 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.874 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.877 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.878 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.880 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.881 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.884 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.885 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.886 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.887 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.889 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.890 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.891 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.892 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.896 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.897 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.901 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.904 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.906 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.908 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.909 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.911 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.913 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.914 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.915 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.917 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.918 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.919 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.920 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.921 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.922 = STRING: "-n PluginProcess -n " +HOST-RESOURCES-MIB::hrSWRunParameters.923 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.924 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.926 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.927 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.928 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.930 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.934 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.935 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.936 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.937 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.939 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.941 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.944 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1078 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1111 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1161 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1167 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1294 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1316 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1321 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1344 = STRING: "launchd " +HOST-RESOURCES-MIB::hrSWRunParameters.1472 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1477 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1478 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1479 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1480 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1481 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1482 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1483 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1484 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1485 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1486 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1487 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1488 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1489 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1490 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1491 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1492 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1493 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1495 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1496 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1499 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1500 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1504 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1505 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1508 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1509 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1510 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1511 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1518 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1523 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1527 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1530 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1531 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1533 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1534 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1535 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1536 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1537 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1538 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1544 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1546 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1550 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1552 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1553 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1558 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1568 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1621 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1632 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1641 = STRING: "/Users/bruno/.CloudStation/config/client.conf " +HOST-RESOURCES-MIB::hrSWRunParameters.1777 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1781 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1782 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1791 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1794 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1923 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1931 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2274 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2280 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2281 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2297 = STRING: "-s mdworker -c MDSImporterWorker -m " +HOST-RESOURCES-MIB::hrSWRunParameters.2328 = STRING: "-fp " +HOST-RESOURCES-MIB::hrSWRunParameters.2329 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2414 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2417 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2418 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2426 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2723 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2724 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2725 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3086 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3088 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3089 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3978 = STRING: "-fp " +HOST-RESOURCES-MIB::hrSWRunParameters.3979 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.4020 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.5375 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.5376 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.6379 = STRING: "clicclac /Applications/Synology Cloud Station.app/Contents/MacOS/conf/tz.conf /Users/bruno/.CloudStation/log " +HOST-RESOURCES-MIB::hrSWRunParameters.7487 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7633 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7634 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7635 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7639 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7693 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7695 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7697 = STRING: "-p " +HOST-RESOURCES-MIB::hrSWRunParameters.7699 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7780 = STRING: "-v 2c -c localhost " +HOST-RESOURCES-MIB::hrSWRunParameters.8117 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.9665 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.10185 = STRING: "-fp " +HOST-RESOURCES-MIB::hrSWRunParameters.10188 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12157 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12158 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12651 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.16050 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.16930 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.19200 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.20439 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.20850 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.21264 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.21531 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.21645 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.21646 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.21655 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.21656 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.21657 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.21658 = STRING: "-D " +HOST-RESOURCES-MIB::hrSWRunParameters.22704 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.23910 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.24153 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.24939 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.25070 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.26404 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.27110 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.27116 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.28182 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.28792 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.29979 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.30109 = STRING: "-fp " +HOST-RESOURCES-MIB::hrSWRunParameters.30110 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.32305 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.34242 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.34407 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.34410 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.34677 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.36508 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.38221 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.38223 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.40168 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.40169 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.40672 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.41783 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.43950 = STRING: "-uuid 1E030FA7-D130-403C-A27C-D73AD3DE35A7 -post-exec " +HOST-RESOURCES-MIB::hrSWRunParameters.43963 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.45411 = STRING: "-s mdworker-sizing -c MDSSizingWorker -m " +HOST-RESOURCES-MIB::hrSWRunParameters.46384 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.46413 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.46606 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.46627 = STRING: "--pipe 56 69 --target c7f49447e7f11d7864354ed8e57d40925ba34784 --library " +HOST-RESOURCES-MIB::hrSWRunParameters.46634 = STRING: "--pipe 69 " +HOST-RESOURCES-MIB::hrSWRunParameters.49295 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.49298 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.49299 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.50220 = STRING: "-s " +HOST-RESOURCES-MIB::hrSWRunParameters.50221 = STRING: "-s " +HOST-RESOURCES-MIB::hrSWRunParameters.50413 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.50414 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.51570 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.51828 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.55826 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.58049 = STRING: "--pipe 52 56 --target ce85c9b9f337648fb5a1a27aeb1ab64d4af31e4a --library " +HOST-RESOURCES-MIB::hrSWRunParameters.64318 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.64324 = STRING: "-pf " +HOST-RESOURCES-MIB::hrSWRunParameters.64326 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.64333 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.64335 = STRING: "-Xmx384m -Duser.country=US -Duser.language=en -jar " +HOST-RESOURCES-MIB::hrSWRunParameters.65582 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.66999 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.67150 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.70178 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.70180 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.72346 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.74373 = STRING: "-uuid 3DFB7D0F-DE8C-4ED4-9061-B9D838D99DAA -post-exec " +HOST-RESOURCES-MIB::hrSWRunParameters.74550 = STRING: "/System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2 -type pluginprocess -servicename com.apple.WebKit.WebProcess-$" +HOST-RESOURCES-MIB::hrSWRunParameters.74854 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.75386 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.78119 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.78124 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.79103 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.79228 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.79736 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.85429 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.87043 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.87682 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.87840 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.87960 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.88929 = STRING: "-s mdworker -c MDSImporterWorker -m " +HOST-RESOURCES-MIB::hrSWRunParameters.89165 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.90098 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.90099 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.90100 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.91030 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.91238 = STRING: "-s mdworker -c MDSImporterWorker -m " +HOST-RESOURCES-MIB::hrSWRunParameters.93814 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.98361 = STRING: "-s mdworker -c MDSImporterWorker -m " +HOST-RESOURCES-MIB::hrSWRunParameters.99260 = "" +HOST-RESOURCES-MIB::hrSWRunType.1 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.11 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.12 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.13 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.14 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.15 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.16 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.17 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.18 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.19 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.20 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.23 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.25 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.36 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.37 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.147 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.148 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.149 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.150 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.152 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.321 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.322 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.323 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.324 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.327 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.330 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.332 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.337 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.340 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.341 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.342 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.343 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.344 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.345 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.347 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.349 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.352 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.353 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.354 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.358 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.360 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.361 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.363 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.392 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.411 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.412 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.413 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.417 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.422 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.428 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.547 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.676 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.677 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.692 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.786 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.792 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.796 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.798 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.804 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.810 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.814 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.821 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.822 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.823 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.827 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.828 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.839 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.840 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.841 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.849 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.855 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.858 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.861 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.862 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.863 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.864 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.865 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.866 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.869 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.870 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.871 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.872 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.873 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.874 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.877 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.878 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.880 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.881 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.884 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.885 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.886 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.887 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.889 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.890 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.891 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.892 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.896 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.897 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.901 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.904 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.906 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.908 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.909 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.911 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.913 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.914 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.915 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.917 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.918 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.919 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.920 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.921 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.922 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.923 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.924 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.926 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.927 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.928 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.930 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.934 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.935 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.936 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.937 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.939 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.941 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.944 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1078 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1111 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1161 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1167 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1294 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1316 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1321 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1344 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1472 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1477 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1478 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1479 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1480 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1481 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1482 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1483 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1484 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1485 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1486 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1487 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1488 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1489 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1490 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1491 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1492 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1493 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1495 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1496 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1499 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1500 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1504 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1505 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1508 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1509 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1510 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1511 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1518 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1523 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1527 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1530 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1531 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1533 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1534 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1535 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1536 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1537 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1538 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1544 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1546 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1550 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1552 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1553 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1558 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1568 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1621 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1632 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1641 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1777 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1781 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1782 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1791 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1794 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1923 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.1931 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2274 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2280 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2281 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2297 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2328 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2329 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2414 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2417 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2418 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2426 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2723 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2724 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.2725 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.3086 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.3088 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.3089 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.3978 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.3979 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.4020 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.5375 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.5376 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.6379 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7487 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7633 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7634 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7635 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7639 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7693 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7695 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7697 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7699 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.7780 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.8117 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.9665 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.10185 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.10188 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.12157 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.12158 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.12651 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.16050 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.16930 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.19200 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.20439 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.20850 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21264 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21531 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21645 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21646 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21655 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21656 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21657 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.21658 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.22704 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.23910 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.24153 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.24939 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.25070 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.26404 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.27110 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.27116 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.28182 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.28792 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.29979 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.30109 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.30110 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.32305 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.34242 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.34407 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.34410 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.34677 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.36508 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.38221 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.38223 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.40168 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.40169 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.40672 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.41783 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.43950 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.43963 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.45411 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.46384 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.46413 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.46606 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.46627 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.46634 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.49295 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.49298 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.49299 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.50220 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.50221 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.50413 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.50414 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.51570 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.51828 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.55826 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.58049 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.64318 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.64324 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.64326 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.64333 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.64335 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.65582 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.66999 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.67150 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.70178 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.70180 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.72346 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.74373 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.74550 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.74854 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.75386 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.78119 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.78124 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.79103 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.79228 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.79736 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.85429 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.87043 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.87682 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.87840 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.87960 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.88929 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.89165 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.90098 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.90099 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.90100 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.91030 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.91238 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.93814 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.98361 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunType.99260 = INTEGER: unknown(1) +HOST-RESOURCES-MIB::hrSWRunStatus.1 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.11 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.13 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.14 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.16 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.17 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.18 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.19 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.20 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.23 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.25 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.36 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.37 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.147 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.148 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.149 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.150 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.152 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.321 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.322 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.323 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.324 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.327 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.330 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.332 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.337 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.340 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.341 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.342 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.343 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.344 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.345 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.347 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.349 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.352 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.353 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.354 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.358 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.360 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.361 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.363 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.392 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.411 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.412 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.413 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.417 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.422 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.428 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.547 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.676 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.677 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.692 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.786 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.792 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.796 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.798 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.804 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.810 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.814 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.821 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.822 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.823 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.827 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.828 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.839 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.840 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.841 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.849 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.855 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.858 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.861 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.862 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.863 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.864 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.865 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.866 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.869 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.870 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.871 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.872 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.873 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.874 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.877 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.878 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.880 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.881 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.884 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.885 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.886 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.887 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.889 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.890 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.891 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.892 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.896 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.897 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.901 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.904 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.906 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.908 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.909 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.911 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.913 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.914 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.915 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.917 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.918 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.919 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.920 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.921 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.922 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.923 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.924 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.926 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.927 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.928 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.930 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.934 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.935 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.936 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.937 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.939 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.941 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.944 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1078 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1111 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1161 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1167 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1294 = INTEGER: invalid(4) +HOST-RESOURCES-MIB::hrSWRunStatus.1316 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1321 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1344 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1472 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1477 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1478 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1479 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1480 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1481 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1482 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1483 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1484 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1485 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1486 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1487 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1488 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1489 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1490 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1491 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1492 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1493 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1495 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1496 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1499 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1500 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1504 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1505 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1508 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1509 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1510 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1511 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1518 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1523 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1527 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1530 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1531 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1533 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1534 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1535 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1536 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1537 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1538 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1544 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1546 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1550 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1552 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1553 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1558 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1568 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1621 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1632 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1641 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1777 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1781 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1782 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1791 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1794 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1923 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1931 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2274 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2280 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2281 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2297 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2328 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2329 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2414 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2417 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2418 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2426 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2723 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2724 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2725 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3086 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3088 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3089 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3978 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3979 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.4020 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.5375 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.5376 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.6379 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7487 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7633 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7634 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7635 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7639 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7693 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7695 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7697 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7699 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7780 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8117 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.9665 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.10185 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.10188 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12157 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12158 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12651 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.16050 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.16930 = INTEGER: notRunnable(3) +HOST-RESOURCES-MIB::hrSWRunStatus.19200 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.20439 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.20850 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21264 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21531 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21645 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21646 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21655 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21656 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21657 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.21658 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.22704 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.23910 = INTEGER: notRunnable(3) +HOST-RESOURCES-MIB::hrSWRunStatus.24153 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.24939 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.25070 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.26404 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.27110 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.27116 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.28182 = INTEGER: notRunnable(3) +HOST-RESOURCES-MIB::hrSWRunStatus.28792 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.29979 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.30109 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.30110 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.32305 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.34242 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.34407 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.34410 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.34677 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.36508 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.38221 = INTEGER: notRunnable(3) +HOST-RESOURCES-MIB::hrSWRunStatus.38223 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.40168 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.40169 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.40672 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.41783 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.43950 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.43963 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.45411 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.46384 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.46413 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.46606 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.46627 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.46634 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.49295 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.49298 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.49299 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.50220 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.50221 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.50413 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.50414 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.51570 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.51828 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.55826 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.58049 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.64318 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.64324 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.64326 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.64333 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.64335 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.65582 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.66999 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.67150 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.70178 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.70180 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.72346 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.74373 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.74550 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.74854 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.75386 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.78119 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.78124 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.79103 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.79228 = INTEGER: notRunnable(3) +HOST-RESOURCES-MIB::hrSWRunStatus.79736 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.85429 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.87043 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.87682 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.87840 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.87960 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.88929 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.89165 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.90098 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.90099 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.90100 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.91030 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.91238 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.93814 = INTEGER: notRunnable(3) +HOST-RESOURCES-MIB::hrSWRunStatus.98361 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.99260 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1 = INTEGER: 29255 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.11 = INTEGER: 3496 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12 = INTEGER: 553 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.13 = INTEGER: 22312 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.14 = INTEGER: 30439 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15 = INTEGER: 1504 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.16 = INTEGER: 6333 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.17 = INTEGER: 805 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.18 = INTEGER: 5567 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.19 = INTEGER: 1873 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.20 = INTEGER: 409 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21 = INTEGER: 26404 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.23 = INTEGER: 4980 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.25 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.36 = INTEGER: 6454 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.37 = INTEGER: 3801 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.147 = INTEGER: 6763 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.148 = INTEGER: 95 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.149 = INTEGER: 2128 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.150 = INTEGER: 44902 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.152 = INTEGER: 12575 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.321 = INTEGER: 374 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.322 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.323 = INTEGER: 569 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.324 = INTEGER: 9132 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.327 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.330 = INTEGER: 85 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.332 = INTEGER: 201 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.337 = INTEGER: 27555 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.340 = INTEGER: 2855 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.341 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.342 = INTEGER: 1711 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.343 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.344 = INTEGER: 29 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.345 = INTEGER: 247 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.347 = INTEGER: 36706 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.349 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.352 = INTEGER: 828 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.353 = INTEGER: 41967 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.354 = INTEGER: 2506 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.358 = INTEGER: 21 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.360 = INTEGER: 42 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.361 = INTEGER: 1499 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.363 = INTEGER: 5277 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.392 = INTEGER: 38 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.411 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.412 = INTEGER: 29 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.413 = INTEGER: 17 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.417 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.422 = INTEGER: 1189 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.428 = INTEGER: 387354 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.547 = INTEGER: 43376 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.676 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.677 = INTEGER: 3418 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.692 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.786 = INTEGER: 60 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.792 = INTEGER: 2776 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.796 = INTEGER: 485 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.798 = INTEGER: 3564 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.804 = INTEGER: 380 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.810 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.814 = INTEGER: 738 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.821 = INTEGER: 1766 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.822 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.823 = INTEGER: 24 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.827 = INTEGER: 32835 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.828 = INTEGER: 32 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.839 = INTEGER: 48 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.840 = INTEGER: 8307 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.841 = INTEGER: 6111 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.849 = INTEGER: 195 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.855 = INTEGER: 1871 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.858 = INTEGER: 56056 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.861 = INTEGER: 38813 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.862 = INTEGER: 157001 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.863 = INTEGER: 12640 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.864 = INTEGER: 93847 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.865 = INTEGER: 1736 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.866 = INTEGER: 237340 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.869 = INTEGER: 15848 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.870 = INTEGER: 4450 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.871 = INTEGER: 5393 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.872 = INTEGER: 75425 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.873 = INTEGER: 2240 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.874 = INTEGER: 29 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.877 = INTEGER: 5059 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.878 = INTEGER: 2134 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.880 = INTEGER: 41610 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.881 = INTEGER: 2419 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.884 = INTEGER: 58985 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.885 = INTEGER: 976 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.886 = INTEGER: 1869 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.887 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.889 = INTEGER: 260 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.890 = INTEGER: 409 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.891 = INTEGER: 815 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.892 = INTEGER: 359 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.896 = INTEGER: 422 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.897 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.901 = INTEGER: 189 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.904 = INTEGER: 2123 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.906 = INTEGER: 340 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.908 = INTEGER: 1022 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.909 = INTEGER: 1141 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.911 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.913 = INTEGER: 39 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.914 = INTEGER: 17 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.915 = INTEGER: 2539 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.917 = INTEGER: 1011 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.918 = INTEGER: 1409 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.919 = INTEGER: 70422 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.920 = INTEGER: 58990 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.921 = INTEGER: 61 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.922 = INTEGER: 39 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.923 = INTEGER: 278 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.924 = INTEGER: 161 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.926 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.927 = INTEGER: 6557 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.928 = INTEGER: 289 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.930 = INTEGER: 1679 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.934 = INTEGER: 30 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.935 = INTEGER: 36 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.936 = INTEGER: 33 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.937 = INTEGER: 18 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.939 = INTEGER: 3163 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.941 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.944 = INTEGER: 166748 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1078 = INTEGER: 36814 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1111 = INTEGER: 39435 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1161 = INTEGER: 257 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1167 = INTEGER: 14469 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1294 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1316 = INTEGER: 13 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1321 = INTEGER: 292 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1344 = INTEGER: 182 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1472 = INTEGER: 28649 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1477 = INTEGER: 16 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1478 = INTEGER: 32916 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1479 = INTEGER: 34058 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1480 = INTEGER: 12520 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1481 = INTEGER: 8833 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1482 = INTEGER: 23675 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1483 = INTEGER: 14827 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1484 = INTEGER: 48157 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1485 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1486 = INTEGER: 11352 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1487 = INTEGER: 9869 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1488 = INTEGER: 1858 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1489 = INTEGER: 49837 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1490 = INTEGER: 11704 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1491 = INTEGER: 59142 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1492 = INTEGER: 32926 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1493 = INTEGER: 4690 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1495 = INTEGER: 90922 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1496 = INTEGER: 82213 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1499 = INTEGER: 67585 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1500 = INTEGER: 11774 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1504 = INTEGER: 73 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1505 = INTEGER: 289 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1508 = INTEGER: 245 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1509 = INTEGER: 23 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1510 = INTEGER: 28 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1511 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1518 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1523 = INTEGER: 229 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1527 = INTEGER: 523 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1530 = INTEGER: 6052 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1531 = INTEGER: 170 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1533 = INTEGER: 22122 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1534 = INTEGER: 17060 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1535 = INTEGER: 7470 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1536 = INTEGER: 16675 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1537 = INTEGER: 723 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1538 = INTEGER: 8674 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1544 = INTEGER: 20498 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1546 = INTEGER: 3050 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1550 = INTEGER: 60 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1552 = INTEGER: 259 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1553 = INTEGER: 947 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1558 = INTEGER: 8574 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1568 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1621 = INTEGER: 284 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1632 = INTEGER: 1877 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1641 = INTEGER: 34756 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1777 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1781 = INTEGER: 771 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1782 = INTEGER: 2970 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1791 = INTEGER: 2273 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1794 = INTEGER: 399 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1923 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1931 = INTEGER: 386 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2274 = INTEGER: 33 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2280 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2281 = INTEGER: 23 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2297 = INTEGER: 8 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2328 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2329 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2414 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2417 = INTEGER: 23 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2418 = INTEGER: 34 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2426 = INTEGER: 32 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2723 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2724 = INTEGER: 23 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2725 = INTEGER: 32 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3086 = INTEGER: 31 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3088 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3089 = INTEGER: 22 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3978 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3979 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.4020 = INTEGER: 75 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.5375 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.5376 = INTEGER: 193 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.6379 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7487 = INTEGER: 61 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7633 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7634 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7635 = INTEGER: 33 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7639 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7693 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7695 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7697 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7699 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7780 = INTEGER: 11 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8117 = INTEGER: 50051 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.9665 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.10185 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.10188 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12157 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12158 = INTEGER: 7 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12651 = INTEGER: 519 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.16050 = INTEGER: 1588 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.16930 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.19200 = INTEGER: 16 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.20439 = INTEGER: 134 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.20850 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21264 = INTEGER: 25 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21531 = INTEGER: 692 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21645 = INTEGER: 489 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21646 = INTEGER: 299 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21655 = INTEGER: 727 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21656 = INTEGER: 227 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21657 = INTEGER: 402 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.21658 = INTEGER: 380 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.22704 = INTEGER: 409 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.23910 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.24153 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.24939 = INTEGER: 204 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.25070 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.26404 = INTEGER: 85 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.27110 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.27116 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.28182 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.28792 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.29979 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.30109 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.30110 = INTEGER: 6 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.32305 = INTEGER: 1781 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.34242 = INTEGER: 120 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.34407 = INTEGER: 967 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.34410 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.34677 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.36508 = INTEGER: 24 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.38221 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.38223 = INTEGER: 71 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.40168 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.40169 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.40672 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.41783 = INTEGER: 30 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.43950 = INTEGER: 7 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.43963 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.45411 = INTEGER: 910 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.46384 = INTEGER: 3874 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.46413 = INTEGER: 1576 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.46606 = INTEGER: 270 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.46627 = INTEGER: 253 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.46634 = INTEGER: 26 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.49295 = INTEGER: 414 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.49298 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.49299 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.50220 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.50221 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.50413 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.50414 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.51570 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.51828 = INTEGER: 22 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.55826 = INTEGER: 10524 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.58049 = INTEGER: 58 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.64318 = INTEGER: 86 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.64324 = INTEGER: 15 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.64326 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.64333 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.64335 = INTEGER: 7865 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.65582 = INTEGER: 30 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.66999 = INTEGER: 30 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.67150 = INTEGER: 878 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.70178 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.70180 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.72346 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.74373 = INTEGER: 13 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.74550 = INTEGER: 12422 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.74854 = INTEGER: 31 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.75386 = INTEGER: 196 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.78119 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.78124 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.79103 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.79228 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.79736 = INTEGER: 12 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.85429 = INTEGER: 7 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.87043 = INTEGER: 27 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.87682 = INTEGER: 6576 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.87840 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.87960 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.88929 = INTEGER: 21 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.89165 = INTEGER: 21 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.90098 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.90099 = INTEGER: 17 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.90100 = INTEGER: 26 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.91030 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.91238 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.93814 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.98361 = INTEGER: 74 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.99260 = INTEGER: 14 +HOST-RESOURCES-MIB::hrSWRunPerfMem.1 = INTEGER: 12044 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.11 = INTEGER: 10768 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12 = INTEGER: 6200 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.13 = INTEGER: 5228 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.14 = INTEGER: 1704 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15 = INTEGER: 4548 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.16 = INTEGER: 1896 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.17 = INTEGER: 2284 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.18 = INTEGER: 5088 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.19 = INTEGER: 1872 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.20 = INTEGER: 2788 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21 = INTEGER: 8808 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.23 = INTEGER: 5068 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.25 = INTEGER: 1488 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.36 = INTEGER: 4984 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.37 = INTEGER: 14088 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.147 = INTEGER: 5228 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.148 = INTEGER: 1512 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.149 = INTEGER: 2580 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.150 = INTEGER: 4896 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.152 = INTEGER: 5516 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.321 = INTEGER: 1896 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.322 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.323 = INTEGER: 2632 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.324 = INTEGER: 2652 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.327 = INTEGER: 852 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.330 = INTEGER: 2456 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.332 = INTEGER: 3560 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.337 = INTEGER: 44036 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.340 = INTEGER: 7548 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.341 = INTEGER: 892 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.342 = INTEGER: 7376 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.343 = INTEGER: 336 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.344 = INTEGER: 1148 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.345 = INTEGER: 1148 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.347 = INTEGER: 2988 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.349 = INTEGER: 104 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.352 = INTEGER: 748 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.353 = INTEGER: 17856 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.354 = INTEGER: 2268 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.358 = INTEGER: 784 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.360 = INTEGER: 1684 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.361 = INTEGER: 5872 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.363 = INTEGER: 19952 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.392 = INTEGER: 700 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.411 = INTEGER: 692 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.412 = INTEGER: 1648 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.413 = INTEGER: 204 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.417 = INTEGER: 468 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.422 = INTEGER: 672 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.428 = INTEGER: 963052 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.547 = INTEGER: 156076 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.676 = INTEGER: 272 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.677 = INTEGER: 47548 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.692 = INTEGER: 372 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.786 = INTEGER: 1324 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.792 = INTEGER: 26072 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.796 = INTEGER: 11896 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.798 = INTEGER: 1444 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.804 = INTEGER: 2400 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.810 = INTEGER: 636 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.814 = INTEGER: 3064 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.821 = INTEGER: 134872 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.822 = INTEGER: 108 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.823 = INTEGER: 2460 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.827 = INTEGER: 3196 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.828 = INTEGER: 696 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.839 = INTEGER: 1264 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.840 = INTEGER: 11884 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.841 = INTEGER: 10936 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.849 = INTEGER: 944 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.855 = INTEGER: 14136 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.858 = INTEGER: 308640 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.861 = INTEGER: 164540 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.862 = INTEGER: 439828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.863 = INTEGER: 118312 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.864 = INTEGER: 25016 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.865 = INTEGER: 92860 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.866 = INTEGER: 102692 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.869 = INTEGER: 73248 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.870 = INTEGER: 115828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.871 = INTEGER: 27904 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.872 = INTEGER: 200964 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.873 = INTEGER: 75976 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.874 = INTEGER: 112 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.877 = INTEGER: 38748 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.878 = INTEGER: 26152 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.880 = INTEGER: 4836 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.881 = INTEGER: 7232 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.884 = INTEGER: 29196 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.885 = INTEGER: 6388 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.886 = INTEGER: 4520 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.887 = INTEGER: 108 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.889 = INTEGER: 5088 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.890 = INTEGER: 7996 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.891 = INTEGER: 3488 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.892 = INTEGER: 9784 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.896 = INTEGER: 5628 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.897 = INTEGER: 1032 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.901 = INTEGER: 3396 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.904 = INTEGER: 30388 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.906 = INTEGER: 4792 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.908 = INTEGER: 11780 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.909 = INTEGER: 3716 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.911 = INTEGER: 108 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.913 = INTEGER: 2108 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.914 = INTEGER: 1992 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.915 = INTEGER: 49724 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.917 = INTEGER: 22156 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.918 = INTEGER: 78496 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.919 = INTEGER: 198988 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.920 = INTEGER: 193828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.921 = INTEGER: 5552 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.922 = INTEGER: 2224 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.923 = INTEGER: 3624 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.924 = INTEGER: 4392 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.926 = INTEGER: 1416 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.927 = INTEGER: 3448 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.928 = INTEGER: 4112 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.930 = INTEGER: 11660 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.934 = INTEGER: 2068 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.935 = INTEGER: 1032 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.936 = INTEGER: 1360 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.937 = INTEGER: 2492 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.939 = INTEGER: 39200 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.941 = INTEGER: 1476 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.944 = INTEGER: 65164 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1078 = INTEGER: 3596 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1111 = INTEGER: 9092 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1161 = INTEGER: 6952 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1167 = INTEGER: 7352 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1294 = INTEGER: 0 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1316 = INTEGER: 2564 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1321 = INTEGER: 2828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1344 = INTEGER: 2772 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1472 = INTEGER: 88580 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1477 = INTEGER: 3296 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1478 = INTEGER: 187132 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1479 = INTEGER: 200136 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1480 = INTEGER: 167000 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1481 = INTEGER: 145316 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1482 = INTEGER: 159864 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1483 = INTEGER: 127232 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1484 = INTEGER: 323296 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1485 = INTEGER: 4160 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1486 = INTEGER: 51608 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1487 = INTEGER: 153684 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1488 = INTEGER: 36432 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1489 = INTEGER: 146776 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1490 = INTEGER: 138880 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1491 = INTEGER: 147676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1492 = INTEGER: 42016 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1493 = INTEGER: 54672 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1495 = INTEGER: 193220 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1496 = INTEGER: 152748 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1499 = INTEGER: 234436 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1500 = INTEGER: 60184 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1504 = INTEGER: 852 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1505 = INTEGER: 4988 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1508 = INTEGER: 4940 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1509 = INTEGER: 1268 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1510 = INTEGER: 2604 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1511 = INTEGER: 1048 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1518 = INTEGER: 884 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1523 = INTEGER: 3424 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1527 = INTEGER: 1956 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1530 = INTEGER: 29320 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1531 = INTEGER: 2776 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1533 = INTEGER: 5160 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1534 = INTEGER: 10700 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1535 = INTEGER: 41104 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1536 = INTEGER: 50260 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1537 = INTEGER: 5276 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1538 = INTEGER: 14644 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1544 = INTEGER: 95884 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1546 = INTEGER: 6776 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1550 = INTEGER: 5304 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1552 = INTEGER: 2692 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1553 = INTEGER: 2776 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1558 = INTEGER: 12236 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1568 = INTEGER: 1344 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1621 = INTEGER: 11700 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1632 = INTEGER: 140 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1641 = INTEGER: 2952 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1777 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1781 = INTEGER: 220 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1782 = INTEGER: 4288 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1791 = INTEGER: 100 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1794 = INTEGER: 5796 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1923 = INTEGER: 1076 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1931 = INTEGER: 4560 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2274 = INTEGER: 2180 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2280 = INTEGER: 728 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2281 = INTEGER: 1096 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2297 = INTEGER: 6836 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2328 = INTEGER: 2312 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2329 = INTEGER: 1324 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2414 = INTEGER: 732 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2417 = INTEGER: 1096 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2418 = INTEGER: 2176 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2426 = INTEGER: 2100 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2723 = INTEGER: 688 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2724 = INTEGER: 1088 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2725 = INTEGER: 2092 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3086 = INTEGER: 2144 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3088 = INTEGER: 732 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3089 = INTEGER: 1072 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3978 = INTEGER: 2384 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3979 = INTEGER: 1316 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.4020 = INTEGER: 8884 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.5375 = INTEGER: 1204 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.5376 = INTEGER: 8676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.6379 = INTEGER: 2988 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7487 = INTEGER: 1680 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7633 = INTEGER: 108 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7634 = INTEGER: 960 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7635 = INTEGER: 1156 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7639 = INTEGER: 752 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7693 = INTEGER: 932 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7695 = INTEGER: 484 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7697 = INTEGER: 796 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7699 = INTEGER: 628 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7780 = INTEGER: 2944 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8117 = INTEGER: 796132 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.9665 = INTEGER: 92 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.10185 = INTEGER: 104 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.10188 = INTEGER: 564 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12157 = INTEGER: 3936 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12158 = INTEGER: 4456 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12651 = INTEGER: 11548 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.16050 = INTEGER: 5596 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.16930 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.19200 = INTEGER: 2144 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.20439 = INTEGER: 27672 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.20850 = INTEGER: 2552 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21264 = INTEGER: 8640 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21531 = INTEGER: 6740 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21645 = INTEGER: 6756 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21646 = INTEGER: 6612 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21655 = INTEGER: 6296 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21656 = INTEGER: 15912 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21657 = INTEGER: 7308 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.21658 = INTEGER: 7052 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.22704 = INTEGER: 7584 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.23910 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.24153 = INTEGER: 92 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.24939 = INTEGER: 4596 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.25070 = INTEGER: 1232 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.26404 = INTEGER: 3816 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.27110 = INTEGER: 420 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.27116 = INTEGER: 3408 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.28182 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.28792 = INTEGER: 92 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.29979 = INTEGER: 832 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.30109 = INTEGER: 104 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.30110 = INTEGER: 924 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.32305 = INTEGER: 16736 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.34242 = INTEGER: 30796 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.34407 = INTEGER: 24900 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.34410 = INTEGER: 4856 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.34677 = INTEGER: 828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.36508 = INTEGER: 2152 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.38221 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.38223 = INTEGER: 1540 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.40168 = INTEGER: 4656 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.40169 = INTEGER: 5248 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.40672 = INTEGER: 1300 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.41783 = INTEGER: 2172 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.43950 = INTEGER: 12836 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.43963 = INTEGER: 1992 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.45411 = INTEGER: 1220 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.46384 = INTEGER: 107488 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.46413 = INTEGER: 25636 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.46606 = INTEGER: 3416 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.46627 = INTEGER: 4620 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.46634 = INTEGER: 5088 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.49295 = INTEGER: 8312 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.49298 = INTEGER: 732 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.49299 = INTEGER: 1020 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.50220 = INTEGER: 100 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.50221 = INTEGER: 100 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.50413 = INTEGER: 708 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.50414 = INTEGER: 1048 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.51570 = INTEGER: 92 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.51828 = INTEGER: 1288 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.55826 = INTEGER: 18348 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.58049 = INTEGER: 3712 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.64318 = INTEGER: 27236 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.64324 = INTEGER: 2432 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.64326 = INTEGER: 1360 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.64333 = INTEGER: 960 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.64335 = INTEGER: 582436 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.65582 = INTEGER: 2068 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.66999 = INTEGER: 2188 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.67150 = INTEGER: 50820 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.70178 = INTEGER: 640 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.70180 = INTEGER: 308 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.72346 = INTEGER: 1572 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.74373 = INTEGER: 14940 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.74550 = INTEGER: 22856 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.74854 = INTEGER: 2180 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.75386 = INTEGER: 3088 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.78119 = INTEGER: 736 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.78124 = INTEGER: 1064 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.79103 = INTEGER: 1000 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.79228 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.79736 = INTEGER: 692 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.85429 = INTEGER: 1016 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.87043 = INTEGER: 2156 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.87682 = INTEGER: 8500 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.87840 = INTEGER: 716 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.87960 = INTEGER: 92 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.88929 = INTEGER: 7076 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.89165 = INTEGER: 880 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.90098 = INTEGER: 720 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.90099 = INTEGER: 1016 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.90100 = INTEGER: 2132 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.91030 = INTEGER: 812 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.91238 = INTEGER: 7700 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.93814 = INTEGER: 88 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.98361 = INTEGER: 9236 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.99260 = INTEGER: 2664 KBytes +HOST-RESOURCES-MIB::hrSWInstalledIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWInstalledIndex.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWInstalledIndex.3 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWInstalledIndex.4 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWInstalledIndex.5 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWInstalledIndex.6 = INTEGER: 6 +HOST-RESOURCES-MIB::hrSWInstalledIndex.7 = INTEGER: 7 +HOST-RESOURCES-MIB::hrSWInstalledIndex.8 = INTEGER: 8 +HOST-RESOURCES-MIB::hrSWInstalledIndex.9 = INTEGER: 9 +HOST-RESOURCES-MIB::hrSWInstalledIndex.10 = INTEGER: 10 +HOST-RESOURCES-MIB::hrSWInstalledIndex.11 = INTEGER: 11 +HOST-RESOURCES-MIB::hrSWInstalledIndex.12 = INTEGER: 12 +HOST-RESOURCES-MIB::hrSWInstalledIndex.13 = INTEGER: 13 +HOST-RESOURCES-MIB::hrSWInstalledIndex.14 = INTEGER: 14 +HOST-RESOURCES-MIB::hrSWInstalledIndex.15 = INTEGER: 15 +HOST-RESOURCES-MIB::hrSWInstalledIndex.16 = INTEGER: 16 +HOST-RESOURCES-MIB::hrSWInstalledIndex.17 = INTEGER: 17 +HOST-RESOURCES-MIB::hrSWInstalledIndex.18 = INTEGER: 18 +HOST-RESOURCES-MIB::hrSWInstalledIndex.19 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWInstalledIndex.20 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWInstalledIndex.21 = INTEGER: 21 +HOST-RESOURCES-MIB::hrSWInstalledIndex.22 = INTEGER: 22 +HOST-RESOURCES-MIB::hrSWInstalledIndex.23 = INTEGER: 23 +HOST-RESOURCES-MIB::hrSWInstalledIndex.24 = INTEGER: 24 +HOST-RESOURCES-MIB::hrSWInstalledIndex.25 = INTEGER: 25 +HOST-RESOURCES-MIB::hrSWInstalledIndex.26 = INTEGER: 26 +HOST-RESOURCES-MIB::hrSWInstalledIndex.27 = INTEGER: 27 +HOST-RESOURCES-MIB::hrSWInstalledIndex.28 = INTEGER: 28 +HOST-RESOURCES-MIB::hrSWInstalledIndex.29 = INTEGER: 29 +HOST-RESOURCES-MIB::hrSWInstalledIndex.30 = INTEGER: 30 +HOST-RESOURCES-MIB::hrSWInstalledIndex.31 = INTEGER: 31 +HOST-RESOURCES-MIB::hrSWInstalledIndex.32 = INTEGER: 32 +HOST-RESOURCES-MIB::hrSWInstalledIndex.33 = INTEGER: 33 +HOST-RESOURCES-MIB::hrSWInstalledIndex.34 = INTEGER: 34 +HOST-RESOURCES-MIB::hrSWInstalledIndex.35 = INTEGER: 35 +HOST-RESOURCES-MIB::hrSWInstalledIndex.36 = INTEGER: 36 +HOST-RESOURCES-MIB::hrSWInstalledIndex.37 = INTEGER: 37 +HOST-RESOURCES-MIB::hrSWInstalledIndex.38 = INTEGER: 38 +HOST-RESOURCES-MIB::hrSWInstalledIndex.39 = INTEGER: 39 +HOST-RESOURCES-MIB::hrSWInstalledIndex.40 = INTEGER: 40 +HOST-RESOURCES-MIB::hrSWInstalledIndex.41 = INTEGER: 41 +HOST-RESOURCES-MIB::hrSWInstalledIndex.42 = INTEGER: 42 +HOST-RESOURCES-MIB::hrSWInstalledIndex.43 = INTEGER: 43 +HOST-RESOURCES-MIB::hrSWInstalledIndex.44 = INTEGER: 44 +HOST-RESOURCES-MIB::hrSWInstalledIndex.45 = INTEGER: 45 +HOST-RESOURCES-MIB::hrSWInstalledIndex.46 = INTEGER: 46 +HOST-RESOURCES-MIB::hrSWInstalledIndex.47 = INTEGER: 47 +HOST-RESOURCES-MIB::hrSWInstalledIndex.48 = INTEGER: 48 +HOST-RESOURCES-MIB::hrSWInstalledIndex.49 = INTEGER: 49 +HOST-RESOURCES-MIB::hrSWInstalledIndex.50 = INTEGER: 50 +HOST-RESOURCES-MIB::hrSWInstalledIndex.51 = INTEGER: 51 +HOST-RESOURCES-MIB::hrSWInstalledIndex.52 = INTEGER: 52 +HOST-RESOURCES-MIB::hrSWInstalledIndex.53 = INTEGER: 53 +HOST-RESOURCES-MIB::hrSWInstalledIndex.54 = INTEGER: 54 +HOST-RESOURCES-MIB::hrSWInstalledIndex.55 = INTEGER: 55 +HOST-RESOURCES-MIB::hrSWInstalledIndex.56 = INTEGER: 56 +HOST-RESOURCES-MIB::hrSWInstalledIndex.57 = INTEGER: 57 +HOST-RESOURCES-MIB::hrSWInstalledIndex.58 = INTEGER: 58 +HOST-RESOURCES-MIB::hrSWInstalledIndex.59 = INTEGER: 59 +HOST-RESOURCES-MIB::hrSWInstalledIndex.60 = INTEGER: 60 +HOST-RESOURCES-MIB::hrSWInstalledIndex.61 = INTEGER: 61 +HOST-RESOURCES-MIB::hrSWInstalledIndex.62 = INTEGER: 62 +HOST-RESOURCES-MIB::hrSWInstalledIndex.63 = INTEGER: 63 +HOST-RESOURCES-MIB::hrSWInstalledIndex.64 = INTEGER: 64 +HOST-RESOURCES-MIB::hrSWInstalledIndex.65 = INTEGER: 65 +HOST-RESOURCES-MIB::hrSWInstalledIndex.66 = INTEGER: 66 +HOST-RESOURCES-MIB::hrSWInstalledIndex.67 = INTEGER: 67 +HOST-RESOURCES-MIB::hrSWInstalledIndex.68 = INTEGER: 68 +HOST-RESOURCES-MIB::hrSWInstalledIndex.69 = INTEGER: 69 +HOST-RESOURCES-MIB::hrSWInstalledIndex.70 = INTEGER: 70 +HOST-RESOURCES-MIB::hrSWInstalledIndex.71 = INTEGER: 71 +HOST-RESOURCES-MIB::hrSWInstalledIndex.72 = INTEGER: 72 +HOST-RESOURCES-MIB::hrSWInstalledIndex.73 = INTEGER: 73 +HOST-RESOURCES-MIB::hrSWInstalledIndex.74 = INTEGER: 74 +HOST-RESOURCES-MIB::hrSWInstalledIndex.75 = INTEGER: 75 +HOST-RESOURCES-MIB::hrSWInstalledIndex.76 = INTEGER: 76 +HOST-RESOURCES-MIB::hrSWInstalledIndex.77 = INTEGER: 77 +HOST-RESOURCES-MIB::hrSWInstalledIndex.78 = INTEGER: 78 +HOST-RESOURCES-MIB::hrSWInstalledIndex.79 = INTEGER: 79 +HOST-RESOURCES-MIB::hrSWInstalledIndex.80 = INTEGER: 80 +HOST-RESOURCES-MIB::hrSWInstalledIndex.81 = INTEGER: 81 +HOST-RESOURCES-MIB::hrSWInstalledIndex.82 = INTEGER: 82 +HOST-RESOURCES-MIB::hrSWInstalledIndex.83 = INTEGER: 83 +HOST-RESOURCES-MIB::hrSWInstalledIndex.84 = INTEGER: 84 +HOST-RESOURCES-MIB::hrSWInstalledIndex.85 = INTEGER: 85 +HOST-RESOURCES-MIB::hrSWInstalledIndex.86 = INTEGER: 86 +HOST-RESOURCES-MIB::hrSWInstalledIndex.87 = INTEGER: 87 +HOST-RESOURCES-MIB::hrSWInstalledIndex.88 = INTEGER: 88 +HOST-RESOURCES-MIB::hrSWInstalledIndex.89 = INTEGER: 89 +HOST-RESOURCES-MIB::hrSWInstalledIndex.90 = INTEGER: 90 +HOST-RESOURCES-MIB::hrSWInstalledIndex.91 = INTEGER: 91 +HOST-RESOURCES-MIB::hrSWInstalledIndex.92 = INTEGER: 92 +HOST-RESOURCES-MIB::hrSWInstalledIndex.93 = INTEGER: 93 +HOST-RESOURCES-MIB::hrSWInstalledIndex.94 = INTEGER: 94 +HOST-RESOURCES-MIB::hrSWInstalledIndex.95 = INTEGER: 95 +HOST-RESOURCES-MIB::hrSWInstalledIndex.96 = INTEGER: 96 +HOST-RESOURCES-MIB::hrSWInstalledIndex.97 = INTEGER: 97 +HOST-RESOURCES-MIB::hrSWInstalledIndex.98 = INTEGER: 98 +HOST-RESOURCES-MIB::hrSWInstalledIndex.99 = INTEGER: 99 +HOST-RESOURCES-MIB::hrSWInstalledIndex.100 = INTEGER: 100 +HOST-RESOURCES-MIB::hrSWInstalledIndex.101 = INTEGER: 101 +HOST-RESOURCES-MIB::hrSWInstalledIndex.102 = INTEGER: 102 +HOST-RESOURCES-MIB::hrSWInstalledIndex.103 = INTEGER: 103 +HOST-RESOURCES-MIB::hrSWInstalledIndex.104 = INTEGER: 104 +HOST-RESOURCES-MIB::hrSWInstalledIndex.105 = INTEGER: 105 +HOST-RESOURCES-MIB::hrSWInstalledIndex.106 = INTEGER: 106 +HOST-RESOURCES-MIB::hrSWInstalledIndex.107 = INTEGER: 107 +HOST-RESOURCES-MIB::hrSWInstalledIndex.108 = INTEGER: 108 +HOST-RESOURCES-MIB::hrSWInstalledIndex.109 = INTEGER: 109 +HOST-RESOURCES-MIB::hrSWInstalledIndex.110 = INTEGER: 110 +HOST-RESOURCES-MIB::hrSWInstalledIndex.111 = INTEGER: 111 +HOST-RESOURCES-MIB::hrSWInstalledIndex.112 = INTEGER: 112 +HOST-RESOURCES-MIB::hrSWInstalledIndex.113 = INTEGER: 113 +HOST-RESOURCES-MIB::hrSWInstalledIndex.114 = INTEGER: 114 +HOST-RESOURCES-MIB::hrSWInstalledIndex.115 = INTEGER: 115 +HOST-RESOURCES-MIB::hrSWInstalledIndex.116 = INTEGER: 116 +HOST-RESOURCES-MIB::hrSWInstalledIndex.117 = INTEGER: 117 +HOST-RESOURCES-MIB::hrSWInstalledIndex.118 = INTEGER: 118 +HOST-RESOURCES-MIB::hrSWInstalledIndex.119 = INTEGER: 119 +HOST-RESOURCES-MIB::hrSWInstalledIndex.120 = INTEGER: 120 +HOST-RESOURCES-MIB::hrSWInstalledIndex.121 = INTEGER: 121 +HOST-RESOURCES-MIB::hrSWInstalledIndex.122 = INTEGER: 122 +HOST-RESOURCES-MIB::hrSWInstalledIndex.123 = INTEGER: 123 +HOST-RESOURCES-MIB::hrSWInstalledIndex.124 = INTEGER: 124 +HOST-RESOURCES-MIB::hrSWInstalledIndex.125 = INTEGER: 125 +HOST-RESOURCES-MIB::hrSWInstalledIndex.126 = INTEGER: 126 +HOST-RESOURCES-MIB::hrSWInstalledIndex.127 = INTEGER: 127 +HOST-RESOURCES-MIB::hrSWInstalledIndex.128 = INTEGER: 128 +HOST-RESOURCES-MIB::hrSWInstalledIndex.129 = INTEGER: 129 +HOST-RESOURCES-MIB::hrSWInstalledIndex.130 = INTEGER: 130 +HOST-RESOURCES-MIB::hrSWInstalledIndex.131 = INTEGER: 131 +HOST-RESOURCES-MIB::hrSWInstalledIndex.132 = INTEGER: 132 +HOST-RESOURCES-MIB::hrSWInstalledIndex.133 = INTEGER: 133 +HOST-RESOURCES-MIB::hrSWInstalledIndex.134 = INTEGER: 134 +HOST-RESOURCES-MIB::hrSWInstalledIndex.135 = INTEGER: 135 +HOST-RESOURCES-MIB::hrSWInstalledIndex.136 = INTEGER: 136 +HOST-RESOURCES-MIB::hrSWInstalledIndex.137 = INTEGER: 137 +HOST-RESOURCES-MIB::hrSWInstalledIndex.138 = INTEGER: 138 +HOST-RESOURCES-MIB::hrSWInstalledIndex.139 = INTEGER: 139 +HOST-RESOURCES-MIB::hrSWInstalledIndex.140 = INTEGER: 140 +HOST-RESOURCES-MIB::hrSWInstalledIndex.141 = INTEGER: 141 +HOST-RESOURCES-MIB::hrSWInstalledIndex.142 = INTEGER: 142 +HOST-RESOURCES-MIB::hrSWInstalledIndex.143 = INTEGER: 143 +HOST-RESOURCES-MIB::hrSWInstalledIndex.144 = INTEGER: 144 +HOST-RESOURCES-MIB::hrSWInstalledIndex.145 = INTEGER: 145 +HOST-RESOURCES-MIB::hrSWInstalledIndex.146 = INTEGER: 146 +HOST-RESOURCES-MIB::hrSWInstalledIndex.147 = INTEGER: 147 +HOST-RESOURCES-MIB::hrSWInstalledIndex.148 = INTEGER: 148 +HOST-RESOURCES-MIB::hrSWInstalledIndex.149 = INTEGER: 149 +HOST-RESOURCES-MIB::hrSWInstalledIndex.150 = INTEGER: 150 +HOST-RESOURCES-MIB::hrSWInstalledIndex.151 = INTEGER: 151 +HOST-RESOURCES-MIB::hrSWInstalledIndex.152 = INTEGER: 152 +HOST-RESOURCES-MIB::hrSWInstalledIndex.153 = INTEGER: 153 +HOST-RESOURCES-MIB::hrSWInstalledIndex.154 = INTEGER: 154 +HOST-RESOURCES-MIB::hrSWInstalledIndex.155 = INTEGER: 155 +HOST-RESOURCES-MIB::hrSWInstalledIndex.156 = INTEGER: 156 +HOST-RESOURCES-MIB::hrSWInstalledIndex.157 = INTEGER: 157 +HOST-RESOURCES-MIB::hrSWInstalledIndex.158 = INTEGER: 158 +HOST-RESOURCES-MIB::hrSWInstalledIndex.159 = INTEGER: 159 +HOST-RESOURCES-MIB::hrSWInstalledIndex.160 = INTEGER: 160 +HOST-RESOURCES-MIB::hrSWInstalledIndex.161 = INTEGER: 161 +HOST-RESOURCES-MIB::hrSWInstalledIndex.162 = INTEGER: 162 +HOST-RESOURCES-MIB::hrSWInstalledIndex.163 = INTEGER: 163 +HOST-RESOURCES-MIB::hrSWInstalledIndex.164 = INTEGER: 164 +HOST-RESOURCES-MIB::hrSWInstalledIndex.165 = INTEGER: 165 +HOST-RESOURCES-MIB::hrSWInstalledIndex.166 = INTEGER: 166 +HOST-RESOURCES-MIB::hrSWInstalledIndex.167 = INTEGER: 167 +HOST-RESOURCES-MIB::hrSWInstalledIndex.168 = INTEGER: 168 +HOST-RESOURCES-MIB::hrSWInstalledIndex.169 = INTEGER: 169 +HOST-RESOURCES-MIB::hrSWInstalledIndex.170 = INTEGER: 170 +HOST-RESOURCES-MIB::hrSWInstalledIndex.171 = INTEGER: 171 +HOST-RESOURCES-MIB::hrSWInstalledIndex.172 = INTEGER: 172 +HOST-RESOURCES-MIB::hrSWInstalledIndex.173 = INTEGER: 173 +HOST-RESOURCES-MIB::hrSWInstalledIndex.174 = INTEGER: 174 +HOST-RESOURCES-MIB::hrSWInstalledIndex.175 = INTEGER: 175 +HOST-RESOURCES-MIB::hrSWInstalledIndex.176 = INTEGER: 176 +HOST-RESOURCES-MIB::hrSWInstalledIndex.177 = INTEGER: 177 +HOST-RESOURCES-MIB::hrSWInstalledIndex.178 = INTEGER: 178 +HOST-RESOURCES-MIB::hrSWInstalledIndex.179 = INTEGER: 179 +HOST-RESOURCES-MIB::hrSWInstalledIndex.180 = INTEGER: 180 +HOST-RESOURCES-MIB::hrSWInstalledIndex.181 = INTEGER: 181 +HOST-RESOURCES-MIB::hrSWInstalledIndex.182 = INTEGER: 182 +HOST-RESOURCES-MIB::hrSWInstalledIndex.183 = INTEGER: 183 +HOST-RESOURCES-MIB::hrSWInstalledIndex.184 = INTEGER: 184 +HOST-RESOURCES-MIB::hrSWInstalledIndex.185 = INTEGER: 185 +HOST-RESOURCES-MIB::hrSWInstalledIndex.186 = INTEGER: 186 +HOST-RESOURCES-MIB::hrSWInstalledIndex.187 = INTEGER: 187 +HOST-RESOURCES-MIB::hrSWInstalledIndex.188 = INTEGER: 188 +HOST-RESOURCES-MIB::hrSWInstalledIndex.189 = INTEGER: 189 +HOST-RESOURCES-MIB::hrSWInstalledIndex.190 = INTEGER: 190 +HOST-RESOURCES-MIB::hrSWInstalledIndex.191 = INTEGER: 191 +HOST-RESOURCES-MIB::hrSWInstalledIndex.192 = INTEGER: 192 +HOST-RESOURCES-MIB::hrSWInstalledIndex.193 = INTEGER: 193 +HOST-RESOURCES-MIB::hrSWInstalledIndex.194 = INTEGER: 194 +HOST-RESOURCES-MIB::hrSWInstalledIndex.195 = INTEGER: 195 +HOST-RESOURCES-MIB::hrSWInstalledIndex.196 = INTEGER: 196 +HOST-RESOURCES-MIB::hrSWInstalledIndex.197 = INTEGER: 197 +HOST-RESOURCES-MIB::hrSWInstalledIndex.198 = INTEGER: 198 +HOST-RESOURCES-MIB::hrSWInstalledIndex.199 = INTEGER: 199 +HOST-RESOURCES-MIB::hrSWInstalledIndex.200 = INTEGER: 200 +HOST-RESOURCES-MIB::hrSWInstalledIndex.201 = INTEGER: 201 +HOST-RESOURCES-MIB::hrSWInstalledIndex.202 = INTEGER: 202 +HOST-RESOURCES-MIB::hrSWInstalledIndex.203 = INTEGER: 203 +HOST-RESOURCES-MIB::hrSWInstalledIndex.204 = INTEGER: 204 +HOST-RESOURCES-MIB::hrSWInstalledIndex.205 = INTEGER: 205 +HOST-RESOURCES-MIB::hrSWInstalledIndex.206 = INTEGER: 206 +HOST-RESOURCES-MIB::hrSWInstalledIndex.207 = INTEGER: 207 +HOST-RESOURCES-MIB::hrSWInstalledIndex.208 = INTEGER: 208 +HOST-RESOURCES-MIB::hrSWInstalledIndex.209 = INTEGER: 209 +HOST-RESOURCES-MIB::hrSWInstalledIndex.210 = INTEGER: 210 +HOST-RESOURCES-MIB::hrSWInstalledIndex.211 = INTEGER: 211 +HOST-RESOURCES-MIB::hrSWInstalledIndex.212 = INTEGER: 212 +HOST-RESOURCES-MIB::hrSWInstalledIndex.213 = INTEGER: 213 +HOST-RESOURCES-MIB::hrSWInstalledIndex.214 = INTEGER: 214 +HOST-RESOURCES-MIB::hrSWInstalledIndex.215 = INTEGER: 215 +HOST-RESOURCES-MIB::hrSWInstalledIndex.216 = INTEGER: 216 +HOST-RESOURCES-MIB::hrSWInstalledIndex.217 = INTEGER: 217 +HOST-RESOURCES-MIB::hrSWInstalledIndex.218 = INTEGER: 218 +HOST-RESOURCES-MIB::hrSWInstalledIndex.219 = INTEGER: 219 +HOST-RESOURCES-MIB::hrSWInstalledIndex.220 = INTEGER: 220 +HOST-RESOURCES-MIB::hrSWInstalledIndex.221 = INTEGER: 221 +HOST-RESOURCES-MIB::hrSWInstalledIndex.222 = INTEGER: 222 +HOST-RESOURCES-MIB::hrSWInstalledIndex.223 = INTEGER: 223 +HOST-RESOURCES-MIB::hrSWInstalledIndex.224 = INTEGER: 224 +HOST-RESOURCES-MIB::hrSWInstalledIndex.225 = INTEGER: 225 +HOST-RESOURCES-MIB::hrSWInstalledIndex.226 = INTEGER: 226 +HOST-RESOURCES-MIB::hrSWInstalledIndex.227 = INTEGER: 227 +HOST-RESOURCES-MIB::hrSWInstalledIndex.228 = INTEGER: 228 +HOST-RESOURCES-MIB::hrSWInstalledIndex.229 = INTEGER: 229 +HOST-RESOURCES-MIB::hrSWInstalledIndex.230 = INTEGER: 230 +HOST-RESOURCES-MIB::hrSWInstalledIndex.231 = INTEGER: 231 +HOST-RESOURCES-MIB::hrSWInstalledIndex.232 = INTEGER: 232 +HOST-RESOURCES-MIB::hrSWInstalledIndex.233 = INTEGER: 233 +HOST-RESOURCES-MIB::hrSWInstalledIndex.234 = INTEGER: 234 +HOST-RESOURCES-MIB::hrSWInstalledIndex.235 = INTEGER: 235 +HOST-RESOURCES-MIB::hrSWInstalledIndex.236 = INTEGER: 236 +HOST-RESOURCES-MIB::hrSWInstalledIndex.237 = INTEGER: 237 +HOST-RESOURCES-MIB::hrSWInstalledIndex.238 = INTEGER: 238 +HOST-RESOURCES-MIB::hrSWInstalledIndex.239 = INTEGER: 239 +HOST-RESOURCES-MIB::hrSWInstalledIndex.240 = INTEGER: 240 +HOST-RESOURCES-MIB::hrSWInstalledIndex.241 = INTEGER: 241 +HOST-RESOURCES-MIB::hrSWInstalledIndex.242 = INTEGER: 242 +HOST-RESOURCES-MIB::hrSWInstalledIndex.243 = INTEGER: 243 +HOST-RESOURCES-MIB::hrSWInstalledIndex.244 = INTEGER: 244 +HOST-RESOURCES-MIB::hrSWInstalledIndex.245 = INTEGER: 245 +HOST-RESOURCES-MIB::hrSWInstalledIndex.246 = INTEGER: 246 +HOST-RESOURCES-MIB::hrSWInstalledIndex.247 = INTEGER: 247 +HOST-RESOURCES-MIB::hrSWInstalledIndex.248 = INTEGER: 248 +HOST-RESOURCES-MIB::hrSWInstalledIndex.249 = INTEGER: 249 +HOST-RESOURCES-MIB::hrSWInstalledIndex.250 = INTEGER: 250 +HOST-RESOURCES-MIB::hrSWInstalledIndex.251 = INTEGER: 251 +HOST-RESOURCES-MIB::hrSWInstalledIndex.252 = INTEGER: 252 +HOST-RESOURCES-MIB::hrSWInstalledIndex.253 = INTEGER: 253 +HOST-RESOURCES-MIB::hrSWInstalledIndex.254 = INTEGER: 254 +HOST-RESOURCES-MIB::hrSWInstalledIndex.255 = INTEGER: 255 +HOST-RESOURCES-MIB::hrSWInstalledIndex.256 = INTEGER: 256 +HOST-RESOURCES-MIB::hrSWInstalledIndex.257 = INTEGER: 257 +HOST-RESOURCES-MIB::hrSWInstalledIndex.258 = INTEGER: 258 +HOST-RESOURCES-MIB::hrSWInstalledIndex.259 = INTEGER: 259 +HOST-RESOURCES-MIB::hrSWInstalledIndex.260 = INTEGER: 260 +HOST-RESOURCES-MIB::hrSWInstalledIndex.261 = INTEGER: 261 +HOST-RESOURCES-MIB::hrSWInstalledIndex.262 = INTEGER: 262 +HOST-RESOURCES-MIB::hrSWInstalledIndex.263 = INTEGER: 263 +HOST-RESOURCES-MIB::hrSWInstalledIndex.264 = INTEGER: 264 +HOST-RESOURCES-MIB::hrSWInstalledIndex.265 = INTEGER: 265 +HOST-RESOURCES-MIB::hrSWInstalledIndex.266 = INTEGER: 266 +HOST-RESOURCES-MIB::hrSWInstalledIndex.267 = INTEGER: 267 +HOST-RESOURCES-MIB::hrSWInstalledIndex.268 = INTEGER: 268 +HOST-RESOURCES-MIB::hrSWInstalledIndex.269 = INTEGER: 269 +HOST-RESOURCES-MIB::hrSWInstalledIndex.270 = INTEGER: 270 +HOST-RESOURCES-MIB::hrSWInstalledIndex.271 = INTEGER: 271 +HOST-RESOURCES-MIB::hrSWInstalledIndex.272 = INTEGER: 272 +HOST-RESOURCES-MIB::hrSWInstalledIndex.273 = INTEGER: 273 +HOST-RESOURCES-MIB::hrSWInstalledIndex.274 = INTEGER: 274 +HOST-RESOURCES-MIB::hrSWInstalledIndex.275 = INTEGER: 275 +HOST-RESOURCES-MIB::hrSWInstalledIndex.276 = INTEGER: 276 +HOST-RESOURCES-MIB::hrSWInstalledIndex.277 = INTEGER: 277 +HOST-RESOURCES-MIB::hrSWInstalledIndex.278 = INTEGER: 278 +HOST-RESOURCES-MIB::hrSWInstalledIndex.279 = INTEGER: 279 +HOST-RESOURCES-MIB::hrSWInstalledIndex.280 = INTEGER: 280 +HOST-RESOURCES-MIB::hrSWInstalledIndex.281 = INTEGER: 281 +HOST-RESOURCES-MIB::hrSWInstalledIndex.282 = INTEGER: 282 +HOST-RESOURCES-MIB::hrSWInstalledIndex.283 = INTEGER: 283 +HOST-RESOURCES-MIB::hrSWInstalledIndex.284 = INTEGER: 284 +HOST-RESOURCES-MIB::hrSWInstalledIndex.285 = INTEGER: 285 +HOST-RESOURCES-MIB::hrSWInstalledIndex.286 = INTEGER: 286 +HOST-RESOURCES-MIB::hrSWInstalledIndex.287 = INTEGER: 287 +HOST-RESOURCES-MIB::hrSWInstalledIndex.288 = INTEGER: 288 +HOST-RESOURCES-MIB::hrSWInstalledIndex.289 = INTEGER: 289 +HOST-RESOURCES-MIB::hrSWInstalledIndex.290 = INTEGER: 290 +HOST-RESOURCES-MIB::hrSWInstalledIndex.291 = INTEGER: 291 +HOST-RESOURCES-MIB::hrSWInstalledIndex.292 = INTEGER: 292 +HOST-RESOURCES-MIB::hrSWInstalledIndex.293 = INTEGER: 293 +HOST-RESOURCES-MIB::hrSWInstalledIndex.294 = INTEGER: 294 +HOST-RESOURCES-MIB::hrSWInstalledIndex.295 = INTEGER: 295 +HOST-RESOURCES-MIB::hrSWInstalledIndex.296 = INTEGER: 296 +HOST-RESOURCES-MIB::hrSWInstalledIndex.297 = INTEGER: 297 +HOST-RESOURCES-MIB::hrSWInstalledIndex.298 = INTEGER: 298 +HOST-RESOURCES-MIB::hrSWInstalledIndex.299 = INTEGER: 299 +HOST-RESOURCES-MIB::hrSWInstalledIndex.300 = INTEGER: 300 +HOST-RESOURCES-MIB::hrSWInstalledIndex.301 = INTEGER: 301 +HOST-RESOURCES-MIB::hrSWInstalledIndex.302 = INTEGER: 302 +HOST-RESOURCES-MIB::hrSWInstalledIndex.303 = INTEGER: 303 +HOST-RESOURCES-MIB::hrSWInstalledIndex.304 = INTEGER: 304 +HOST-RESOURCES-MIB::hrSWInstalledIndex.305 = INTEGER: 305 +HOST-RESOURCES-MIB::hrSWInstalledIndex.306 = INTEGER: 306 +HOST-RESOURCES-MIB::hrSWInstalledIndex.307 = INTEGER: 307 +HOST-RESOURCES-MIB::hrSWInstalledIndex.308 = INTEGER: 308 +HOST-RESOURCES-MIB::hrSWInstalledIndex.309 = INTEGER: 309 +HOST-RESOURCES-MIB::hrSWInstalledIndex.310 = INTEGER: 310 +HOST-RESOURCES-MIB::hrSWInstalledIndex.311 = INTEGER: 311 +HOST-RESOURCES-MIB::hrSWInstalledIndex.312 = INTEGER: 312 +HOST-RESOURCES-MIB::hrSWInstalledIndex.313 = INTEGER: 313 +HOST-RESOURCES-MIB::hrSWInstalledIndex.314 = INTEGER: 314 +HOST-RESOURCES-MIB::hrSWInstalledIndex.315 = INTEGER: 315 +HOST-RESOURCES-MIB::hrSWInstalledIndex.316 = INTEGER: 316 +HOST-RESOURCES-MIB::hrSWInstalledIndex.317 = INTEGER: 317 +HOST-RESOURCES-MIB::hrSWInstalledIndex.318 = INTEGER: 318 +HOST-RESOURCES-MIB::hrSWInstalledIndex.319 = INTEGER: 319 +HOST-RESOURCES-MIB::hrSWInstalledIndex.320 = INTEGER: 320 +HOST-RESOURCES-MIB::hrSWInstalledIndex.321 = INTEGER: 321 +HOST-RESOURCES-MIB::hrSWInstalledIndex.322 = INTEGER: 322 +HOST-RESOURCES-MIB::hrSWInstalledIndex.323 = INTEGER: 323 +HOST-RESOURCES-MIB::hrSWInstalledIndex.324 = INTEGER: 324 +HOST-RESOURCES-MIB::hrSWInstalledIndex.325 = INTEGER: 325 +HOST-RESOURCES-MIB::hrSWInstalledIndex.326 = INTEGER: 326 +HOST-RESOURCES-MIB::hrSWInstalledIndex.327 = INTEGER: 327 +HOST-RESOURCES-MIB::hrSWInstalledIndex.328 = INTEGER: 328 +HOST-RESOURCES-MIB::hrSWInstalledIndex.329 = INTEGER: 329 +HOST-RESOURCES-MIB::hrSWInstalledIndex.330 = INTEGER: 330 +HOST-RESOURCES-MIB::hrSWInstalledIndex.331 = INTEGER: 331 +HOST-RESOURCES-MIB::hrSWInstalledIndex.332 = INTEGER: 332 +HOST-RESOURCES-MIB::hrSWInstalledIndex.333 = INTEGER: 333 +HOST-RESOURCES-MIB::hrSWInstalledIndex.334 = INTEGER: 334 +HOST-RESOURCES-MIB::hrSWInstalledIndex.335 = INTEGER: 335 +HOST-RESOURCES-MIB::hrSWInstalledIndex.336 = INTEGER: 336 +HOST-RESOURCES-MIB::hrSWInstalledIndex.337 = INTEGER: 337 +HOST-RESOURCES-MIB::hrSWInstalledIndex.338 = INTEGER: 338 +HOST-RESOURCES-MIB::hrSWInstalledIndex.339 = INTEGER: 339 +HOST-RESOURCES-MIB::hrSWInstalledIndex.340 = INTEGER: 340 +HOST-RESOURCES-MIB::hrSWInstalledIndex.341 = INTEGER: 341 +HOST-RESOURCES-MIB::hrSWInstalledIndex.342 = INTEGER: 342 +HOST-RESOURCES-MIB::hrSWInstalledIndex.343 = INTEGER: 343 +HOST-RESOURCES-MIB::hrSWInstalledIndex.344 = INTEGER: 344 +HOST-RESOURCES-MIB::hrSWInstalledIndex.345 = INTEGER: 345 +HOST-RESOURCES-MIB::hrSWInstalledIndex.346 = INTEGER: 346 +HOST-RESOURCES-MIB::hrSWInstalledIndex.347 = INTEGER: 347 +HOST-RESOURCES-MIB::hrSWInstalledIndex.348 = INTEGER: 348 +HOST-RESOURCES-MIB::hrSWInstalledIndex.349 = INTEGER: 349 +HOST-RESOURCES-MIB::hrSWInstalledIndex.350 = INTEGER: 350 +HOST-RESOURCES-MIB::hrSWInstalledIndex.351 = INTEGER: 351 +HOST-RESOURCES-MIB::hrSWInstalledIndex.352 = INTEGER: 352 +HOST-RESOURCES-MIB::hrSWInstalledIndex.353 = INTEGER: 353 +HOST-RESOURCES-MIB::hrSWInstalledIndex.354 = INTEGER: 354 +HOST-RESOURCES-MIB::hrSWInstalledIndex.355 = INTEGER: 355 +HOST-RESOURCES-MIB::hrSWInstalledIndex.356 = INTEGER: 356 +HOST-RESOURCES-MIB::hrSWInstalledName.1 = STRING: "0xED 0xED 1.1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.2 = STRING: "1Password 4.4.1" +HOST-RESOURCES-MIB::hrSWInstalledName.3 = Hex-STRING: 41 64 6F 62 65 20 50 68 6F 74 6F 73 68 6F 70 20 +4C 69 67 68 74 72 6F 6F 6D 20 35 20 41 64 6F 62 +65 20 50 68 6F 74 6F 73 68 6F 70 20 4C 69 67 68 +74 72 6F 6F 6D 20 35 2E 36 20 5B 39 37 34 36 00 +07 DE +HOST-RESOURCES-MIB::hrSWInstalledName.4 = STRING: "Amadeus Pro 2.1.5" +HOST-RESOURCES-MIB::hrSWInstalledName.5 = STRING: "App Store 1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.6 = STRING: "Automator 2.4" +HOST-RESOURCES-MIB::hrSWInstalledName.7 = STRING: "BatChmod 1.7b3" +HOST-RESOURCES-MIB::hrSWInstalledName.8 = STRING: "BBEdit 10.5.7" +HOST-RESOURCES-MIB::hrSWInstalledName.9 = STRING: "Disk Speed Test 2.2" +HOST-RESOURCES-MIB::hrSWInstalledName.10 = STRING: "Mac Blu-ray Player 2.9.5.1442" +HOST-RESOURCES-MIB::hrSWInstalledName.11 = STRING: "BlueHarvest 5.5.7" +HOST-RESOURCES-MIB::hrSWInstalledName.12 = STRING: "Bwana 2.7" +HOST-RESOURCES-MIB::hrSWInstalledName.13 = STRING: "Cakebrew 1.0.9" +HOST-RESOURCES-MIB::hrSWInstalledName.14 = STRING: "Calculator 10.8" +HOST-RESOURCES-MIB::hrSWInstalledName.15 = STRING: "Calendar 7.0" +HOST-RESOURCES-MIB::hrSWInstalledName.16 = STRING: "Carbon Copy Cloner 3.5.6" +HOST-RESOURCES-MIB::hrSWInstalledName.17 = STRING: "Chess 3.10" +HOST-RESOURCES-MIB::hrSWInstalledName.18 = STRING: "CHM Reader 3.52" +HOST-RESOURCES-MIB::hrSWInstalledName.19 = STRING: "ChronoSync 4.5.2" +HOST-RESOURCES-MIB::hrSWInstalledName.20 = STRING: "ClipWrap 2.6.1" +HOST-RESOURCES-MIB::hrSWInstalledName.21 = STRING: "CloudClipboard 1.2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.22 = STRING: "Coda 2 2.0.14" +HOST-RESOURCES-MIB::hrSWInstalledName.23 = STRING: "Command-C 1.1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.24 = STRING: "Compressify 1.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.25 = STRING: "Contacts 8.0" +HOST-RESOURCES-MIB::hrSWInstalledName.26 = STRING: "ControlPlane 1.5.3" +HOST-RESOURCES-MIB::hrSWInstalledName.27 = STRING: "CSSEdit 85" +HOST-RESOURCES-MIB::hrSWInstalledName.28 = STRING: "DAEMON Tools Lite 2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.29 = STRING: "Dash 2.1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.30 = STRING: "Dashboard 1.8" +HOST-RESOURCES-MIB::hrSWInstalledName.31 = STRING: "Dictionary 2.2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.32 = STRING: "DiskMaker X (null)" +HOST-RESOURCES-MIB::hrSWInstalledName.33 = STRING: "DiskWarrior Version 4.4" +HOST-RESOURCES-MIB::hrSWInstalledName.34 = STRING: "DPS App Builder 3.0.0" +HOST-RESOURCES-MIB::hrSWInstalledName.35 = STRING: "Dropbox 2.10.27" +HOST-RESOURCES-MIB::hrSWInstalledName.36 = STRING: "DSLRRemotePro 1.8.3" +HOST-RESOURCES-MIB::hrSWInstalledName.37 = STRING: "DVD Player 5.7" +HOST-RESOURCES-MIB::hrSWInstalledName.38 = STRING: "EasyWMA 3.3.5" +HOST-RESOURCES-MIB::hrSWInstalledName.39 = STRING: "Email Backup Pro 2.8" +HOST-RESOURCES-MIB::hrSWInstalledName.40 = STRING: "eMaps 3.4.3" +HOST-RESOURCES-MIB::hrSWInstalledName.41 = STRING: "Espresso 2.1.5" +HOST-RESOURCES-MIB::hrSWInstalledName.42 = STRING: "Evernote 5.5.1" +HOST-RESOURCES-MIB::hrSWInstalledName.43 = STRING: "exifpurge 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.44 = STRING: "Expression Media 2 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.45 = STRING: "EyeTV 3.6.5 (7310)" +HOST-RESOURCES-MIB::hrSWInstalledName.46 = STRING: "FaceTime 3.0" +HOST-RESOURCES-MIB::hrSWInstalledName.47 = STRING: "File Buddy 10.0b2" +HOST-RESOURCES-MIB::hrSWInstalledName.48 = STRING: "Final Cut Pro 10.1" +HOST-RESOURCES-MIB::hrSWInstalledName.49 = STRING: "Firefox 32.0" +HOST-RESOURCES-MIB::hrSWInstalledName.50 = STRING: "Flip Player 3.2.0.16 " +HOST-RESOURCES-MIB::hrSWInstalledName.51 = STRING: "Font Book 5.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.52 = STRING: "Game Center 1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.53 = STRING: "BaseCamp 4.3.4" +HOST-RESOURCES-MIB::hrSWInstalledName.54 = STRING: "Garmin Express 3.2.17.0" +HOST-RESOURCES-MIB::hrSWInstalledName.55 = STRING: "POILoader 2.2.2" +HOST-RESOURCES-MIB::hrSWInstalledName.56 = STRING: "Garmin WebUpdater 2.1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.57 = STRING: "Geekbench 3 3.1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.58 = STRING: "GeekTool 3.1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.59 = STRING: "GitHub Responder Train" +HOST-RESOURCES-MIB::hrSWInstalledName.60 = STRING: "GitX 0.15.1949 dev" +HOST-RESOURCES-MIB::hrSWInstalledName.61 = STRING: "Chrome 37.0.2062.94" +HOST-RESOURCES-MIB::hrSWInstalledName.62 = STRING: "Google Earth 7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.63 = STRING: "gps4cam 7.2" +HOST-RESOURCES-MIB::hrSWInstalledName.64 = STRING: "GPSBabelFE Created by Qt/QMake" +HOST-RESOURCES-MIB::hrSWInstalledName.65 = STRING: "GraphicConverter 9 9.3" +HOST-RESOURCES-MIB::hrSWInstalledName.66 = STRING: "Growl 2.1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.67 = STRING: "HandBrake 0.9.9 x86_64" +HOST-RESOURCES-MIB::hrSWInstalledName.68 = STRING: "handyPrint 50013" +HOST-RESOURCES-MIB::hrSWInstalledName.69 = STRING: "HoudahGeo 3.7.3" +HOST-RESOURCES-MIB::hrSWInstalledName.70 = STRING: "HoudahGPS 5.0" +HOST-RESOURCES-MIB::hrSWInstalledName.71 = STRING: "HoudahSpot 3.8.6" +HOST-RESOURCES-MIB::hrSWInstalledName.72 = STRING: "HTTP Client 1.0.3" +HOST-RESOURCES-MIB::hrSWInstalledName.73 = STRING: "hubiC 0.2.6" +HOST-RESOURCES-MIB::hrSWInstalledName.74 = STRING: "iBooks 1.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.75 = STRING: "Icon Slate 4.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.76 = STRING: "Image Capture 6.3" +HOST-RESOURCES-MIB::hrSWInstalledName.77 = STRING: "iMovie 10.0.5" +HOST-RESOURCES-MIB::hrSWInstalledName.78 = STRING: "Install OS X 1.5.2" +HOST-RESOURCES-MIB::hrSWInstalledName.79 = STRING: "IORegistryExplorer 3.0.2" +HOST-RESOURCES-MIB::hrSWInstalledName.80 = STRING: "iPhoto 9.5.1" +HOST-RESOURCES-MIB::hrSWInstalledName.81 = STRING: "ipswDownloader 2.6.1" +HOST-RESOURCES-MIB::hrSWInstalledName.82 = STRING: "iScheduleTimeMachine 1.5" +HOST-RESOURCES-MIB::hrSWInstalledName.83 = STRING: "iSerial Reader 2.0.14" +HOST-RESOURCES-MIB::hrSWInstalledName.84 = STRING: "iTerm 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.85 = STRING: "iTunes 11.3.1" +HOST-RESOURCES-MIB::hrSWInstalledName.86 = STRING: "JDownloader 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.87 = STRING: "JSON Validator 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.88 = STRING: "KCNScrew 1.6" +HOST-RESOURCES-MIB::hrSWInstalledName.89 = STRING: "Keynote 6.2.2" +HOST-RESOURCES-MIB::hrSWInstalledName.90 = STRING: "LaunchBar 6.1" +HOST-RESOURCES-MIB::hrSWInstalledName.91 = STRING: "LaunchControl 1.14.1" +HOST-RESOURCES-MIB::hrSWInstalledName.92 = STRING: "LaunchD Task Scheduler 1.0.5" +HOST-RESOURCES-MIB::hrSWInstalledName.93 = STRING: "Launchpad 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.94 = STRING: "Le Grand Robert 2.1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.95 = STRING: "Le Petit Robert 3.4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.96 = STRING: "Little Snitch Configuration 3.3.4" +HOST-RESOURCES-MIB::hrSWInstalledName.97 = STRING: "Local Cloud 1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.98 = STRING: "Lyn 1.5.3" +HOST-RESOURCES-MIB::hrSWInstalledName.99 = STRING: "Mail 7.3" +HOST-RESOURCES-MIB::hrSWInstalledName.100 = STRING: "ManageEngine MibBrowser 5.0" +HOST-RESOURCES-MIB::hrSWInstalledName.101 = STRING: "Maps 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.102 = STRING: "Maria 1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.103 = STRING: "Mastock 6.75" +HOST-RESOURCES-MIB::hrSWInstalledName.104 = STRING: "MDB Tool - For Microsoft Access 1.0.3" +HOST-RESOURCES-MIB::hrSWInstalledName.105 = STRING: "Media Rage 3.4.9" +HOST-RESOURCES-MIB::hrSWInstalledName.106 = STRING: "Messages 8.0" +HOST-RESOURCES-MIB::hrSWInstalledName.107 = STRING: "Microsoft Remote Desktop 8.0.25073" +HOST-RESOURCES-MIB::hrSWInstalledName.108 = STRING: "Mission Control 1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.109 = STRING: "Mornings 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.110 = STRING: "MPlayerX 1.0.22.1" +HOST-RESOURCES-MIB::hrSWInstalledName.111 = STRING: "Name Mangler 3.3.1" +HOST-RESOURCES-MIB::hrSWInstalledName.112 = STRING: "Navicat Premium 11.0.15" +HOST-RESOURCES-MIB::hrSWInstalledName.113 = STRING: "Notes 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.114 = STRING: "Numbers 3.2.2" +HOST-RESOURCES-MIB::hrSWInstalledName.115 = STRING: "nvALT 2.2b" +HOST-RESOURCES-MIB::hrSWInstalledName.116 = STRING: "OnyX 2.8.5" +HOST-RESOURCES-MIB::hrSWInstalledName.117 = STRING: "OpenPlex 0.2" +HOST-RESOURCES-MIB::hrSWInstalledName.118 = STRING: "owncloud 1.6.1 (build 359)" +HOST-RESOURCES-MIB::hrSWInstalledName.119 = STRING: "Pacifist 3.2.4" +HOST-RESOURCES-MIB::hrSWInstalledName.120 = STRING: "Pages 5.2.2" +HOST-RESOURCES-MIB::hrSWInstalledName.121 = STRING: "Parallels Desktop 9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.122 = STRING: "PhoneView 2.10.2" +HOST-RESOURCES-MIB::hrSWInstalledName.123 = STRING: "Photo Booth 6.0" +HOST-RESOURCES-MIB::hrSWInstalledName.124 = STRING: "Photo Transfer App 2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.125 = STRING: "PhotoSync 2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.126 = STRING: "PHP Function Index 2.1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.127 = STRING: "Platypus 4.8" +HOST-RESOURCES-MIB::hrSWInstalledName.128 = STRING: "Plex 1.2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.129 = STRING: "Pocket 1.5.2" +HOST-RESOURCES-MIB::hrSWInstalledName.130 = STRING: "Poedit 1.6.9" +HOST-RESOURCES-MIB::hrSWInstalledName.131 = STRING: "Popcorn-Time Version 0.3.2" +HOST-RESOURCES-MIB::hrSWInstalledName.132 = STRING: "PortAuthority 6.0.0" +HOST-RESOURCES-MIB::hrSWInstalledName.133 = STRING: "Preview 7.0" +HOST-RESOURCES-MIB::hrSWInstalledName.134 = STRING: "QREncoder 1.5" +HOST-RESOURCES-MIB::hrSWInstalledName.135 = STRING: "QuickTime Player 10.3" +HOST-RESOURCES-MIB::hrSWInstalledName.136 = STRING: "ReadKit 2.4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.137 = STRING: "Reeder 2.5.1" +HOST-RESOURCES-MIB::hrSWInstalledName.138 = STRING: "Reminders 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.139 = STRING: "RDC 2.1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.140 = STRING: "rubiTrack 3 3.2.5" +HOST-RESOURCES-MIB::hrSWInstalledName.141 = STRING: "Safari 7.0.6" +HOST-RESOURCES-MIB::hrSWInstalledName.142 = STRING: "ShutterCount 1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.143 = STRING: "Simplenote 1.0.11" +HOST-RESOURCES-MIB::hrSWInstalledName.144 = STRING: "SmartConverter 2.0.2" +HOST-RESOURCES-MIB::hrSWInstalledName.145 = STRING: "SmartGit/Hg 6.0.5" +HOST-RESOURCES-MIB::hrSWInstalledName.146 = STRING: "Snippets 0.8.2" +HOST-RESOURCES-MIB::hrSWInstalledName.147 = STRING: "SoundConverter 20120123.0" +HOST-RESOURCES-MIB::hrSWInstalledName.148 = STRING: "SourceTree 1.9.7" +HOST-RESOURCES-MIB::hrSWInstalledName.149 = STRING: "Spotify 0.9.8.296.g91f68827" +HOST-RESOURCES-MIB::hrSWInstalledName.150 = STRING: "Stickies 10.0" +HOST-RESOURCES-MIB::hrSWInstalledName.151 = STRING: "Sublime Text 2 Version 2.0.2, Build 2221" +HOST-RESOURCES-MIB::hrSWInstalledName.152 = STRING: "SuperDuper 2.7.2" +HOST-RESOURCES-MIB::hrSWInstalledName.153 = STRING: "svnX 1.3.4" +HOST-RESOURCES-MIB::hrSWInstalledName.154 = STRING: "DSAssistant Created by Qt/QMake" +HOST-RESOURCES-MIB::hrSWInstalledName.155 = STRING: "Synology Cloud Station 2247" +HOST-RESOURCES-MIB::hrSWInstalledName.156 = STRING: "System Preferences 13.0" +HOST-RESOURCES-MIB::hrSWInstalledName.157 = STRING: "TextEdit 1.9" +HOST-RESOURCES-MIB::hrSWInstalledName.158 = STRING: "TextMate 2.0-alpha.9561" +HOST-RESOURCES-MIB::hrSWInstalledName.159 = STRING: "TextWrangler 4.5.10" +HOST-RESOURCES-MIB::hrSWInstalledName.160 = STRING: "The Unarchiver 3.9.1" +HOST-RESOURCES-MIB::hrSWInstalledName.161 = STRING: "Time Machine 1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.162 = STRING: "Together 3 3.2.3" +HOST-RESOURCES-MIB::hrSWInstalledName.163 = STRING: "TomTom HOME 2.9.7.2119" +HOST-RESOURCES-MIB::hrSWInstalledName.164 = STRING: "TorrenTV Version 0.9.3" +HOST-RESOURCES-MIB::hrSWInstalledName.165 = STRING: "TrailRunner 3.7.756" +HOST-RESOURCES-MIB::hrSWInstalledName.166 = STRING: "Transmission 2.84" +HOST-RESOURCES-MIB::hrSWInstalledName.167 = STRING: "Transmit 4.4.6" +HOST-RESOURCES-MIB::hrSWInstalledName.168 = STRING: "Trim Enabler 3.2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.169 = STRING: "(null) 1.8.4" +HOST-RESOURCES-MIB::hrSWInstalledName.170 = STRING: "(null) 0.2" +HOST-RESOURCES-MIB::hrSWInstalledName.171 = STRING: "Vinoteka 3.4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.172 = STRING: "VirtualBox 4.3.14" +HOST-RESOURCES-MIB::hrSWInstalledName.173 = STRING: "VLC media player 2.1.5" +HOST-RESOURCES-MIB::hrSWInstalledName.174 = STRING: "VMware Fusion e.x.p" +HOST-RESOURCES-MIB::hrSWInstalledName.175 = STRING: "VMware Fusion 7.0.0" +HOST-RESOURCES-MIB::hrSWInstalledName.176 = STRING: "Vox 2.1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.177 = STRING: "Depicus Wake On Lan 1.6" +HOST-RESOURCES-MIB::hrSWInstalledName.178 = STRING: "Winclone 4.4" +HOST-RESOURCES-MIB::hrSWInstalledName.179 = STRING: "Xcode 5.1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.180 = STRING: "Adobe Content Viewer 3.4.2" +HOST-RESOURCES-MIB::hrSWInstalledName.181 = STRING: "Adobe Bridge CC 6.0.1.6" +HOST-RESOURCES-MIB::hrSWInstalledName.182 = STRING: "InDesign 9.2.1.101" +HOST-RESOURCES-MIB::hrSWInstalledName.183 = STRING: "Adobe Media Encoder CC 7.2.0.43" +HOST-RESOURCES-MIB::hrSWInstalledName.184 = STRING: "Photoshop 14.2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.185 = STRING: "eclipse 4.4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.186 = STRING: "Encyclopaedia Universalis 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.187 = STRING: "Document Connection 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.188 = STRING: "Excel 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.189 = STRING: "PowerPoint 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.190 = STRING: "Word 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.191 = STRING: "Tous Comptes Faits Personnel 5.0.14" +HOST-RESOURCES-MIB::hrSWInstalledName.192 = STRING: "Activity Monitor 10.9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.193 = STRING: "Adobe AIR Application Installer 4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.194 = STRING: "Adobe AIR Installer 4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.195 = STRING: "Adobe Flash Player Install Manager 14.0.0.176" +HOST-RESOURCES-MIB::hrSWInstalledName.196 = STRING: "AirPort Utility 6.3.2" +HOST-RESOURCES-MIB::hrSWInstalledName.197 = STRING: "AppleScript Editor 2.6.1" +HOST-RESOURCES-MIB::hrSWInstalledName.198 = STRING: "Audio MIDI Setup 3.0.6" +HOST-RESOURCES-MIB::hrSWInstalledName.199 = STRING: "Bluetooth File Exchange 4.2.6" +HOST-RESOURCES-MIB::hrSWInstalledName.200 = STRING: "Boot Camp Assistant 5.1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.201 = STRING: "ColorSync Utility 4.9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.202 = STRING: "Console 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.203 = STRING: "DigitalColor Meter 5.9" +HOST-RESOURCES-MIB::hrSWInstalledName.204 = STRING: "Disk Utility 13" +HOST-RESOURCES-MIB::hrSWInstalledName.205 = STRING: "Grab 1.8" +HOST-RESOURCES-MIB::hrSWInstalledName.206 = STRING: "Grapher 2.5" +HOST-RESOURCES-MIB::hrSWInstalledName.207 = STRING: "Keychain Access 9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.208 = STRING: "Migration Assistant 5" +HOST-RESOURCES-MIB::hrSWInstalledName.209 = STRING: "System Information 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.210 = STRING: "Terminal 2.4" +HOST-RESOURCES-MIB::hrSWInstalledName.211 = STRING: "VoiceOver Utility 6.0" +HOST-RESOURCES-MIB::hrSWInstalledName.212 = STRING: "X11 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.213 = STRING: "DocumentLauncher 2.0.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.214 = STRING: "Auto Update Service 2.3.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.215 = STRING: "Digital Photo Professional Batch 3.14.15" +HOST-RESOURCES-MIB::hrSWInstalledName.216 = STRING: "Digital Photo Professional 3.14.15" +HOST-RESOURCES-MIB::hrSWInstalledName.217 = STRING: "DocumentLauncher 2.0.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.218 = STRING: "EOS Utility 0.1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.219 = STRING: "DocumentLauncher 2.0.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.220 = STRING: "PhotoStitch Launcher 1.2.4.25" +HOST-RESOURCES-MIB::hrSWInstalledName.221 = STRING: "DocumentLauncher 2.0.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.222 = STRING: "iReasoning MIB Browser 6" +HOST-RESOURCES-MIB::hrSWInstalledName.223 = STRING: "Equation Editor 14.2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.224 = STRING: "Microsoft Alerts Daemon 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.225 = STRING: "Chart Converter 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.226 = STRING: "Clip Gallery 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.227 = STRING: "Database Daemon 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.228 = STRING: "Microsoft Database Utility 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.229 = STRING: "Graph 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.230 = STRING: "Office Reminders 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.231 = STRING: "Office Setup Assistant 14.0.0" +HOST-RESOURCES-MIB::hrSWInstalledName.232 = STRING: "Microsoft Query 12.0.0" +HOST-RESOURCES-MIB::hrSWInstalledName.233 = STRING: "Upload Center 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.234 = STRING: "Office365 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.235 = STRING: "Open XML for Excel 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.236 = STRING: "SyncServicesAgent 14.3.9" +HOST-RESOURCES-MIB::hrSWInstalledName.237 = STRING: "TCFMobile 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.238 = STRING: "EOS Utility 2 2.14.0" +HOST-RESOURCES-MIB::hrSWInstalledName.239 = STRING: "DocumentLauncher 2.0.0.1" +HOST-RESOURCES-MIB::hrSWInstalledName.240 = STRING: "PhotoStitch 3.2.4.25" +HOST-RESOURCES-MIB::hrSWInstalledName.241 = STRING: "Viewer 3.2.4.25" +HOST-RESOURCES-MIB::hrSWInstalledName.242 = STRING: "Solver 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.243 = STRING: "Adobe Application Manager 8.0.0.22" +HOST-RESOURCES-MIB::hrSWInstalledName.244 = STRING: "Adobe Application Manager 8.0.0.22" +HOST-RESOURCES-MIB::hrSWInstalledName.245 = STRING: "Setup 8.0.0.13" +HOST-RESOURCES-MIB::hrSWInstalledName.246 = STRING: "Setup 8.0.0.13" +HOST-RESOURCES-MIB::hrSWInstalledName.247 = STRING: "Setup 5.0.65.0" +HOST-RESOURCES-MIB::hrSWInstalledName.248 = STRING: "AdobeIPCBroker 5.0.0.75" +HOST-RESOURCES-MIB::hrSWInstalledName.249 = STRING: "AAM Registration Notifier 3.0.64.0" +HOST-RESOURCES-MIB::hrSWInstalledName.250 = Hex-STRING: 61 64 6F 62 65 5F 6C 69 63 75 74 69 6C 20 41 64 +6F 62 65 20 4C 69 63 65 6E 73 65 20 55 74 69 6C +69 74 79 20 32 2E 30 2E 30 2E 31 30 20 28 42 75 +69 6C 64 56 65 72 73 69 6F 6E 3A 20 32 2E 30 00 +07 DE 03 1B 11 0C 08 00 2D 01 00 04 65 0B 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 +00 00 00 00 20 +HOST-RESOURCES-MIB::hrSWInstalledName.251 = STRING: "AAM Registration Notifier 7.0.0.474" +HOST-RESOURCES-MIB::hrSWInstalledName.252 = STRING: "adobe_licutil 7.0.1.106" +HOST-RESOURCES-MIB::hrSWInstalledName.253 = STRING: "AAM Registration Notifier 8.0.0.22" +HOST-RESOURCES-MIB::hrSWInstalledName.254 = STRING: "adobe_licutil 8.0.0.21" +HOST-RESOURCES-MIB::hrSWInstalledName.255 = STRING: "AAM Updates Notifier 8.0.0.22" +HOST-RESOURCES-MIB::hrSWInstalledName.256 = STRING: "LogTransport2 2.1.2.1652" +HOST-RESOURCES-MIB::hrSWInstalledName.257 = STRING: "Creative Cloud 1.5.0.367" +HOST-RESOURCES-MIB::hrSWInstalledName.258 = STRING: "Core Sync 1.2.1.115" +HOST-RESOURCES-MIB::hrSWInstalledName.259 = STRING: "Core Sync 1.1.4.19" +HOST-RESOURCES-MIB::hrSWInstalledName.260 = STRING: "Adobe CEF Helper 2.5.0.367" +HOST-RESOURCES-MIB::hrSWInstalledName.261 = STRING: "Creative Cloud Installer 2.5.0.367" +HOST-RESOURCES-MIB::hrSWInstalledName.262 = STRING: "Creative Cloud Uninstaller 2.5.0.367" +HOST-RESOURCES-MIB::hrSWInstalledName.263 = STRING: "CreativeCloud(URIHandler) 2.5.0.367" +HOST-RESOURCES-MIB::hrSWInstalledName.264 = STRING: "Uninstall Product 5.0.65.0" +HOST-RESOURCES-MIB::hrSWInstalledName.265 = STRING: "Uninstall Product 8.0.0.13" +HOST-RESOURCES-MIB::hrSWInstalledName.266 = STRING: "AddPrinter 9.4" +HOST-RESOURCES-MIB::hrSWInstalledName.267 = STRING: "AddressBookUrlForwarder 8.0" +HOST-RESOURCES-MIB::hrSWInstalledName.268 = STRING: "AirPlayUIAgent 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.269 = STRING: "AirPort Base Station Agent 2.2" +HOST-RESOURCES-MIB::hrSWInstalledName.270 = STRING: "AppDownloadLauncher 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.271 = STRING: "Apple80211Agent 9.3.2" +HOST-RESOURCES-MIB::hrSWInstalledName.272 = STRING: "AppleFileServer 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.273 = STRING: "AppleGraphicsWarning 2.2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.274 = STRING: "AppleScript Utility 1.1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.275 = STRING: "Archive Utility 10.9.1" +HOST-RESOURCES-MIB::hrSWInstalledName.276 = STRING: "Automator Launcher 1.3" +HOST-RESOURCES-MIB::hrSWInstalledName.277 = STRING: "Automator Runner 1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.278 = STRING: "AVRCPAgent 4.2.6" +HOST-RESOURCES-MIB::hrSWInstalledName.279 = STRING: "Bluetooth Setup Assistant 4.2.6" +HOST-RESOURCES-MIB::hrSWInstalledName.280 = STRING: "BluetoothUIServer 4.2.6" +HOST-RESOURCES-MIB::hrSWInstalledName.281 = STRING: "Calendar / Reminders 7.0" +HOST-RESOURCES-MIB::hrSWInstalledName.282 = STRING: "Captive Network Assistant 3.0" +HOST-RESOURCES-MIB::hrSWInstalledName.283 = STRING: "Certificate Assistant 5.0" +HOST-RESOURCES-MIB::hrSWInstalledName.284 = STRING: "CoreLocationAgent 1486.12" +HOST-RESOURCES-MIB::hrSWInstalledName.285 = STRING: "CoreServicesUIAgent 101.3" +HOST-RESOURCES-MIB::hrSWInstalledName.286 = STRING: "Database Events 1.0.6" +HOST-RESOURCES-MIB::hrSWInstalledName.287 = STRING: "Directory Utility 5.0" +HOST-RESOURCES-MIB::hrSWInstalledName.288 = STRING: "DiskImageMounter 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.289 = STRING: "Dock 1.8" +HOST-RESOURCES-MIB::hrSWInstalledName.290 = STRING: "Expansion Slot Utility 1.5.1" +HOST-RESOURCES-MIB::hrSWInstalledName.291 = STRING: "Feedback Assistant 3.2.3" +HOST-RESOURCES-MIB::hrSWInstalledName.292 = STRING: "File Sync 8.1" +HOST-RESOURCES-MIB::hrSWInstalledName.293 = STRING: "FileSyncAgent 8.1" +HOST-RESOURCES-MIB::hrSWInstalledName.294 = STRING: "Finder 10.9.4" +HOST-RESOURCES-MIB::hrSWInstalledName.295 = STRING: "Folder Actions Dispatcher 1.0.4" +HOST-RESOURCES-MIB::hrSWInstalledName.296 = STRING: "Folder Actions Setup 1.1.6" +HOST-RESOURCES-MIB::hrSWInstalledName.297 = STRING: "Help Viewer 5.2" +HOST-RESOURCES-MIB::hrSWInstalledName.298 = STRING: "Image Events 1.1.6" +HOST-RESOURCES-MIB::hrSWInstalledName.299 = STRING: "Install Command Line Developer Tools 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.300 = STRING: "Install in Progress 3.0" +HOST-RESOURCES-MIB::hrSWInstalledName.301 = STRING: "Installer 6.0" +HOST-RESOURCES-MIB::hrSWInstalledName.302 = STRING: "Jar Launcher 14.9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.303 = STRING: "Java Web Start 14.9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.304 = STRING: "KeyboardSetupAssistant 10.7" +HOST-RESOURCES-MIB::hrSWInstalledName.305 = STRING: "Keychain Circle Notification 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.306 = STRING: "Language Chooser 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.307 = STRING: "Location Menu 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.308 = STRING: "loginwindow 9.0" +HOST-RESOURCES-MIB::hrSWInstalledName.309 = STRING: "ManagedClient 6.0.2" +HOST-RESOURCES-MIB::hrSWInstalledName.310 = STRING: "Memory Slot Utility 1.5.1" +HOST-RESOURCES-MIB::hrSWInstalledName.311 = STRING: "MRTAgent 1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.312 = STRING: "NetAuthAgent 5.0" +HOST-RESOURCES-MIB::hrSWInstalledName.313 = STRING: "Network Diagnostics 1.2" +HOST-RESOURCES-MIB::hrSWInstalledName.314 = STRING: "Network Setup Assistant 10.8.0" +HOST-RESOURCES-MIB::hrSWInstalledName.315 = STRING: "NotificationCenter 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.316 = STRING: "OBEXAgent 4.2.6" +HOST-RESOURCES-MIB::hrSWInstalledName.317 = STRING: "ODSAgent 1.8" +HOST-RESOURCES-MIB::hrSWInstalledName.318 = STRING: "Pass Viewer 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.319 = STRING: "Problem Reporter 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.320 = STRING: "rcd 325.7" +HOST-RESOURCES-MIB::hrSWInstalledName.321 = STRING: "RegisterPluginIM 1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.322 = STRING: "ReportPanic 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.323 = STRING: "Screen Sharing 1.5" +HOST-RESOURCES-MIB::hrSWInstalledName.324 = STRING: "SecurityFixer 10.8" +HOST-RESOURCES-MIB::hrSWInstalledName.325 = STRING: "Setup Assistant 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.326 = STRING: "SocialPushAgent 25" +HOST-RESOURCES-MIB::hrSWInstalledName.327 = STRING: "Software Update 6" +HOST-RESOURCES-MIB::hrSWInstalledName.328 = STRING: "Spotlight 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.329 = STRING: "System Events 1.3.6" +HOST-RESOURCES-MIB::hrSWInstalledName.330 = STRING: "System Image Utility 10.9.4" +HOST-RESOURCES-MIB::hrSWInstalledName.331 = STRING: "SystemUIServer 1.7" +HOST-RESOURCES-MIB::hrSWInstalledName.332 = STRING: "Ticket Viewer 4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.333 = STRING: "UniversalAccessControl 7.0" +HOST-RESOURCES-MIB::hrSWInstalledName.334 = STRING: "UnmountAssistantAgent 4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.335 = STRING: "UserNotificationCenter 3.3.0" +HOST-RESOURCES-MIB::hrSWInstalledName.336 = STRING: "VoiceOver 6.0" +HOST-RESOURCES-MIB::hrSWInstalledName.337 = STRING: "ZoomWindow 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.338 = STRING: "Network Utility 1.8" +HOST-RESOURCES-MIB::hrSWInstalledName.339 = STRING: "RAID Utility 4.0" +HOST-RESOURCES-MIB::hrSWInstalledName.340 = STRING: "Wireless Diagnostics 3.0" +HOST-RESOURCES-MIB::hrSWInstalledName.341 = STRING: "FileSystemUIAgent 2.0" +HOST-RESOURCES-MIB::hrSWInstalledName.342 = STRING: "ARDAgent 3.7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.343 = STRING: "ReclaimSpaceAgent 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.344 = STRING: "TMHelperAgent 10.9" +HOST-RESOURCES-MIB::hrSWInstalledName.345 = STRING: "TISwitcher 1.1" +HOST-RESOURCES-MIB::hrSWInstalledName.346 = STRING: "LockScreen 3.7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.347 = STRING: "Share Screen Request 3.7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.348 = STRING: "SSDragHelper 3.7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.349 = STRING: "SSAssistanceCursor 3.7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.350 = STRING: "AppleSpell 2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.351 = STRING: "ChineseTextConverterService 2.1" +HOST-RESOURCES-MIB::hrSWInstalledName.352 = STRING: "ImageCaptureService 6.5" +HOST-RESOURCES-MIB::hrSWInstalledName.353 = STRING: "OpenSpell 1.0" +HOST-RESOURCES-MIB::hrSWInstalledName.354 = STRING: "Speech Service 4.7.1" +HOST-RESOURCES-MIB::hrSWInstalledName.355 = STRING: "SpotlightService 3.0" +HOST-RESOURCES-MIB::hrSWInstalledName.356 = STRING: "SummaryService 2.0" +HOST-RESOURCES-MIB::hrSWInstalledID.1 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.2 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.3 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.4 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.5 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.6 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.7 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.8 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.9 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.10 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.11 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.12 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.13 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.14 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.15 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.16 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.17 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.18 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.19 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.20 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.21 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.22 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.23 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.24 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.25 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.26 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.27 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.28 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.29 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.30 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.31 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.32 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.33 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.34 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.35 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.36 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.37 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.38 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.39 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.40 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.41 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.42 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.43 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.44 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.45 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.46 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.47 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.48 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.49 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.50 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.51 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.52 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.53 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.54 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.55 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.56 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.57 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.58 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.59 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.60 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.61 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.62 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.63 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.64 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.65 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.66 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.67 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.68 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.69 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.70 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.71 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.72 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.73 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.74 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.75 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.76 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.77 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.78 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.79 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.80 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.81 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.82 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.83 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.84 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.85 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.86 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.87 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.88 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.89 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.90 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.91 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.92 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.93 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.94 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.95 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.96 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.97 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.98 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.99 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.100 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.101 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.102 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.103 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.104 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.105 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.106 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.107 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.108 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.109 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.110 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.111 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.112 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.113 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.114 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.115 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.116 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.117 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.118 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.119 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.120 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.121 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.122 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.123 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.124 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.125 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.126 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.127 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.128 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.129 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.130 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.131 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.132 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.133 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.134 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.135 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.136 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.137 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.138 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.139 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.140 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.141 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.142 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.143 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.144 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.145 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.146 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.147 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.148 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.149 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.150 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.151 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.152 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.153 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.154 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.155 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.156 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.157 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.158 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.159 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.160 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.161 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.162 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.163 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.164 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.165 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.166 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.167 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.168 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.169 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.170 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.171 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.172 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.173 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.174 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.175 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.176 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.177 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.178 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.179 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.180 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.181 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.182 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.183 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.184 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.185 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.186 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.187 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.188 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.189 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.190 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.191 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.192 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.193 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.194 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.195 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.196 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.197 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.198 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.199 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.200 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.201 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.202 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.203 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.204 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.205 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.206 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.207 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.208 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.209 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.210 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.211 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.212 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.213 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.214 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.215 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.216 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.217 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.218 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.219 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.220 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.221 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.222 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.223 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.224 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.225 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.226 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.227 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.228 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.229 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.230 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.231 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.232 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.233 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.234 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.235 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.236 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.237 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.238 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.239 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.240 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.241 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.242 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.243 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.244 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.245 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.246 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.247 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.248 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.249 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.250 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.251 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.252 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.253 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.254 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.255 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.256 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.257 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.258 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.259 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.260 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.261 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.262 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.263 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.264 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.265 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.266 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.267 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.268 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.269 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.270 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.271 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.272 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.273 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.274 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.275 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.276 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.277 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.278 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.279 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.280 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.281 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.282 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.283 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.284 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.285 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.286 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.287 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.288 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.289 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.290 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.291 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.292 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.293 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.294 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.295 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.296 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.297 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.298 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.299 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.300 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.301 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.302 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.303 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.304 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.305 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.306 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.307 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.308 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.309 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.310 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.311 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.312 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.313 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.314 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.315 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.316 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.317 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.318 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.319 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.320 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.321 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.322 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.323 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.324 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.325 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.326 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.327 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.328 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.329 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.330 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.331 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.332 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.333 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.334 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.335 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.336 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.337 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.338 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.339 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.340 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.341 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.342 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.343 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.344 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.345 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.346 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.347 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.348 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.349 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.350 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.351 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.352 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.353 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.354 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.355 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.356 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledType.1 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.2 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.3 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.4 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.5 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.6 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.7 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.8 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.9 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.10 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.11 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.12 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.13 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.14 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.15 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.16 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.17 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.18 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.19 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.20 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.21 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.22 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.23 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.24 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.25 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.26 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.27 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.28 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.29 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.30 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.31 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.32 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.33 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.34 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.35 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.36 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.37 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.38 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.39 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.40 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.41 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.42 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.43 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.44 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.45 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.46 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.47 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.48 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.49 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.50 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.51 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.52 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.53 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.54 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.55 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.56 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.57 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.58 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.59 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.60 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.61 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.62 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.63 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.64 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.65 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.66 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.67 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.68 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.69 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.70 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.71 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.72 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.73 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.74 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.75 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.76 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.77 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.78 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.79 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.80 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.81 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.82 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.83 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.84 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.85 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.86 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.87 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.88 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.89 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.90 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.91 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.92 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.93 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.94 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.95 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.96 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.97 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.98 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.99 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.100 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.101 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.102 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.103 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.104 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.105 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.106 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.107 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.108 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.109 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.110 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.111 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.112 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.113 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.114 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.115 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.116 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.117 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.118 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.119 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.120 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.121 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.122 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.123 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.124 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.125 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.126 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.127 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.128 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.129 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.130 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.131 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.132 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.133 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.134 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.135 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.136 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.137 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.138 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.139 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.140 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.141 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.142 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.143 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.144 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.145 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.146 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.147 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.148 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.149 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.150 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.151 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.152 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.153 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.154 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.155 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.156 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.157 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.158 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.159 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.160 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.161 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.162 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.163 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.164 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.165 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.166 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.167 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.168 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.169 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.170 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.171 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.172 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.173 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.174 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.175 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.176 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.177 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.178 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.179 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.180 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.181 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.182 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.183 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.184 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.185 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.186 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.187 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.188 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.189 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.190 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.191 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.192 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.193 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.194 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.195 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.196 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.197 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.198 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.199 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.200 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.201 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.202 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.203 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.204 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.205 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.206 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.207 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.208 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.209 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.210 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.211 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.212 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.213 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.214 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.215 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.216 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.217 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.218 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.219 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.220 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.221 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.222 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.223 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.224 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.225 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.226 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.227 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.228 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.229 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.230 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.231 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.232 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.233 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.234 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.235 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.236 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.237 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.238 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.239 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.240 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.241 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.242 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.243 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.244 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.245 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.246 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.247 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.248 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.249 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.250 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.251 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.252 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.253 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.254 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.255 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.256 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.257 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.258 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.259 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.260 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.261 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.262 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.263 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.264 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.265 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.266 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.267 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.268 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.269 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.270 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.271 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.272 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.273 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.274 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.275 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.276 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.277 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.278 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.279 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.280 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.281 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.282 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.283 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.284 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.285 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.286 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.287 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.288 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.289 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.290 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.291 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.292 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.293 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.294 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.295 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.296 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.297 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.298 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.299 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.300 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.301 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.302 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.303 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.304 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.305 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.306 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.307 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.308 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.309 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.310 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.311 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.312 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.313 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.314 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.315 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.316 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.317 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.318 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.319 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.320 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.321 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.322 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.323 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.324 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.325 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.326 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.327 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.328 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.329 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.330 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.331 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.332 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.333 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.334 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.335 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.336 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.337 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.338 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.339 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.340 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.341 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.342 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.343 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.344 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.345 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.346 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.347 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.348 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.349 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.350 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.351 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.352 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.353 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.354 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.355 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.356 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledDate.1 = STRING: 2012-8-15,20:31:57.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.2 = STRING: 2014-6-8,11:11:8.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.3 = STRING: 2014-7-31,17:50:39.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.4 = STRING: 2014-1-6,9:54:14.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.5 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.6 = STRING: 2013-4-19,19:15:24.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.7 = STRING: 2013-9-14,21:59:19.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.8 = STRING: 2013-12-18,19:32:32.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.9 = STRING: 2014-8-30,12:8:0.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.10 = STRING: 2013-12-13,9:27:12.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.11 = STRING: 2013-10-26,2:21:45.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.12 = STRING: 2009-10-17,2:30:3.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.13 = STRING: 2014-8-1,6:39:39.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.14 = STRING: 2013-8-25,10:5:25.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.15 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.16 = STRING: 2014-8-1,20:5:29.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.17 = STRING: 2013-8-25,9:17:12.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.18 = STRING: 2014-3-29,16:44:47.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.19 = STRING: 2014-8-21,18:18:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.20 = STRING: 2013-6-12,18:24:2.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.21 = STRING: 2014-3-29,16:24:20.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.22 = STRING: 2014-4-25,22:51:48.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.23 = STRING: 2014-3-27,21:45:32.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.24 = STRING: 2014-3-26,9:25:1.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.25 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.26 = STRING: 2014-7-22,23:15:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.27 = STRING: 2010-5-17,15:47:33.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.28 = STRING: 2014-1-16,18:19:40.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.29 = STRING: 2014-6-21,10:26:28.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.30 = STRING: 2013-8-25,3:38:0.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.31 = STRING: 2013-8-25,8:52:25.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.32 = STRING: 2014-2-4,0:53:9.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.33 = STRING: 2011-9-23,22:34:32.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.34 = STRING: 2014-3-27,18:10:45.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.35 = STRING: 2014-7-30,2:25:33.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.36 = STRING: 2009-7-24,15:56:32.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.37 = STRING: 2013-12-9,6:44:48.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.38 = STRING: 2012-9-1,11:36:23.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.39 = STRING: 2013-10-30,1:8:59.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.40 = STRING: 2013-11-17,0:55:41.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.41 = STRING: 2013-12-4,19:19:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.42 = STRING: 2014-4-11,7:54:18.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.43 = STRING: 2014-3-26,9:13:48.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.44 = STRING: 2014-3-27,6:19:2.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.45 = STRING: 2014-2-20,0:59:49.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.46 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.47 = STRING: 2012-7-5,13:3:14.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.48 = STRING: 2013-12-19,18:9:3.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.49 = STRING: 2014-9-3,16:41:13.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.50 = STRING: 2014-3-26,18:58:35.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.51 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.52 = STRING: 2013-12-20,4:10:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.53 = STRING: 2014-6-28,18:24:19.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.54 = STRING: 2014-3-30,13:4:15.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.55 = STRING: 2014-3-26,9:27:45.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.56 = STRING: 2014-3-26,9:28:50.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.57 = STRING: 2013-12-13,21:22:14.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.58 = STRING: 2013-7-2,20:16:17.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.59 = STRING: 2014-7-23,8:48:28.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.60 = STRING: 2014-7-27,8:49:47.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.61 = STRING: 2014-8-19,22:13:29.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.62 = STRING: 2013-6-26,19:24:54.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.63 = STRING: 2014-3-29,16:39:31.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.64 = STRING: 2014-3-3,3:34:18.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.65 = STRING: 2014-8-5,12:25:27.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.66 = STRING: 2014-3-29,18:41:32.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.67 = STRING: 2013-5-18,15:28:4.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.68 = STRING: 2013-10-3,3:26:32.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.69 = STRING: 2014-9-2,18:53:13.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.70 = STRING: 2014-3-26,12:3:47.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.71 = STRING: 2014-3-13,8:59:38.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.72 = STRING: 2014-3-26,11:57:33.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.73 = STRING: 2014-9-5,6:34:33.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.74 = STRING: 2014-3-26,6:21:41.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.75 = STRING: 2014-6-6,18:57:37.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.76 = STRING: 2013-8-25,7:54:39.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.77 = STRING: 2014-8-22,6:24:9.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.78 = STRING: 2014-7-25,22:12:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.79 = STRING: 2014-8-12,2:14:54.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.80 = STRING: 2014-3-26,9:13:24.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.81 = STRING: 2014-4-3,21:34:46.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.82 = STRING: 2014-5-7,6:47:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.83 = STRING: 2013-10-23,15:15:0.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.84 = STRING: 2014-7-14,19:31:10.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.85 = STRING: 2014-8-8,15:57:55.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.86 = STRING: 2013-11-29,14:55:26.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.87 = STRING: 2014-3-26,9:26:8.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.88 = STRING: 2011-8-14,21:23:41.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.89 = STRING: 2014-8-22,6:16:12.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.90 = STRING: 2014-8-26,15:56:49.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.91 = STRING: 2014-3-26,8:37:19.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.92 = STRING: 2014-7-22,19:51:49.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.93 = STRING: 2013-8-25,3:37:35.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.94 = STRING: 2011-8-8,8:19:7.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.95 = STRING: 2010-7-16,14:43:25.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.96 = STRING: 2014-7-23,22:11:24.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.97 = STRING: 2014-3-26,9:25:10.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.98 = STRING: 2014-8-28,8:26:49.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.99 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.100 = STRING: 2014-5-29,14:29:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.101 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.102 = STRING: 2011-7-17,15:24:17.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.103 = STRING: 2014-6-14,21:5:32.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.104 = STRING: 2014-3-26,11:55:4.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.105 = STRING: 2011-12-20,19:58:3.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.106 = STRING: 2012-5-7,23:21:3.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.107 = STRING: 2014-8-10,13:11:7.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.108 = STRING: 2013-8-25,3:38:24.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.109 = STRING: 2014-3-26,11:57:26.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.110 = STRING: 2014-1-27,21:14:22.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.111 = STRING: 2014-8-6,10:2:1.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.112 = STRING: 2014-1-6,12:47:8.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.113 = STRING: 2014-1-17,4:31:55.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.114 = STRING: 2014-8-22,6:12:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.115 = STRING: 2013-6-8,15:23:18.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.116 = STRING: 2014-4-23,21:34:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.117 = STRING: 2014-7-7,20:51:5.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.118 = STRING: 2014-6-26,16:38:7.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.119 = STRING: 2014-1-6,0:12:4.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.120 = STRING: 2014-8-22,6:12:41.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.121 = STRING: 2014-7-11,6:38:45.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.122 = STRING: 2014-8-18,14:27:38.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.123 = STRING: 2013-12-6,5:41:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.124 = STRING: 2014-3-26,9:26:37.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.125 = STRING: 2014-4-4,10:59:0.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.126 = STRING: 2007-5-16,15:31:46.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.127 = STRING: 2013-7-14,19:19:5.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.128 = STRING: 2014-8-7,22:29:1.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.129 = STRING: 2014-3-29,17:21:16.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.130 = STRING: 2014-8-30,15:14:47.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.131 = STRING: 2014-4-15,17:8:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.132 = STRING: 2013-12-14,3:46:14.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.133 = STRING: 2014-1-15,7:2:4.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.134 = STRING: 2014-3-26,11:55:35.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.135 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.136 = STRING: 2014-3-26,9:23:37.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.137 = STRING: 2014-8-27,12:46:17.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.138 = STRING: 2013-5-6,18:44:43.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.139 = STRING: 2014-3-26,17:48:34.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.140 = STRING: 2013-12-7,16:59:48.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.141 = STRING: 2014-8-14,6:45:8.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.142 = STRING: 2014-5-28,14:0:21.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.143 = STRING: 2014-8-27,12:46:23.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.144 = STRING: 2014-8-6,18:58:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.145 = STRING: 2014-7-27,11:11:34.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.146 = STRING: 2013-10-31,17:58:26.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.147 = STRING: 2014-3-26,9:19:46.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.148 = STRING: 2014-7-30,13:1:24.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.149 = STRING: 2014-4-13,7:52:32.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.150 = STRING: 2013-8-25,7:1:44.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.151 = STRING: 2013-7-8,3:31:14.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.152 = STRING: 2014-2-22,22:12:36.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.153 = STRING: 2012-9-4,14:28:27.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.154 = STRING: 2014-1-23,4:34:13.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.155 = STRING: 2014-7-24,20:48:29.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.156 = STRING: 2013-11-4,3:51:23.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.157 = STRING: 2013-9-1,2:36:59.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.158 = STRING: 2014-8-17,22:54:13.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.159 = STRING: 2014-8-19,3:49:26.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.160 = STRING: 2014-3-26,11:58:6.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.161 = STRING: 2013-8-25,3:38:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.162 = STRING: 2014-9-4,19:25:45.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.163 = STRING: 2014-3-30,13:20:2.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.164 = STRING: 2014-7-17,8:0:4.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.165 = STRING: 2013-10-30,21:57:54.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.166 = STRING: 2014-7-1,5:9:42.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.167 = STRING: 2014-2-4,0:52:56.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.168 = STRING: 2014-2-9,16:32:19.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.169 = STRING: 2008-10-22,8:36:9.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.170 = STRING: 2014-8-14,10:1:4.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.171 = STRING: 2014-6-19,8:54:45.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.172 = STRING: 2014-7-31,7:48:11.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.173 = STRING: 2014-7-10,21:35:17.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.174 = STRING: 2014-7-1,10:25:40.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.175 = STRING: 2014-8-26,3:32:56.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.176 = STRING: 2014-8-24,20:51:9.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.177 = STRING: 2014-3-26,11:55:27.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.178 = STRING: 2014-2-24,21:39:42.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.179 = STRING: 2014-4-11,8:8:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.180 = STRING: 2014-3-27,18:10:45.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.181 = STRING: 2014-3-27,19:53:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.182 = STRING: 2014-3-27,16:40:17.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.183 = STRING: 2014-3-27,16:40:9.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.184 = STRING: 2014-3-27,16:38:46.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.185 = STRING: 2014-6-12,10:8:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.186 = STRING: 2014-3-30,22:14:40.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.187 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.188 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.189 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.190 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.191 = STRING: 2014-3-26,19:7:31.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.192 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.193 = STRING: 2014-3-27,18:10:45.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.194 = STRING: 2014-3-27,18:10:45.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.195 = STRING: 2014-8-14,7:18:57.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.196 = STRING: 2013-5-21,22:5:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.197 = STRING: 2013-4-24,23:23:47.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.198 = STRING: 2013-8-25,7:11:38.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.199 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.200 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.201 = STRING: 2013-8-25,7:57:0.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.202 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.203 = STRING: 2013-8-25,7:1:23.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.204 = STRING: 2013-8-25,7:40:51.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.205 = STRING: 2013-4-16,21:3:51.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.206 = STRING: 2013-3-7,23:31:46.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.207 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.208 = STRING: 2013-8-25,7:5:30.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.209 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.210 = STRING: 2013-8-25,7:8:37.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.211 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.212 = STRING: 2013-8-25,7:0:44.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.213 = STRING: 2014-3-27,20:23:57.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.214 = STRING: 2014-3-27,20:24:0.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.215 = STRING: 2014-3-27,20:23:37.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.216 = STRING: 2014-3-27,20:23:37.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.217 = STRING: 2014-3-27,20:23:46.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.218 = STRING: 2009-9-9,19:32:21.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.219 = STRING: 2007-3-6,14:43:21.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.220 = STRING: 2009-4-8,9:34:30.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.221 = STRING: 2009-2-13,7:32:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.222 = STRING: 2005-5-13,23:1:36.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.223 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.224 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.225 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.226 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.227 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.228 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.229 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.230 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.231 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.232 = STRING: 2014-3-26,17:54:6.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.233 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.234 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.235 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.236 = STRING: 2014-3-26,17:54:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.237 = STRING: 2014-3-26,19:7:31.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.238 = STRING: 2014-3-27,20:24:48.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.239 = STRING: 2014-3-27,20:24:57.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.240 = STRING: 2009-4-8,9:32:56.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.241 = STRING: 2009-4-8,9:36:7.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.242 = STRING: 2014-3-26,17:54:6.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.243 = STRING: 2014-3-27,17:12:6.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.244 = STRING: 2014-3-27,17:12:6.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.245 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.246 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.247 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.248 = STRING: 2014-3-27,17:12:8.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.249 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.250 = STRING: 2014-3-27,17:12:8.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.251 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.252 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.253 = STRING: 2014-3-27,17:12:8.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.254 = STRING: 2014-3-27,17:12:8.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.255 = STRING: 2014-3-27,17:12:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.256 = STRING: 2014-3-27,17:12:5.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.257 = STRING: 2014-3-27,17:12:9.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.258 = STRING: 2014-3-27,17:12:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.259 = STRING: 2014-3-27,17:12:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.260 = STRING: 2014-3-27,17:12:10.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.261 = STRING: 2014-3-27,17:12:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.262 = STRING: 2014-3-27,17:12:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.263 = STRING: 2014-3-27,17:12:11.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.264 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.265 = STRING: 2014-3-27,17:12:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.266 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.267 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.268 = STRING: 2014-1-21,18:48:43.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.269 = STRING: 2013-8-25,5:49:58.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.270 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.271 = STRING: 2013-11-12,19:49:59.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.272 = STRING: 2014-1-22,22:52:32.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.273 = STRING: 2013-8-25,7:0:38.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.274 = STRING: 2013-8-25,7:6:31.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.275 = STRING: 2013-11-23,5:25:23.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.276 = STRING: 2013-8-27,4:46:3.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.277 = STRING: 2013-8-27,4:46:12.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.278 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.279 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.280 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.281 = STRING: 2013-8-25,8:41:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.282 = STRING: 2013-8-25,3:38:19.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.283 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.284 = STRING: 2013-9-26,0:13:51.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.285 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.286 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.287 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.288 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.289 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.290 = STRING: 2013-9-4,2:58:56.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.291 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.292 = STRING: 2013-8-25,7:52:46.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.293 = STRING: 2013-8-25,7:51:39.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.294 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.295 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.296 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.297 = STRING: 2013-8-25,8:52:44.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.298 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.299 = STRING: 2013-9-26,2:47:3.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.300 = STRING: 2014-1-2,9:6:19.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.301 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.302 = STRING: 2014-3-29,17:43:34.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.303 = STRING: 2014-3-29,17:43:34.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.304 = STRING: 2013-8-25,7:41:51.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.305 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.306 = STRING: 2013-10-21,4:53:25.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.307 = STRING: 2013-8-25,6:59:10.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.308 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.309 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.310 = STRING: 2013-9-4,2:58:38.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.311 = STRING: 2014-3-29,17:43:34.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.312 = STRING: 2013-9-7,2:13:47.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.313 = STRING: 2013-8-25,7:10:40.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.314 = STRING: 2013-8-25,7:8:12.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.315 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.316 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.317 = STRING: 2013-8-25,5:48:50.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.318 = STRING: 2013-8-25,7:53:41.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.319 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.320 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.321 = STRING: 2013-8-25,7:12:39.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.322 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.323 = STRING: 2014-1-13,7:44:10.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.324 = STRING: 2013-8-25,7:6:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.325 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.326 = STRING: 2013-8-25,8:25:39.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.327 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.328 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.329 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.330 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.331 = STRING: 2013-9-6,6:24:35.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.332 = STRING: 2013-8-25,7:2:42.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.333 = STRING: 2013-8-31,9:20:36.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.334 = STRING: 2013-8-25,7:44:14.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.335 = STRING: 2013-8-25,6:59:17.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.336 = STRING: 2014-5-19,9:13:22.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.337 = STRING: 2013-8-25,9:13:56.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.338 = STRING: 2013-8-25,7:6:38.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.339 = STRING: 2013-8-30,9:32:28.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.340 = STRING: 2014-6-30,23:20:53.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.341 = STRING: 2013-8-25,4:24:50.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.342 = STRING: 2014-1-13,7:37:56.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.343 = STRING: 2013-12-20,2:6:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.344 = STRING: 2014-1-2,9:4:23.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.345 = STRING: 2013-8-25,7:10:16.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.346 = STRING: 2014-1-13,7:39:54.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.347 = STRING: 2014-1-13,7:40:3.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.348 = STRING: 2014-1-13,7:40:7.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.349 = STRING: 2014-1-13,7:38:56.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.350 = STRING: 2013-8-25,8:24:31.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.351 = STRING: 2013-8-25,6:59:4.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.352 = STRING: 2013-8-25,7:53:46.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.353 = STRING: 2013-8-25,4:41:21.0,-2:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.354 = STRING: 2013-11-19,20:57:26.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.355 = STRING: 2014-1-23,5:15:35.0,-1:0 +HOST-RESOURCES-MIB::hrSWInstalledDate.356 = STRING: 2013-8-25,7:1:0.0,-2:0 +IF-MIB::ifName.1 = STRING: lo0 +IF-MIB::ifName.2 = STRING: gif0 +IF-MIB::ifName.3 = STRING: stf0 +IF-MIB::ifName.4 = STRING: en0 +IF-MIB::ifName.5 = STRING: en1 +IF-MIB::ifName.6 = STRING: en2 +IF-MIB::ifName.7 = STRING: bridge0 +IF-MIB::ifName.8 = STRING: p2p0 +IF-MIB::ifInMulticastPkts.1 = Counter32: 23890 +IF-MIB::ifInMulticastPkts.2 = Counter32: 0 +IF-MIB::ifInMulticastPkts.3 = Counter32: 0 +IF-MIB::ifInMulticastPkts.4 = Counter32: 135021 +IF-MIB::ifInMulticastPkts.5 = Counter32: 0 +IF-MIB::ifInMulticastPkts.6 = Counter32: 0 +IF-MIB::ifInMulticastPkts.7 = Counter32: 0 +IF-MIB::ifInMulticastPkts.8 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.1 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.2 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.3 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.4 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.5 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.6 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.7 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.8 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.1 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.2 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.3 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.4 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.5 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.6 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.7 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.8 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.1 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.2 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.3 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.4 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.5 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.6 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.7 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.8 = Counter32: 0 +IF-MIB::ifHCInOctets.1 = Counter64: 184127934 +IF-MIB::ifHCInOctets.2 = Counter64: 0 +IF-MIB::ifHCInOctets.3 = Counter64: 0 +IF-MIB::ifHCInOctets.4 = Counter64: 286847531 +IF-MIB::ifHCInOctets.5 = Counter64: 0 +IF-MIB::ifHCInOctets.6 = Counter64: 0 +IF-MIB::ifHCInOctets.7 = Counter64: 0 +IF-MIB::ifHCInOctets.8 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.1 = Counter64: 2499217 +IF-MIB::ifHCInUcastPkts.2 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.3 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.4 = Counter64: 5799589 +IF-MIB::ifHCInUcastPkts.5 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.6 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.7 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.8 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.1 = Counter64: 23890 +IF-MIB::ifHCInMulticastPkts.2 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.3 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.4 = Counter64: 135021 +IF-MIB::ifHCInMulticastPkts.5 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.6 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.7 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.8 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.1 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.2 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.3 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.4 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.5 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.6 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.7 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.8 = Counter64: 0 +IF-MIB::ifHCOutOctets.1 = Counter64: 184127934 +IF-MIB::ifHCOutOctets.2 = Counter64: 0 +IF-MIB::ifHCOutOctets.3 = Counter64: 0 +IF-MIB::ifHCOutOctets.4 = Counter64: 560386500 +IF-MIB::ifHCOutOctets.5 = Counter64: 0 +IF-MIB::ifHCOutOctets.6 = Counter64: 0 +IF-MIB::ifHCOutOctets.7 = Counter64: 342 +IF-MIB::ifHCOutOctets.8 = Counter64: 0 +IF-MIB::ifHCOutUcastPkts.1 = Counter64: 2291737 +IF-MIB::ifHCOutUcastPkts.2 = Counter64: 0 +IF-MIB::ifHCOutUcastPkts.3 = Counter64: 0 +IF-MIB::ifHCOutUcastPkts.4 = Counter64: 6694675 +IF-MIB::ifHCOutUcastPkts.5 = Counter64: 0 +IF-MIB::ifHCOutUcastPkts.6 = Counter64: 0 +IF-MIB::ifHCOutUcastPkts.7 = Counter64: 1 +IF-MIB::ifHCOutUcastPkts.8 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.1 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.2 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.3 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.4 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.5 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.6 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.7 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.8 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.1 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.2 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.3 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.4 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.5 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.6 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.7 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.8 = Counter64: 0 +IF-MIB::ifHighSpeed.1 = Gauge32: 0 +IF-MIB::ifHighSpeed.2 = Gauge32: 0 +IF-MIB::ifHighSpeed.3 = Gauge32: 0 +IF-MIB::ifHighSpeed.4 = Gauge32: 54 +IF-MIB::ifHighSpeed.5 = Gauge32: 0 +IF-MIB::ifHighSpeed.6 = Gauge32: 0 +IF-MIB::ifHighSpeed.7 = Gauge32: 0 +IF-MIB::ifHighSpeed.8 = Gauge32: 10 +IF-MIB::ifPromiscuousMode.1 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.2 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.3 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.4 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.5 = INTEGER: true(1) +IF-MIB::ifPromiscuousMode.6 = INTEGER: true(1) +IF-MIB::ifPromiscuousMode.7 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.8 = INTEGER: false(2) +IF-MIB::ifConnectorPresent.1 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.2 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.3 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.4 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.5 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.6 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.7 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.8 = INTEGER: true(1) +IF-MIB::ifAlias.1 = STRING: +IF-MIB::ifAlias.2 = STRING: +IF-MIB::ifAlias.3 = STRING: +IF-MIB::ifAlias.4 = STRING: +IF-MIB::ifAlias.5 = STRING: +IF-MIB::ifAlias.6 = STRING: +IF-MIB::ifAlias.7 = STRING: +IF-MIB::ifAlias.8 = STRING: +IF-MIB::ifCounterDiscontinuityTime.1 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.2 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.3 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.4 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.5 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.6 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.7 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.8 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifTableLastChange.0 = Timeticks: (0) 0:00:00.00 +DISMAN-EVENT-MIB::mteResourceSampleMinimum.0 = INTEGER: 1 seconds +DISMAN-EVENT-MIB::mteResourceSampleInstanceMaximum.0 = Gauge32: 0 instances +DISMAN-EVENT-MIB::mteResourceSampleInstances.0 = Gauge32: 0 instances +DISMAN-EVENT-MIB::mteResourceSampleInstancesHigh.0 = Gauge32: 0 instances +DISMAN-EVENT-MIB::mteResourceSampleInstanceLacks.0 = Counter32: 0 instances +DISMAN-EVENT-MIB::mteTriggerFailures.0 = Counter32: 0 failures +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_linkUpDown".1 = OID: IF-MIB::ifIndex +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_linkUpDown".2 = OID: IF-MIB::ifAdminStatus +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_linkUpDown".3 = OID: IF-MIB::ifOperStatus +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".1 = OID: DISMAN-EVENT-MIB::mteHotTrigger +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".2 = OID: DISMAN-EVENT-MIB::mteHotTargetName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".3 = OID: DISMAN-EVENT-MIB::mteHotContextName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".4 = OID: DISMAN-EVENT-MIB::mteHotOID +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".5 = OID: DISMAN-EVENT-MIB::mteFailedReason +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".1 = OID: DISMAN-EVENT-MIB::mteHotTrigger +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".2 = OID: DISMAN-EVENT-MIB::mteHotTargetName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".3 = OID: DISMAN-EVENT-MIB::mteHotContextName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".4 = OID: DISMAN-EVENT-MIB::mteHotOID +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".5 = OID: DISMAN-EVENT-MIB::mteHotValue +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_linkUpDown".1 = INTEGER: true(1) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_linkUpDown".2 = INTEGER: true(1) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_linkUpDown".3 = INTEGER: true(1) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".1 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".2 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".3 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".4 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".5 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".1 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".2 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".3 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".4 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".5 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_linkUpDown".1 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_linkUpDown".2 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_linkUpDown".3 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".1 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".2 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".3 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".4 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".5 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".1 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".2 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".3 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".4 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".5 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_linkDown' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_linkUp' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerFailure' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerFalling' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerFired' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerRising' = STRING: +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_linkDown' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_linkUp' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerFailure' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerFalling' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerFired' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerRising' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_linkDown' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_linkUp' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerFailure' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerFalling' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerFired' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerRising' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_linkDown' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_linkUp' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerFailure' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerFalling' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerFired' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerRising' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_linkDown' = OID: IF-MIB::linkDown +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_linkUp' = OID: IF-MIB::linkUp +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerFailure' = OID: DISMAN-EVENT-MIB::mteTriggerFailure +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerFalling' = OID: DISMAN-EVENT-MIB::mteTriggerFalling +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerFired' = OID: DISMAN-EVENT-MIB::mteTriggerFired +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerRising' = OID: DISMAN-EVENT-MIB::mteTriggerRising +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_linkDown' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_linkUp' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFailure' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFalling' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFired' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerRising' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_linkDown' = STRING: _linkUpDown +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_linkUp' = STRING: _linkUpDown +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerFailure' = STRING: _triggerFail +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerFalling' = STRING: _triggerFire +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerFired' = STRING: _triggerFire +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerRising' = STRING: _triggerFire +NOTIFICATION-LOG-MIB::nlmConfigGlobalEntryLimit.0 = Gauge32: 1000 +NOTIFICATION-LOG-MIB::nlmConfigGlobalAgeOut.0 = Gauge32: 1440 minutes +NOTIFICATION-LOG-MIB::nlmStatsGlobalNotificationsLogged.0 = Counter32: 0 notifications +NOTIFICATION-LOG-MIB::nlmStatsGlobalNotificationsBumped.0 = Counter32: 0 notifications diff --git a/syno/_smartctl_hlp.txt b/syno/_smartctl_hlp.txt new file mode 100644 index 0000000..0c6722d --- /dev/null +++ b/syno/_smartctl_hlp.txt @@ -0,0 +1,135 @@ +smartctl 6.3 2014-07-26 r3976 [x86_64-apple-darwin13.3.0] (local build) +Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org + +Usage: smartctl [options] device + +============================================ SHOW INFORMATION OPTIONS ===== + + -h, --help, --usage + Display this help and exit + + -V, --version, --copyright, --license + Print license, copyright, and version information and exit + + -i, --info + Show identity information for device + + --identify[=[w][nvb]] + Show words and bits from IDENTIFY DEVICE data (ATA) + + -g NAME, --get=NAME + Get device setting: all, aam, apm, lookahead, security, wcache, rcache, wcreorder + + -a, --all + Show all SMART information for device + + -x, --xall + Show all information for device + + --scan + Scan for devices + + --scan-open + Scan for devices and try to open each device + +================================== SMARTCTL RUN-TIME BEHAVIOR OPTIONS ===== + + -q TYPE, --quietmode=TYPE (ATA) + Set smartctl quiet mode to one of: errorsonly, silent, noserial + + -d TYPE, --device=TYPE + Specify device type to one of: ata, scsi, sat[,auto][,N][+TYPE], usbcypress[,X], usbjmicron[,p][,x][,N], usbsunplus, auto, test + + -T TYPE, --tolerance=TYPE (ATA) + Tolerance: normal, conservative, permissive, verypermissive + + -b TYPE, --badsum=TYPE (ATA) + Set action on bad checksum to one of: warn, exit, ignore + + -r TYPE, --report=TYPE + Report transactions (see man page) + + -n MODE, --nocheck=MODE (ATA) + No check if: never, sleep, standby, idle (see man page) + +============================== DEVICE FEATURE ENABLE/DISABLE COMMANDS ===== + + -s VALUE, --smart=VALUE + Enable/disable SMART on device (on/off) + + -o VALUE, --offlineauto=VALUE (ATA) + Enable/disable automatic offline testing on device (on/off) + + -S VALUE, --saveauto=VALUE (ATA) + Enable/disable Attribute autosave on device (on/off) + + -s NAME[,VALUE], --set=NAME[,VALUE] + Enable/disable/change device setting: aam,[N|off], apm,[N|off], + lookahead,[on|off], security-freeze, standby,[N|off|now], + wcache,[on|off], rcache,[on|off], wcreorder,[on|off] + +======================================= READ AND DISPLAY DATA OPTIONS ===== + + -H, --health + Show device SMART health status + + -c, --capabilities (ATA) + Show device SMART capabilities + + -A, --attributes + Show device SMART vendor-specific Attributes and values + + -f FORMAT, --format=FORMAT (ATA) + Set output format for attributes: old, brief, hex[,id|val] + + -l TYPE, --log=TYPE + Show device log. TYPE: error, selftest, selective, directory[,g|s], + xerror[,N][,error], xselftest[,N][,selftest], + background, sasphy[,reset], sataphy[,reset], + scttemp[sts,hist], scttempint,N[,p], + scterc[,N,M], devstat[,N], ssd, + gplog,N[,RANGE], smartlog,N[,RANGE] + + -v N,OPTION , --vendorattribute=N,OPTION (ATA) + Set display OPTION for vendor Attribute N (see man page) + + -F TYPE, --firmwarebug=TYPE (ATA) + Use firmware bug workaround: + none, nologdir, samsung, samsung2, samsung3, xerrorlba, swapid + + -P TYPE, --presets=TYPE (ATA) + Drive-specific presets: use, ignore, show, showall + + -B [+]FILE, --drivedb=[+]FILE (ATA) + Read and replace [add] drive database from FILE + [default is +/usr/local/etc/smart_drivedb.h + and then /usr/local/Cellar/smartmontools/6.3/share/smartmontools/drivedb.h] + +============================================ DEVICE SELF-TEST OPTIONS ===== + + -t TEST, --test=TEST + Run test. TEST: offline, short, long, conveyance, force, vendor,N, + select,M-N, pending,N, afterselect,[on|off] + + -C, --captive + Do test in captive mode (along with -t) + + -X, --abort + Abort any non-captive test on device + +=================================================== SMARTCTL EXAMPLES ===== + + smartctl -a disk0 (Prints all SMART information) + + smartctl -t long /dev/disk0 (Executes extended disk self-test) + + smartctl --smart=on --saveauto=on /dev/rdisk0 (Enables SMART on first disk) + + smartctl --attributes --log=selftest --quietmode=errorsonly /dev/disk0 + (Prints Self-Test & Attribute errors) + + smartctl -a IOService:/MacRISC2PE/pci@f4000000/AppleMacRiscPCI/ata-6@D/AppleKauaiATA/ATADeviceNub@0/IOATABlockStorageDriver/IOATABlockStorageDevice + (You can use IOService: ...) + + smartctl -c IODeviceTree:/pci@f4000000/ata-6@D/@0:0 + (... Or IODeviceTree:) diff --git a/syno/_syno_snmpwalk.txt b/syno/_syno_snmpwalk.txt new file mode 100644 index 0000000..a1c5c5a --- /dev/null +++ b/syno/_syno_snmpwalk.txt @@ -0,0 +1,3461 @@ +SNMPv2-MIB::sysDescr.0 = STRING: Linux DiskStation 3.2.40 #4493 SMP Thu Aug 21 21:43:02 CST 2014 armv7l +SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10 +DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (106390978) 12 days, 7:31:49.78 +SNMPv2-MIB::sysContact.0 = STRING: admin@diskstation +SNMPv2-MIB::sysName.0 = STRING: DiskStation +SNMPv2-MIB::sysLocation.0 = STRING: Unknown +SNMPv2-MIB::sysORLastChange.0 = Timeticks: (10) 0:00:00.10 +SNMPv2-MIB::sysORID.1 = OID: SNMP-MPD-MIB::snmpMPDMIBObjects.3.1.1 +SNMPv2-MIB::sysORID.2 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance +SNMPv2-MIB::sysORID.3 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance +SNMPv2-MIB::sysORID.4 = OID: SNMPv2-MIB::snmpMIB +SNMPv2-MIB::sysORID.5 = OID: TCP-MIB::tcpMIB +SNMPv2-MIB::sysORID.6 = OID: IP-MIB::ip +SNMPv2-MIB::sysORID.7 = OID: UDP-MIB::udpMIB +SNMPv2-MIB::sysORID.8 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup +SNMPv2-MIB::sysORID.9 = OID: SNMP-NOTIFICATION-MIB::snmpNotifyFullCompliance +SNMPv2-MIB::sysORID.10 = OID: NOTIFICATION-LOG-MIB::notificationLogMIB +SNMPv2-MIB::sysORDescr.1 = STRING: The MIB for Message Processing and Dispatching. +SNMPv2-MIB::sysORDescr.2 = STRING: The MIB for Message Processing and Dispatching. +SNMPv2-MIB::sysORDescr.3 = STRING: The SNMP Management Architecture MIB. +SNMPv2-MIB::sysORDescr.4 = STRING: The MIB module for SNMPv2 entities +SNMPv2-MIB::sysORDescr.5 = STRING: The MIB module for managing TCP implementations +SNMPv2-MIB::sysORDescr.6 = STRING: The MIB module for managing IP and ICMP implementations +SNMPv2-MIB::sysORDescr.7 = STRING: The MIB module for managing UDP implementations +SNMPv2-MIB::sysORDescr.8 = STRING: View-based Access Control Model for SNMP. +SNMPv2-MIB::sysORDescr.9 = STRING: The MIB modules for managing SNMP Notification, plus filtering. +SNMPv2-MIB::sysORDescr.10 = STRING: The MIB module for logging SNMP Notifications. +SNMPv2-MIB::sysORUpTime.1 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.2 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.3 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.4 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.5 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.6 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.7 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.8 = Timeticks: (9) 0:00:00.09 +SNMPv2-MIB::sysORUpTime.9 = Timeticks: (10) 0:00:00.10 +SNMPv2-MIB::sysORUpTime.10 = Timeticks: (10) 0:00:00.10 +IF-MIB::ifNumber.0 = INTEGER: 3 +IF-MIB::ifIndex.1 = INTEGER: 1 +IF-MIB::ifIndex.2 = INTEGER: 2 +IF-MIB::ifIndex.3 = INTEGER: 3 +IF-MIB::ifDescr.1 = STRING: lo +IF-MIB::ifDescr.2 = STRING: eth0 +IF-MIB::ifDescr.3 = STRING: eth1 +IF-MIB::ifType.1 = INTEGER: softwareLoopback(24) +IF-MIB::ifType.2 = INTEGER: ethernetCsmacd(6) +IF-MIB::ifType.3 = INTEGER: ethernetCsmacd(6) +IF-MIB::ifMtu.1 = INTEGER: 16436 +IF-MIB::ifMtu.2 = INTEGER: 1500 +IF-MIB::ifMtu.3 = INTEGER: 1500 +IF-MIB::ifSpeed.1 = Gauge32: 10000000 +IF-MIB::ifSpeed.2 = Gauge32: 1000000000 +IF-MIB::ifSpeed.3 = Gauge32: 0 +IF-MIB::ifPhysAddress.1 = STRING: +IF-MIB::ifPhysAddress.2 = STRING: 0:11:32:28:59:45 +IF-MIB::ifPhysAddress.3 = STRING: 0:11:32:28:59:46 +IF-MIB::ifAdminStatus.1 = INTEGER: up(1) +IF-MIB::ifAdminStatus.2 = INTEGER: up(1) +IF-MIB::ifAdminStatus.3 = INTEGER: up(1) +IF-MIB::ifOperStatus.1 = INTEGER: up(1) +IF-MIB::ifOperStatus.2 = INTEGER: up(1) +IF-MIB::ifOperStatus.3 = INTEGER: down(2) +IF-MIB::ifLastChange.1 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.2 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifLastChange.3 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifInOctets.1 = Counter32: 242527936 +IF-MIB::ifInOctets.2 = Counter32: 1436702716 +IF-MIB::ifInOctets.3 = Counter32: 0 +IF-MIB::ifInUcastPkts.1 = Counter32: 2102922 +IF-MIB::ifInUcastPkts.2 = Counter32: 87854865 +IF-MIB::ifInUcastPkts.3 = Counter32: 0 +IF-MIB::ifInNUcastPkts.1 = Counter32: 0 +IF-MIB::ifInNUcastPkts.2 = Counter32: 0 +IF-MIB::ifInNUcastPkts.3 = Counter32: 0 +IF-MIB::ifInDiscards.1 = Counter32: 0 +IF-MIB::ifInDiscards.2 = Counter32: 0 +IF-MIB::ifInDiscards.3 = Counter32: 0 +IF-MIB::ifInErrors.1 = Counter32: 0 +IF-MIB::ifInErrors.2 = Counter32: 0 +IF-MIB::ifInErrors.3 = Counter32: 0 +IF-MIB::ifInUnknownProtos.1 = Counter32: 0 +IF-MIB::ifInUnknownProtos.2 = Counter32: 0 +IF-MIB::ifInUnknownProtos.3 = Counter32: 0 +IF-MIB::ifOutOctets.1 = Counter32: 242527936 +IF-MIB::ifOutOctets.2 = Counter32: 2299131296 +IF-MIB::ifOutOctets.3 = Counter32: 0 +IF-MIB::ifOutUcastPkts.1 = Counter32: 2102922 +IF-MIB::ifOutUcastPkts.2 = Counter32: 40646036 +IF-MIB::ifOutUcastPkts.3 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.1 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.2 = Counter32: 0 +IF-MIB::ifOutNUcastPkts.3 = Counter32: 0 +IF-MIB::ifOutDiscards.1 = Counter32: 0 +IF-MIB::ifOutDiscards.2 = Counter32: 412 +IF-MIB::ifOutDiscards.3 = Counter32: 0 +IF-MIB::ifOutErrors.1 = Counter32: 0 +IF-MIB::ifOutErrors.2 = Counter32: 0 +IF-MIB::ifOutErrors.3 = Counter32: 0 +IF-MIB::ifOutQLen.1 = Gauge32: 0 +IF-MIB::ifOutQLen.2 = Gauge32: 0 +IF-MIB::ifOutQLen.3 = Gauge32: 0 +IF-MIB::ifSpecific.1 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.2 = OID: SNMPv2-SMI::zeroDotZero +IF-MIB::ifSpecific.3 = OID: SNMPv2-SMI::zeroDotZero +SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.0.1 = INTEGER: 2 +SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.0.3 = INTEGER: 2 +SNMPv2-SMI::mib-2.3.1.1.1.2.1.192.168.0.9 = INTEGER: 2 +SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.0.1 = STRING: "'0" +SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.0.3 = STRING: "V?X" +SNMPv2-SMI::mib-2.3.1.1.2.2.1.192.168.0.9 = STRING: "`B`" +SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.0.1 = IpAddress: 192.168.0.1 +SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.0.3 = IpAddress: 192.168.0.3 +SNMPv2-SMI::mib-2.3.1.1.3.2.1.192.168.0.9 = IpAddress: 192.168.0.9 +IP-MIB::ipForwarding.0 = INTEGER: notForwarding(2) +IP-MIB::ipDefaultTTL.0 = INTEGER: 64 +IP-MIB::ipInReceives.0 = Counter32: 101379378 +IP-MIB::ipInHdrErrors.0 = Counter32: 0 +IP-MIB::ipInAddrErrors.0 = Counter32: 738 +IP-MIB::ipForwDatagrams.0 = Counter32: 0 +IP-MIB::ipInUnknownProtos.0 = Counter32: 0 +IP-MIB::ipInDiscards.0 = Counter32: 0 +IP-MIB::ipInDelivers.0 = Counter32: 112201896 +IP-MIB::ipOutRequests.0 = Counter32: 49055708 +IP-MIB::ipOutDiscards.0 = Counter32: 0 +IP-MIB::ipOutNoRoutes.0 = Counter32: 181 +IP-MIB::ipReasmTimeout.0 = INTEGER: 30 seconds +IP-MIB::ipReasmReqds.0 = Counter32: 0 +IP-MIB::ipReasmOKs.0 = Counter32: 0 +IP-MIB::ipReasmFails.0 = Counter32: 0 +IP-MIB::ipFragOKs.0 = Counter32: 541 +IP-MIB::ipFragFails.0 = Counter32: 2 +IP-MIB::ipFragCreates.0 = Counter32: 1082 +IP-MIB::ipAdEntAddr.127.0.0.1 = IpAddress: 127.0.0.1 +IP-MIB::ipAdEntAddr.169.254.218.139 = IpAddress: 169.254.218.139 +IP-MIB::ipAdEntAddr.192.168.0.8 = IpAddress: 192.168.0.8 +IP-MIB::ipAdEntIfIndex.127.0.0.1 = INTEGER: 1 +IP-MIB::ipAdEntIfIndex.169.254.218.139 = INTEGER: 3 +IP-MIB::ipAdEntIfIndex.192.168.0.8 = INTEGER: 2 +IP-MIB::ipAdEntNetMask.127.0.0.1 = IpAddress: 255.0.0.0 +IP-MIB::ipAdEntNetMask.169.254.218.139 = IpAddress: 255.255.0.0 +IP-MIB::ipAdEntNetMask.192.168.0.8 = IpAddress: 255.255.255.0 +IP-MIB::ipAdEntBcastAddr.127.0.0.1 = INTEGER: 0 +IP-MIB::ipAdEntBcastAddr.169.254.218.139 = INTEGER: 1 +IP-MIB::ipAdEntBcastAddr.192.168.0.8 = INTEGER: 1 +IP-MIB::ip.21.1.1.0.0.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.1.192.168.0.0 = IpAddress: 192.168.0.0 +IP-MIB::ip.21.1.2.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.2.192.168.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.3.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.21.1.3.192.168.0.0 = INTEGER: 0 +IP-MIB::ip.21.1.7.0.0.0.0 = IpAddress: 192.168.0.1 +IP-MIB::ip.21.1.7.192.168.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.8.0.0.0.0 = INTEGER: 4 +IP-MIB::ip.21.1.8.192.168.0.0 = INTEGER: 3 +IP-MIB::ip.21.1.9.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.9.192.168.0.0 = INTEGER: 2 +IP-MIB::ip.21.1.11.0.0.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.21.1.11.192.168.0.0 = IpAddress: 255.255.255.0 +IP-MIB::ip.21.1.13.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.21.1.13.192.168.0.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ipNetToMediaIfIndex.2.192.168.0.1 = INTEGER: 2 +IP-MIB::ipNetToMediaIfIndex.2.192.168.0.3 = INTEGER: 2 +IP-MIB::ipNetToMediaIfIndex.2.192.168.0.9 = INTEGER: 2 +IP-MIB::ipNetToMediaPhysAddress.2.192.168.0.1 = STRING: e8:de:27:30:dc:cf +IP-MIB::ipNetToMediaPhysAddress.2.192.168.0.3 = STRING: b8:e8:56:3f:af:58 +IP-MIB::ipNetToMediaPhysAddress.2.192.168.0.9 = STRING: 60:fb:42:f5:60:b4 +IP-MIB::ipNetToMediaNetAddress.2.192.168.0.1 = IpAddress: 192.168.0.1 +IP-MIB::ipNetToMediaNetAddress.2.192.168.0.3 = IpAddress: 192.168.0.3 +IP-MIB::ipNetToMediaNetAddress.2.192.168.0.9 = IpAddress: 192.168.0.9 +IP-MIB::ipNetToMediaType.2.192.168.0.1 = INTEGER: dynamic(3) +IP-MIB::ipNetToMediaType.2.192.168.0.3 = INTEGER: dynamic(3) +IP-MIB::ipNetToMediaType.2.192.168.0.9 = INTEGER: dynamic(3) +IP-MIB::ipRoutingDiscards.0 = Counter32: 0 +IP-MIB::ip.24.4.1.1.0.0.0.0.0.0.0.0.0.192.168.0.1 = IpAddress: 0.0.0.0 +IP-MIB::ip.24.4.1.1.192.168.0.0.255.255.255.0.0.0.0.0.0 = IpAddress: 192.168.0.0 +IP-MIB::ip.24.4.1.2.0.0.0.0.0.0.0.0.0.192.168.0.1 = IpAddress: 0.0.0.0 +IP-MIB::ip.24.4.1.2.192.168.0.0.255.255.255.0.0.0.0.0.0 = IpAddress: 255.255.255.0 +IP-MIB::ip.24.4.1.3.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 0 +IP-MIB::ip.24.4.1.3.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.24.4.1.4.0.0.0.0.0.0.0.0.0.192.168.0.1 = IpAddress: 192.168.0.1 +IP-MIB::ip.24.4.1.4.192.168.0.0.255.255.255.0.0.0.0.0.0 = IpAddress: 0.0.0.0 +IP-MIB::ip.24.4.1.5.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 2 +IP-MIB::ip.24.4.1.5.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.4.1.6.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 4 +IP-MIB::ip.24.4.1.6.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 3 +IP-MIB::ip.24.4.1.7.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 2 +IP-MIB::ip.24.4.1.7.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.4.1.9.0.0.0.0.0.0.0.0.0.192.168.0.1 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.24.4.1.9.192.168.0.0.255.255.255.0.0.0.0.0.0 = OID: SNMPv2-SMI::zeroDotZero +IP-MIB::ip.24.4.1.10.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 0 +IP-MIB::ip.24.4.1.10.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.24.4.1.11.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 0 +IP-MIB::ip.24.4.1.11.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.24.4.1.12.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.4.1.12.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.4.1.13.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.4.1.13.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.4.1.14.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.4.1.14.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.4.1.15.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.4.1.15.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.4.1.16.0.0.0.0.0.0.0.0.0.192.168.0.1 = INTEGER: 1 +IP-MIB::ip.24.4.1.16.192.168.0.0.255.255.255.0.0.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.24.6.0 = Gauge32: 7 +IP-MIB::ip.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: 2 +IP-MIB::ip.24.7.1.7.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: 2 +IP-MIB::ip.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.7.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +IP-MIB::ip.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: 4 +IP-MIB::ip.24.7.1.8.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 3 +IP-MIB::ip.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: 4 +IP-MIB::ip.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +IP-MIB::ip.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +IP-MIB::ip.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 3 +IP-MIB::ip.24.7.1.8.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 3 +IP-MIB::ip.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: 2 +IP-MIB::ip.24.7.1.9.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: 2 +IP-MIB::ip.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 2 +IP-MIB::ip.24.7.1.9.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 2 +IP-MIB::ip.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = Gauge32: 0 +IP-MIB::ip.24.7.1.10.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = Gauge32: 0 +IP-MIB::ip.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.10.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = Gauge32: 0 +IP-MIB::ip.24.7.1.11.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = Gauge32: 0 +IP-MIB::ip.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: 0 +IP-MIB::ip.24.7.1.12.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: 1024 +IP-MIB::ip.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +IP-MIB::ip.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 0 +IP-MIB::ip.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 256 +IP-MIB::ip.24.7.1.12.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 0 +IP-MIB::ip.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.13.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: -1 +IP-MIB::ip.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.13.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.14.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.15.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: -1 +IP-MIB::ip.24.7.1.16.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: -1 +IP-MIB::ip.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.192.168.0.1 = INTEGER: 1 +IP-MIB::ip.24.7.1.17.1.4.192.168.0.0.24.3.0.0.2.1.4.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3.0.0.7.2.16.254.128.0.0.0.0.0.0.188.235.28.255.254.41.174.213 = INTEGER: 1 +IP-MIB::ip.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.17.50.255.254.40.89.69.128.3.0.0.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 = INTEGER: 1 +IP-MIB::ip.24.7.1.17.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.3.0.0.5.2.16.255.2.0.0.0.0.0.0.0.0.0.0.0.0.0.1 = INTEGER: 1 +IP-MIB::ipv6IpForwarding.0 = INTEGER: notForwarding(2) +IP-MIB::ipv6IpDefaultHopLimit.0 = INTEGER: 64 +IP-MIB::ipSystemStatsInReceives.ipv4 = Counter32: 101379067 +IP-MIB::ipSystemStatsInReceives.ipv6 = Counter32: 166524 +IP-MIB::ipSystemStatsHCInReceives.ipv4 = Counter64: 101379067 +IP-MIB::ipSystemStatsHCInReceives.ipv6 = Counter64: 166524 +IP-MIB::ipSystemStatsInOctets.ipv6 = Counter32: 10774771 +IP-MIB::ipSystemStatsHCInOctets.ipv6 = Counter64: 10774771 +IP-MIB::ipSystemStatsInHdrErrors.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsInHdrErrors.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInNoRoutes.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsInNoRoutes.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInAddrErrors.ipv4 = Counter32: 738 +IP-MIB::ipSystemStatsInAddrErrors.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInUnknownProtos.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsInUnknownProtos.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInTruncatedPkts.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsInTruncatedPkts.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInForwDatagrams.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsInForwDatagrams.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsHCInForwDatagrams.ipv4 = Counter64: 0 +IP-MIB::ipSystemStatsHCInForwDatagrams.ipv6 = Counter64: 0 +IP-MIB::ipSystemStatsReasmReqds.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsReasmReqds.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsReasmOKs.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsReasmOKs.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsReasmFails.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsReasmFails.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInDiscards.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsInDiscards.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsInDelivers.ipv4 = Counter32: 112201608 +IP-MIB::ipSystemStatsInDelivers.ipv6 = Counter32: 165435 +IP-MIB::ipSystemStatsHCInDelivers.ipv4 = Counter64: 112201608 +IP-MIB::ipSystemStatsHCInDelivers.ipv6 = Counter64: 165435 +IP-MIB::ipSystemStatsOutRequests.ipv4 = Counter32: 49055475 +IP-MIB::ipSystemStatsOutRequests.ipv6 = Counter32: 2216 +IP-MIB::ipSystemStatsHCOutRequests.ipv4 = Counter64: 49055475 +IP-MIB::ipSystemStatsHCOutRequests.ipv6 = Counter64: 2216 +IP-MIB::ipSystemStatsOutNoRoutes.ipv4 = Counter32: 181 +IP-MIB::ipSystemStatsOutNoRoutes.ipv6 = Counter32: 3 +IP-MIB::ipSystemStatsOutForwDatagrams.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsOutForwDatagrams.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsHCOutForwDatagrams.ipv4 = Counter64: 0 +IP-MIB::ipSystemStatsHCOutForwDatagrams.ipv6 = Counter64: 0 +IP-MIB::ipSystemStatsOutDiscards.ipv4 = Counter32: 0 +IP-MIB::ipSystemStatsOutDiscards.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsOutFragReqds.ipv4 = Counter32: 543 +IP-MIB::ipSystemStatsOutFragReqds.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsOutFragOKs.ipv4 = Counter32: 541 +IP-MIB::ipSystemStatsOutFragOKs.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsOutFragFails.ipv4 = Counter32: 2 +IP-MIB::ipSystemStatsOutFragFails.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsOutFragCreates.ipv4 = Counter32: 1082 +IP-MIB::ipSystemStatsOutFragCreates.ipv6 = Counter32: 0 +IP-MIB::ipSystemStatsOutTransmits.ipv4 = Counter32: 49055833 +IP-MIB::ipSystemStatsOutTransmits.ipv6 = Counter32: 2213 +IP-MIB::ipSystemStatsHCOutTransmits.ipv4 = Counter64: 49055833 +IP-MIB::ipSystemStatsHCOutTransmits.ipv6 = Counter64: 2213 +IP-MIB::ipSystemStatsOutOctets.ipv6 = Counter32: 205095 +IP-MIB::ipSystemStatsHCOutOctets.ipv6 = Counter64: 205095 +IP-MIB::ipSystemStatsInMcastPkts.ipv4 = Counter32: 495500 +IP-MIB::ipSystemStatsInMcastPkts.ipv6 = Counter32: 163913 +IP-MIB::ipSystemStatsHCInMcastPkts.ipv4 = Counter64: 495500 +IP-MIB::ipSystemStatsHCInMcastPkts.ipv6 = Counter64: 163913 +IP-MIB::ipSystemStatsInMcastOctets.ipv6 = Counter32: 10492896 +IP-MIB::ipSystemStatsHCInMcastOctets.ipv6 = Counter64: 10492896 +IP-MIB::ipSystemStatsOutMcastPkts.ipv4 = Counter32: 73657 +IP-MIB::ipSystemStatsOutMcastPkts.ipv6 = Counter32: 6 +IP-MIB::ipSystemStatsHCOutMcastPkts.ipv4 = Counter64: 73657 +IP-MIB::ipSystemStatsHCOutMcastPkts.ipv6 = Counter64: 6 +IP-MIB::ipSystemStatsOutMcastOctets.ipv6 = Counter32: 424 +IP-MIB::ipSystemStatsHCOutMcastOctets.ipv6 = Counter64: 424 +IP-MIB::ipSystemStatsInBcastPkts.ipv4 = Counter32: 1125002 +IP-MIB::ipSystemStatsHCInBcastPkts.ipv4 = Counter64: 1125002 +IP-MIB::ipSystemStatsOutBcastPkts.ipv4 = Counter32: 23971 +IP-MIB::ipSystemStatsHCOutBcastPkts.ipv4 = Counter64: 23971 +IP-MIB::ipSystemStatsDiscontinuityTime.ipv4 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipSystemStatsDiscontinuityTime.ipv6 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipSystemStatsRefreshRate.ipv4 = Gauge32: 60000 milli-seconds +IP-MIB::ipSystemStatsRefreshRate.ipv6 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsTableLastChange.0 = Timeticks: (103855052) 12 days, 0:29:10.52 +IP-MIB::ipIfStatsInReceives.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInReceives.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCInReceives.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsInOctets.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInOctets.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCInOctets.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.1 = Counter32: 149 +IP-MIB::ipIfStatsInHdrErrors.ipv6.2 = Counter32: 166375 +IP-MIB::ipIfStatsInHdrErrors.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInHdrErrors.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInNoRoutes.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInAddrErrors.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInUnknownProtos.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInTruncatedPkts.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInForwDatagrams.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCInForwDatagrams.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsReasmReqds.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsReasmOKs.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsReasmFails.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInDiscards.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInDelivers.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCInDelivers.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutRequests.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCOutRequests.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutForwDatagrams.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCOutForwDatagrams.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutDiscards.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.1 = Counter32: 149 +IP-MIB::ipIfStatsOutFragReqds.ipv6.2 = Counter32: 165286 +IP-MIB::ipIfStatsOutFragReqds.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutFragReqds.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.1 = Counter32: 149 +IP-MIB::ipIfStatsOutFragOKs.ipv6.2 = Counter32: 165286 +IP-MIB::ipIfStatsOutFragOKs.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutFragOKs.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutFragFails.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutFragCreates.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.1 = Counter32: 4294967147 +IP-MIB::ipIfStatsOutTransmits.ipv6.2 = Counter32: 4294802010 +IP-MIB::ipIfStatsOutTransmits.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutTransmits.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.1 = Counter64: 18446744073709551467 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.2 = Counter64: 18446744073709386330 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCOutTransmits.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutOctets.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCOutOctets.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInMcastPkts.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastPkts.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsInMcastOctets.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCInMcastOctets.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.1 = Counter32: 149 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.2 = Counter32: 2067 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastPkts.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.1 = Counter64: 149 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.2 = Counter64: 2067 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastPkts.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.1 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.2 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.3 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.4 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.5 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.6 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.7 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.8 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.9 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.10 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.11 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.12 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.13 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.15 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.17 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.18 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.19 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.20 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.21 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.22 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.23 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.24 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.25 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.26 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.27 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.28 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.29 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.30 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.31 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.32 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.33 = Counter32: 0 +IP-MIB::ipIfStatsOutMcastOctets.ipv6.34 = Counter32: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.1 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.2 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.3 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.4 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.5 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.6 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.7 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.8 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.9 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.10 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.11 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.12 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.13 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.15 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.17 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.18 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.19 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.20 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.21 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.22 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.23 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.24 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.25 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.26 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.27 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.28 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.29 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.30 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.31 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.32 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.33 = Counter64: 0 +IP-MIB::ipIfStatsHCOutMcastOctets.ipv6.34 = Counter64: 0 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.1 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.2 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.3 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.4 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.5 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.6 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.7 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.8 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.9 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.10 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.11 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.12 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.13 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.15 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.17 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.18 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.19 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.20 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.21 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.22 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.23 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.24 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.25 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.26 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.27 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.28 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.29 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.30 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.31 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.32 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.33 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsDiscontinuityTime.ipv6.34 = Timeticks: (0) 0:00:00.00 +IP-MIB::ipIfStatsRefreshRate.ipv6.1 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.2 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.3 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.4 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.5 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.6 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.7 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.8 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.9 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.10 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.11 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.12 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.13 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.15 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.17 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.18 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.19 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.20 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.21 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.22 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.23 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.24 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.25 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.26 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.27 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.28 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.29 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.30 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.31 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.32 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.33 = Gauge32: 60000 milli-seconds +IP-MIB::ipIfStatsRefreshRate.ipv6.34 = Gauge32: 60000 milli-seconds +IP-MIB::ipAddressPrefixOrigin.1.ipv4."127.0.0.0".8 = INTEGER: manual(2) +IP-MIB::ipAddressPrefixOrigin.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = INTEGER: manual(2) +IP-MIB::ipAddressPrefixOrigin.2.ipv4."192.168.0.0".24 = INTEGER: manual(2) +IP-MIB::ipAddressPrefixOrigin.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: wellknown(3) +IP-MIB::ipAddressPrefixOrigin.3.ipv4."169.254.0.0".16 = INTEGER: wellknown(3) +IP-MIB::ipAddressPrefixOnLinkFlag.1.ipv4."127.0.0.0".8 = INTEGER: true(1) +IP-MIB::ipAddressPrefixOnLinkFlag.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = INTEGER: true(1) +IP-MIB::ipAddressPrefixOnLinkFlag.2.ipv4."192.168.0.0".24 = INTEGER: true(1) +IP-MIB::ipAddressPrefixOnLinkFlag.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: true(1) +IP-MIB::ipAddressPrefixOnLinkFlag.3.ipv4."169.254.0.0".16 = INTEGER: true(1) +IP-MIB::ipAddressPrefixAutonomousFlag.1.ipv4."127.0.0.0".8 = INTEGER: false(2) +IP-MIB::ipAddressPrefixAutonomousFlag.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = INTEGER: false(2) +IP-MIB::ipAddressPrefixAutonomousFlag.2.ipv4."192.168.0.0".24 = INTEGER: false(2) +IP-MIB::ipAddressPrefixAutonomousFlag.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = INTEGER: false(2) +IP-MIB::ipAddressPrefixAutonomousFlag.3.ipv4."169.254.0.0".16 = INTEGER: false(2) +IP-MIB::ipAddressPrefixAdvPreferredLifetime.1.ipv4."127.0.0.0".8 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvPreferredLifetime.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvPreferredLifetime.2.ipv4."192.168.0.0".24 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvPreferredLifetime.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvPreferredLifetime.3.ipv4."169.254.0.0".16 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvValidLifetime.1.ipv4."127.0.0.0".8 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvValidLifetime.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvValidLifetime.2.ipv4."192.168.0.0".24 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvValidLifetime.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressPrefixAdvValidLifetime.3.ipv4."169.254.0.0".16 = Gauge32: 4294967295 seconds +IP-MIB::ipAddressSpinLock.0 = INTEGER: 506784924 +IP-MIB::ipAddressIfIndex.ipv4."127.0.0.1" = INTEGER: 1 +IP-MIB::ipAddressIfIndex.ipv4."169.254.218.139" = INTEGER: 3 +IP-MIB::ipAddressIfIndex.ipv4."169.254.255.255" = INTEGER: 3 +IP-MIB::ipAddressIfIndex.ipv4."192.168.0.8" = INTEGER: 2 +IP-MIB::ipAddressIfIndex.ipv4."192.168.0.255" = INTEGER: 2 +IP-MIB::ipAddressIfIndex.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: 1 +IP-MIB::ipAddressIfIndex.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = INTEGER: 2 +IP-MIB::ipAddressType.ipv4."127.0.0.1" = INTEGER: unicast(1) +IP-MIB::ipAddressType.ipv4."169.254.218.139" = INTEGER: unicast(1) +IP-MIB::ipAddressType.ipv4."169.254.255.255" = INTEGER: broadcast(3) +IP-MIB::ipAddressType.ipv4."192.168.0.8" = INTEGER: unicast(1) +IP-MIB::ipAddressType.ipv4."192.168.0.255" = INTEGER: broadcast(3) +IP-MIB::ipAddressType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: unicast(1) +IP-MIB::ipAddressType.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = INTEGER: unicast(1) +IP-MIB::ipAddressPrefix.ipv4."127.0.0.1" = OID: IP-MIB::ipAddressPrefixOrigin.1.ipv4."127.0.0.0".8 +IP-MIB::ipAddressPrefix.ipv4."169.254.218.139" = OID: IP-MIB::ipAddressPrefixOrigin.3.ipv4."169.254.0.0".16 +IP-MIB::ipAddressPrefix.ipv4."169.254.255.255" = OID: IP-MIB::ipAddressPrefixOrigin.3.ipv4."169.254.0.0".16 +IP-MIB::ipAddressPrefix.ipv4."192.168.0.8" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv4."192.168.0.0".24 +IP-MIB::ipAddressPrefix.ipv4."192.168.0.255" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv4."192.168.0.0".24 +IP-MIB::ipAddressPrefix.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = OID: IP-MIB::ipAddressPrefixOrigin.1.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".128 +IP-MIB::ipAddressPrefix.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = OID: IP-MIB::ipAddressPrefixOrigin.2.ipv6."fe:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00".64 +IP-MIB::ipAddressOrigin.ipv4."127.0.0.1" = INTEGER: manual(2) +IP-MIB::ipAddressOrigin.ipv4."169.254.218.139" = INTEGER: random(6) +IP-MIB::ipAddressOrigin.ipv4."169.254.255.255" = INTEGER: random(6) +IP-MIB::ipAddressOrigin.ipv4."192.168.0.8" = INTEGER: manual(2) +IP-MIB::ipAddressOrigin.ipv4."192.168.0.255" = INTEGER: manual(2) +IP-MIB::ipAddressOrigin.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: manual(2) +IP-MIB::ipAddressOrigin.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = INTEGER: linklayer(5) +IP-MIB::ipAddressStatus.ipv4."127.0.0.1" = INTEGER: preferred(1) +IP-MIB::ipAddressStatus.ipv4."169.254.218.139" = INTEGER: preferred(1) +IP-MIB::ipAddressStatus.ipv4."169.254.255.255" = INTEGER: preferred(1) +IP-MIB::ipAddressStatus.ipv4."192.168.0.8" = INTEGER: preferred(1) +IP-MIB::ipAddressStatus.ipv4."192.168.0.255" = INTEGER: preferred(1) +IP-MIB::ipAddressStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: preferred(1) +IP-MIB::ipAddressStatus.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = INTEGER: preferred(1) +IP-MIB::ipAddressCreated.ipv4."127.0.0.1" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressCreated.ipv4."169.254.218.139" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressCreated.ipv4."169.254.255.255" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressCreated.ipv4."192.168.0.8" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressCreated.ipv4."192.168.0.255" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressCreated.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressCreated.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv4."127.0.0.1" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv4."169.254.218.139" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv4."169.254.255.255" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv4."192.168.0.8" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv4."192.168.0.255" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressLastChanged.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = Timeticks: (0) 0:00:00.00 +IP-MIB::ipAddressRowStatus.ipv4."127.0.0.1" = INTEGER: active(1) +IP-MIB::ipAddressRowStatus.ipv4."169.254.218.139" = INTEGER: active(1) +IP-MIB::ipAddressRowStatus.ipv4."169.254.255.255" = INTEGER: active(1) +IP-MIB::ipAddressRowStatus.ipv4."192.168.0.8" = INTEGER: active(1) +IP-MIB::ipAddressRowStatus.ipv4."192.168.0.255" = INTEGER: active(1) +IP-MIB::ipAddressRowStatus.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: active(1) +IP-MIB::ipAddressRowStatus.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = INTEGER: active(1) +IP-MIB::ipAddressStorageType.ipv4."127.0.0.1" = INTEGER: volatile(2) +IP-MIB::ipAddressStorageType.ipv4."169.254.218.139" = INTEGER: volatile(2) +IP-MIB::ipAddressStorageType.ipv4."169.254.255.255" = INTEGER: volatile(2) +IP-MIB::ipAddressStorageType.ipv4."192.168.0.8" = INTEGER: volatile(2) +IP-MIB::ipAddressStorageType.ipv4."192.168.0.255" = INTEGER: volatile(2) +IP-MIB::ipAddressStorageType.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01" = INTEGER: volatile(2) +IP-MIB::ipAddressStorageType.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45" = INTEGER: permanent(4) +IP-MIB::ipv6ScopeZoneIndexLinkLocal.2 = Gauge32: 2 +IP-MIB::ipv6ScopeZoneIndex3.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexAdminLocal.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexSiteLocal.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndex6.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndex7.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexOrganizationLocal.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndex9.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexA.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexB.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexC.2 = Gauge32: 0 +IP-MIB::ipv6ScopeZoneIndexD.2 = Gauge32: 0 +IP-MIB::ipDefaultRouterLifetime.ipv4."192.168.0.1".2 = Gauge32: 4294967295 seconds +IP-MIB::ipDefaultRouterLifetime.ipv6."fe:80:00:00:00:00:00:00:bc:eb:1c:ff:fe:29:ae:d5".2 = Gauge32: 29 seconds +IP-MIB::ipDefaultRouterPreference.ipv4."192.168.0.1".2 = INTEGER: medium(0) +IP-MIB::ipDefaultRouterPreference.ipv6."fe:80:00:00:00:00:00:00:bc:eb:1c:ff:fe:29:ae:d5".2 = INTEGER: medium(0) +IP-MIB::icmpInMsgs.0 = Counter32: 7160 +IP-MIB::icmpInErrors.0 = Counter32: 3 +IP-MIB::icmpInDestUnreachs.0 = Counter32: 7097 +IP-MIB::icmpInTimeExcds.0 = Counter32: 63 +IP-MIB::icmpInParmProbs.0 = Counter32: 0 +IP-MIB::icmpInSrcQuenchs.0 = Counter32: 0 +IP-MIB::icmpInRedirects.0 = Counter32: 0 +IP-MIB::icmpInEchos.0 = Counter32: 0 +IP-MIB::icmpInEchoReps.0 = Counter32: 0 +IP-MIB::icmpInTimestamps.0 = Counter32: 0 +IP-MIB::icmpInTimestampReps.0 = Counter32: 0 +IP-MIB::icmpInAddrMasks.0 = Counter32: 0 +IP-MIB::icmpInAddrMaskReps.0 = Counter32: 0 +IP-MIB::icmpOutMsgs.0 = Counter32: 1882 +IP-MIB::icmpOutErrors.0 = Counter32: 0 +IP-MIB::icmpOutDestUnreachs.0 = Counter32: 1882 +IP-MIB::icmpOutTimeExcds.0 = Counter32: 0 +IP-MIB::icmpOutParmProbs.0 = Counter32: 0 +IP-MIB::icmpOutSrcQuenchs.0 = Counter32: 0 +IP-MIB::icmpOutRedirects.0 = Counter32: 0 +IP-MIB::icmpOutEchos.0 = Counter32: 0 +IP-MIB::icmpOutEchoReps.0 = Counter32: 0 +IP-MIB::icmpOutTimestamps.0 = Counter32: 0 +IP-MIB::icmpOutTimestampReps.0 = Counter32: 0 +IP-MIB::icmpOutAddrMasks.0 = Counter32: 0 +IP-MIB::icmpOutAddrMaskReps.0 = Counter32: 0 +IP-MIB::icmpStatsInMsgs.ipv4 = Counter32: 7160 +IP-MIB::icmpStatsInMsgs.ipv6 = Counter32: 165292 +IP-MIB::icmpStatsInErrors.ipv4 = Counter32: 3 +IP-MIB::icmpStatsInErrors.ipv6 = Counter32: 0 +IP-MIB::icmpStatsOutMsgs.ipv4 = Counter32: 1882 +IP-MIB::icmpStatsOutMsgs.ipv6 = Counter32: 915 +IP-MIB::icmpStatsOutErrors.ipv4 = Counter32: 0 +IP-MIB::icmpStatsOutErrors.ipv6 = Counter32: 0 +IP-MIB::icmpMsgStatsInPkts.ipv4.3 = Counter32: 7097 +IP-MIB::icmpMsgStatsInPkts.ipv4.11 = Counter32: 63 +IP-MIB::icmpMsgStatsInPkts.ipv6.1 = Counter32: 816 +IP-MIB::icmpMsgStatsInPkts.ipv6.134 = Counter32: 163611 +IP-MIB::icmpMsgStatsInPkts.ipv6.135 = Counter32: 474 +IP-MIB::icmpMsgStatsInPkts.ipv6.136 = Counter32: 391 +IP-MIB::icmpMsgStatsOutPkts.ipv4.3 = Counter32: 1882 +IP-MIB::icmpMsgStatsOutPkts.ipv6.133 = Counter32: 1 +IP-MIB::icmpMsgStatsOutPkts.ipv6.135 = Counter32: 438 +IP-MIB::icmpMsgStatsOutPkts.ipv6.136 = Counter32: 474 +IP-MIB::icmpMsgStatsOutPkts.ipv6.143 = Counter32: 2 +TCP-MIB::tcpRtoAlgorithm.0 = INTEGER: other(1) +TCP-MIB::tcpRtoMin.0 = INTEGER: 200 milliseconds +TCP-MIB::tcpRtoMax.0 = INTEGER: 120000 milliseconds +TCP-MIB::tcpMaxConn.0 = INTEGER: -1 +TCP-MIB::tcpActiveOpens.0 = Counter32: 12443 +TCP-MIB::tcpPassiveOpens.0 = Counter32: 177912 +TCP-MIB::tcpAttemptFails.0 = Counter32: 1070 +TCP-MIB::tcpEstabResets.0 = Counter32: 784 +TCP-MIB::tcpCurrEstab.0 = Gauge32: 9 +TCP-MIB::tcpInSegs.0 = Counter32: 86328294 +TCP-MIB::tcpOutSegs.0 = Counter32: 55860848 +TCP-MIB::tcpRetransSegs.0 = Counter32: 88689 +TCP-MIB::tcpConnState.0.0.0.0.22.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.115.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.139.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.161.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.445.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.631.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.873.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.3240.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.3306.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.3689.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.3690.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.6690.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.6691.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.9091.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.49160.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.0.0.0.0.51413.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.412.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.4700.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.4700.127.0.0.1.52238 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.4700.127.0.0.1.53768 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.5432.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.18617.0.0.0.0.0 = INTEGER: listen(2) +TCP-MIB::tcpConnState.127.0.0.1.52238.127.0.0.1.4700 = INTEGER: established(5) +TCP-MIB::tcpConnState.127.0.0.1.53768.127.0.0.1.4700 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.0.8.6690.192.168.0.3.52003 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.0.8.35047.91.203.75.67.8888 = INTEGER: established(5) +TCP-MIB::tcpConnState.192.168.0.8.49495.91.203.75.68.443 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.0.8.53220.60.251.87.148.443 = INTEGER: closeWait(8) +TCP-MIB::tcpConnState.192.168.0.8.57103.91.203.75.69.443 = INTEGER: closeWait(8) +TCP-MIB::tcpConnLocalAddress.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.115.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.139.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.161.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.445.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.873.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.3240.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.3306.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.3689.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.3690.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.6690.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.6691.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.9091.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.49160.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.0.0.0.0.51413.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.412.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.4700.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.4700.127.0.0.1.52238 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.4700.127.0.0.1.53768 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.5432.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.18617.0.0.0.0.0 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.52238.127.0.0.1.4700 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.127.0.0.1.53768.127.0.0.1.4700 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnLocalAddress.192.168.0.8.6690.192.168.0.3.52003 = IpAddress: 192.168.0.8 +TCP-MIB::tcpConnLocalAddress.192.168.0.8.35047.91.203.75.67.8888 = IpAddress: 192.168.0.8 +TCP-MIB::tcpConnLocalAddress.192.168.0.8.49495.91.203.75.68.443 = IpAddress: 192.168.0.8 +TCP-MIB::tcpConnLocalAddress.192.168.0.8.53220.60.251.87.148.443 = IpAddress: 192.168.0.8 +TCP-MIB::tcpConnLocalAddress.192.168.0.8.57103.91.203.75.69.443 = IpAddress: 192.168.0.8 +TCP-MIB::tcpConnLocalPort.0.0.0.0.22.0.0.0.0.0 = INTEGER: 22 +TCP-MIB::tcpConnLocalPort.0.0.0.0.115.0.0.0.0.0 = INTEGER: 115 +TCP-MIB::tcpConnLocalPort.0.0.0.0.139.0.0.0.0.0 = INTEGER: 139 +TCP-MIB::tcpConnLocalPort.0.0.0.0.161.0.0.0.0.0 = INTEGER: 161 +TCP-MIB::tcpConnLocalPort.0.0.0.0.445.0.0.0.0.0 = INTEGER: 445 +TCP-MIB::tcpConnLocalPort.0.0.0.0.631.0.0.0.0.0 = INTEGER: 631 +TCP-MIB::tcpConnLocalPort.0.0.0.0.873.0.0.0.0.0 = INTEGER: 873 +TCP-MIB::tcpConnLocalPort.0.0.0.0.3240.0.0.0.0.0 = INTEGER: 3240 +TCP-MIB::tcpConnLocalPort.0.0.0.0.3306.0.0.0.0.0 = INTEGER: 3306 +TCP-MIB::tcpConnLocalPort.0.0.0.0.3689.0.0.0.0.0 = INTEGER: 3689 +TCP-MIB::tcpConnLocalPort.0.0.0.0.3690.0.0.0.0.0 = INTEGER: 3690 +TCP-MIB::tcpConnLocalPort.0.0.0.0.6690.0.0.0.0.0 = INTEGER: 6690 +TCP-MIB::tcpConnLocalPort.0.0.0.0.6691.0.0.0.0.0 = INTEGER: 6691 +TCP-MIB::tcpConnLocalPort.0.0.0.0.9091.0.0.0.0.0 = INTEGER: 9091 +TCP-MIB::tcpConnLocalPort.0.0.0.0.49160.0.0.0.0.0 = INTEGER: 49160 +TCP-MIB::tcpConnLocalPort.0.0.0.0.51413.0.0.0.0.0 = INTEGER: 51413 +TCP-MIB::tcpConnLocalPort.127.0.0.1.412.0.0.0.0.0 = INTEGER: 412 +TCP-MIB::tcpConnLocalPort.127.0.0.1.4700.0.0.0.0.0 = INTEGER: 4700 +TCP-MIB::tcpConnLocalPort.127.0.0.1.4700.127.0.0.1.52238 = INTEGER: 4700 +TCP-MIB::tcpConnLocalPort.127.0.0.1.4700.127.0.0.1.53768 = INTEGER: 4700 +TCP-MIB::tcpConnLocalPort.127.0.0.1.5432.0.0.0.0.0 = INTEGER: 5432 +TCP-MIB::tcpConnLocalPort.127.0.0.1.18617.0.0.0.0.0 = INTEGER: 18617 +TCP-MIB::tcpConnLocalPort.127.0.0.1.52238.127.0.0.1.4700 = INTEGER: 52238 +TCP-MIB::tcpConnLocalPort.127.0.0.1.53768.127.0.0.1.4700 = INTEGER: 53768 +TCP-MIB::tcpConnLocalPort.192.168.0.8.6690.192.168.0.3.52003 = INTEGER: 6690 +TCP-MIB::tcpConnLocalPort.192.168.0.8.35047.91.203.75.67.8888 = INTEGER: 35047 +TCP-MIB::tcpConnLocalPort.192.168.0.8.49495.91.203.75.68.443 = INTEGER: 49495 +TCP-MIB::tcpConnLocalPort.192.168.0.8.53220.60.251.87.148.443 = INTEGER: 53220 +TCP-MIB::tcpConnLocalPort.192.168.0.8.57103.91.203.75.69.443 = INTEGER: 57103 +TCP-MIB::tcpConnRemAddress.0.0.0.0.22.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.115.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.139.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.161.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.445.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.631.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.873.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.3240.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.3306.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.3689.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.3690.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.6690.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.6691.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.9091.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.49160.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.0.0.0.0.51413.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.412.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.4700.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.4700.127.0.0.1.52238 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.4700.127.0.0.1.53768 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.5432.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.18617.0.0.0.0.0 = IpAddress: 0.0.0.0 +TCP-MIB::tcpConnRemAddress.127.0.0.1.52238.127.0.0.1.4700 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.127.0.0.1.53768.127.0.0.1.4700 = IpAddress: 127.0.0.1 +TCP-MIB::tcpConnRemAddress.192.168.0.8.6690.192.168.0.3.52003 = IpAddress: 192.168.0.3 +TCP-MIB::tcpConnRemAddress.192.168.0.8.35047.91.203.75.67.8888 = IpAddress: 91.203.75.67 +TCP-MIB::tcpConnRemAddress.192.168.0.8.49495.91.203.75.68.443 = IpAddress: 91.203.75.68 +TCP-MIB::tcpConnRemAddress.192.168.0.8.53220.60.251.87.148.443 = IpAddress: 60.251.87.148 +TCP-MIB::tcpConnRemAddress.192.168.0.8.57103.91.203.75.69.443 = IpAddress: 91.203.75.69 +TCP-MIB::tcpConnRemPort.0.0.0.0.22.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.115.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.139.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.161.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.445.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.631.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.873.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.3240.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.3306.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.3689.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.3690.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.6690.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.6691.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.9091.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.49160.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.0.0.0.0.51413.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.412.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.4700.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.4700.127.0.0.1.52238 = INTEGER: 52238 +TCP-MIB::tcpConnRemPort.127.0.0.1.4700.127.0.0.1.53768 = INTEGER: 53768 +TCP-MIB::tcpConnRemPort.127.0.0.1.5432.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.18617.0.0.0.0.0 = INTEGER: 0 +TCP-MIB::tcpConnRemPort.127.0.0.1.52238.127.0.0.1.4700 = INTEGER: 4700 +TCP-MIB::tcpConnRemPort.127.0.0.1.53768.127.0.0.1.4700 = INTEGER: 4700 +TCP-MIB::tcpConnRemPort.192.168.0.8.6690.192.168.0.3.52003 = INTEGER: 52003 +TCP-MIB::tcpConnRemPort.192.168.0.8.35047.91.203.75.67.8888 = INTEGER: 8888 +TCP-MIB::tcpConnRemPort.192.168.0.8.49495.91.203.75.68.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.0.8.53220.60.251.87.148.443 = INTEGER: 443 +TCP-MIB::tcpConnRemPort.192.168.0.8.57103.91.203.75.69.443 = INTEGER: 443 +TCP-MIB::tcpInErrs.0 = Counter32: 1531 +TCP-MIB::tcpOutRsts.0 = Counter32: 86203 +TCP-MIB::tcpConnectionState.ipv4."127.0.0.1".4700.ipv4."127.0.0.1".52238 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv4."127.0.0.1".4700.ipv4."127.0.0.1".53768 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv4."127.0.0.1".52238.ipv4."127.0.0.1".4700 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv4."127.0.0.1".53768.ipv4."127.0.0.1".4700 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv4."192.168.0.8".6690.ipv4."192.168.0.3".52003 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv4."192.168.0.8".35047.ipv4."91.203.75.67".8888 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv4."192.168.0.8".49495.ipv4."91.203.75.68".443 = INTEGER: closeWait(8) +TCP-MIB::tcpConnectionState.ipv4."192.168.0.8".53220.ipv4."60.251.87.148".443 = INTEGER: closeWait(8) +TCP-MIB::tcpConnectionState.ipv4."192.168.0.8".57103.ipv4."91.203.75.69".443 = INTEGER: closeWait(8) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58378 = INTEGER: timeWait(11) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58413 = INTEGER: timeWait(11) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58432 = INTEGER: timeWait(11) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58452 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".548.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:09".61515 = INTEGER: established(5) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".5000.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:09".52990 = INTEGER: finWait2(7) +TCP-MIB::tcpConnectionState.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".34768.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58453 = INTEGER: established(5) +TCP-MIB::tcpConnectionProcess.ipv4."127.0.0.1".4700.ipv4."127.0.0.1".52238 = Gauge32: 3355 +TCP-MIB::tcpConnectionProcess.ipv4."127.0.0.1".4700.ipv4."127.0.0.1".53768 = Gauge32: 15467 +TCP-MIB::tcpConnectionProcess.ipv4."127.0.0.1".52238.ipv4."127.0.0.1".4700 = Gauge32: 12725 +TCP-MIB::tcpConnectionProcess.ipv4."127.0.0.1".53768.ipv4."127.0.0.1".4700 = Gauge32: 12725 +TCP-MIB::tcpConnectionProcess.ipv4."192.168.0.8".6690.ipv4."192.168.0.3".52003 = Gauge32: 15188 +TCP-MIB::tcpConnectionProcess.ipv4."192.168.0.8".35047.ipv4."91.203.75.67".8888 = Gauge32: 8330 +TCP-MIB::tcpConnectionProcess.ipv4."192.168.0.8".49495.ipv4."91.203.75.68".443 = Gauge32: 8330 +TCP-MIB::tcpConnectionProcess.ipv4."192.168.0.8".53220.ipv4."60.251.87.148".443 = Gauge32: 8330 +TCP-MIB::tcpConnectionProcess.ipv4."192.168.0.8".57103.ipv4."91.203.75.69".443 = Gauge32: 8330 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58378 = Gauge32: 0 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58413 = Gauge32: 0 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58432 = Gauge32: 0 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".443.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58452 = Gauge32: 8719 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".548.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:09".61515 = Gauge32: 12725 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".5000.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:09".52990 = Gauge32: 0 +TCP-MIB::tcpConnectionProcess.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:c0:a8:00:08".34768.ipv6."00:00:00:00:00:00:00:00:00:00:ff:ff:53:c2:b4:78".58453 = Gauge32: 15860 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".22 = Gauge32: 2741 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".115 = Gauge32: 2529 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".139 = Gauge32: 8828 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".161 = Gauge32: 8048 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".445 = Gauge32: 8828 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".631 = Gauge32: 8461 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".873 = Gauge32: 2700 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".3240 = Gauge32: 9287 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".3306 = Gauge32: 12551 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".3689 = Gauge32: 11357 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".3690 = Gauge32: 15237 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".6690 = Gauge32: 15188 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".6691 = Gauge32: 15188 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".9091 = Gauge32: 31014 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".49160 = Gauge32: 13000 +TCP-MIB::tcpListenerProcess.ipv4."0.0.0.0".51413 = Gauge32: 31014 +TCP-MIB::tcpListenerProcess.ipv4."127.0.0.1".412 = Gauge32: 3268 +TCP-MIB::tcpListenerProcess.ipv4."127.0.0.1".4700 = Gauge32: 7757 +TCP-MIB::tcpListenerProcess.ipv4."127.0.0.1".5432 = Gauge32: 7991 +TCP-MIB::tcpListenerProcess.ipv4."127.0.0.1".18617 = Gauge32: 13000 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".22 = Gauge32: 2741 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".80 = Gauge32: 8719 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".115 = Gauge32: 2529 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".139 = Gauge32: 8828 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".161 = Gauge32: 8048 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".443 = Gauge32: 8719 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".445 = Gauge32: 8828 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".515 = Gauge32: 8016 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".548 = Gauge32: 7839 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".631 = Gauge32: 8461 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".873 = Gauge32: 2700 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".5000 = Gauge32: 15860 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".5005 = Gauge32: 23000 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".5006 = Gauge32: 23000 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".9007 = Gauge32: 15860 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".34768 = Gauge32: 15860 +TCP-MIB::tcpListenerProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".51413 = Gauge32: 31014 +UDP-MIB::udpInDatagrams.0 = Counter32: 25213107 +UDP-MIB::udpNoPorts.0 = Counter32: 84 +UDP-MIB::udpInErrors.0 = Counter32: 0 +UDP-MIB::udpOutDatagrams.0 = Counter32: 7804499 +UDP-MIB::udpLocalAddress.0.0.0.0.68 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.123 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.137 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.138 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.161 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.1900 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.5353 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.9997 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.9998 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.9999 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.35954 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.37232 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.0.0.0.0.51413 = IpAddress: 0.0.0.0 +UDP-MIB::udpLocalAddress.127.0.0.1.123 = IpAddress: 127.0.0.1 +UDP-MIB::udpLocalAddress.127.0.0.1.37515 = IpAddress: 127.0.0.1 +UDP-MIB::udpLocalAddress.169.254.218.139.123 = IpAddress: 169.254.218.139 +UDP-MIB::udpLocalAddress.169.254.218.139.137 = IpAddress: 169.254.218.139 +UDP-MIB::udpLocalAddress.169.254.218.139.138 = IpAddress: 169.254.218.139 +UDP-MIB::udpLocalAddress.169.254.218.139.1900 = IpAddress: 169.254.218.139 +UDP-MIB::udpLocalAddress.169.254.255.255.137 = IpAddress: 169.254.255.255 +UDP-MIB::udpLocalAddress.169.254.255.255.138 = IpAddress: 169.254.255.255 +UDP-MIB::udpLocalAddress.192.168.0.8.123 = IpAddress: 192.168.0.8 +UDP-MIB::udpLocalAddress.192.168.0.8.137 = IpAddress: 192.168.0.8 +UDP-MIB::udpLocalAddress.192.168.0.8.138 = IpAddress: 192.168.0.8 +UDP-MIB::udpLocalAddress.192.168.0.8.1900 = IpAddress: 192.168.0.8 +UDP-MIB::udpLocalAddress.192.168.0.8.55900 = IpAddress: 192.168.0.8 +UDP-MIB::udpLocalAddress.192.168.0.255.137 = IpAddress: 192.168.0.255 +UDP-MIB::udpLocalAddress.192.168.0.255.138 = IpAddress: 192.168.0.255 +UDP-MIB::udpLocalPort.0.0.0.0.68 = INTEGER: 68 +UDP-MIB::udpLocalPort.0.0.0.0.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.0.0.0.0.137 = INTEGER: 137 +UDP-MIB::udpLocalPort.0.0.0.0.138 = INTEGER: 138 +UDP-MIB::udpLocalPort.0.0.0.0.161 = INTEGER: 161 +UDP-MIB::udpLocalPort.0.0.0.0.1900 = INTEGER: 1900 +UDP-MIB::udpLocalPort.0.0.0.0.5353 = INTEGER: 5353 +UDP-MIB::udpLocalPort.0.0.0.0.9997 = INTEGER: 9997 +UDP-MIB::udpLocalPort.0.0.0.0.9998 = INTEGER: 9998 +UDP-MIB::udpLocalPort.0.0.0.0.9999 = INTEGER: 9999 +UDP-MIB::udpLocalPort.0.0.0.0.35954 = INTEGER: 35954 +UDP-MIB::udpLocalPort.0.0.0.0.37232 = INTEGER: 37232 +UDP-MIB::udpLocalPort.0.0.0.0.51413 = INTEGER: 51413 +UDP-MIB::udpLocalPort.127.0.0.1.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.127.0.0.1.37515 = INTEGER: 37515 +UDP-MIB::udpLocalPort.169.254.218.139.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.169.254.218.139.137 = INTEGER: 137 +UDP-MIB::udpLocalPort.169.254.218.139.138 = INTEGER: 138 +UDP-MIB::udpLocalPort.169.254.218.139.1900 = INTEGER: 1900 +UDP-MIB::udpLocalPort.169.254.255.255.137 = INTEGER: 137 +UDP-MIB::udpLocalPort.169.254.255.255.138 = INTEGER: 138 +UDP-MIB::udpLocalPort.192.168.0.8.123 = INTEGER: 123 +UDP-MIB::udpLocalPort.192.168.0.8.137 = INTEGER: 137 +UDP-MIB::udpLocalPort.192.168.0.8.138 = INTEGER: 138 +UDP-MIB::udpLocalPort.192.168.0.8.1900 = INTEGER: 1900 +UDP-MIB::udpLocalPort.192.168.0.8.55900 = INTEGER: 55900 +UDP-MIB::udpLocalPort.192.168.0.255.137 = INTEGER: 137 +UDP-MIB::udpLocalPort.192.168.0.255.138 = INTEGER: 138 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".68.ipv4."0.0.0.0".0.1817 = Gauge32: 3270 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".123.ipv4."0.0.0.0".0.684 = Gauge32: 3236 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".137.ipv4."0.0.0.0".0.5090 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".138.ipv4."0.0.0.0".0.5091 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".161.ipv4."0.0.0.0".0.5837 = Gauge32: 8048 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".1900.ipv4."0.0.0.0".0.7950 = Gauge32: 9490 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".1900.ipv4."0.0.0.0".0.11100 = Gauge32: 13000 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".5353.ipv4."0.0.0.0".0.6177 = Gauge32: 7945 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".9997.ipv4."0.0.0.0".0.2087 = Gauge32: 3833 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".9998.ipv4."0.0.0.0".0.2086 = Gauge32: 3833 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".9999.ipv4."0.0.0.0".0.2085 = Gauge32: 3833 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".35954.ipv4."0.0.0.0".0.6178 = Gauge32: 7945 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".37232.ipv4."0.0.0.0".0.9279 = Gauge32: 9296 +UDP-MIB::udpEndpointProcess.ipv4."0.0.0.0".51413.ipv4."0.0.0.0".0.17243287 = Gauge32: 31014 +UDP-MIB::udpEndpointProcess.ipv4."127.0.0.1".123.ipv4."0.0.0.0".0.2015 = Gauge32: 3236 +UDP-MIB::udpEndpointProcess.ipv4."127.0.0.1".37515.ipv4."0.0.0.0".0.11098 = Gauge32: 13000 +UDP-MIB::udpEndpointProcess.ipv4."169.254.218.139".123.ipv4."0.0.0.0".0.5248 = Gauge32: 3236 +UDP-MIB::udpEndpointProcess.ipv4."169.254.218.139".137.ipv4."0.0.0.0".0.5636 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."169.254.218.139".138.ipv4."0.0.0.0".0.5638 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."169.254.218.139".1900.ipv4."0.0.0.0".0.7947 = Gauge32: 9490 +UDP-MIB::udpEndpointProcess.ipv4."169.254.255.255".137.ipv4."0.0.0.0".0.5637 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."169.254.255.255".138.ipv4."0.0.0.0".0.5639 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.8".123.ipv4."0.0.0.0".0.691 = Gauge32: 3236 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.8".137.ipv4."0.0.0.0".0.5632 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.8".138.ipv4."0.0.0.0".0.5634 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.8".1900.ipv4."0.0.0.0".0.7945 = Gauge32: 9490 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.8".51448.ipv4."192.168.0.1".5351.17242507 = Gauge32: 31014 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.8".55900.ipv4."0.0.0.0".0.11099 = Gauge32: 13000 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.255".137.ipv4."0.0.0.0".0.5633 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv4."192.168.0.255".138.ipv4."0.0.0.0".0.5635 = Gauge32: 7848 +UDP-MIB::udpEndpointProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".123.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.685 = Gauge32: 3236 +UDP-MIB::udpEndpointProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".161.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.5838 = Gauge32: 8048 +UDP-MIB::udpEndpointProcess.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:01".123.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.2017 = Gauge32: 3236 +UDP-MIB::udpEndpointProcess.ipv6."fe:80:00:00:00:00:00:00:02:11:32:ff:fe:28:59:45".123.ipv6."00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00".0.2016 = Gauge32: 3236 +SNMPv2-MIB::snmpInPkts.0 = Counter32: 559677 +SNMPv2-MIB::snmpOutPkts.0 = Counter32: 559670 +SNMPv2-MIB::snmpInBadVersions.0 = Counter32: 0 +SNMPv2-MIB::snmpInBadCommunityNames.0 = Counter32: 7 +SNMPv2-MIB::snmpInBadCommunityUses.0 = Counter32: 0 +SNMPv2-MIB::snmpInASNParseErrs.0 = Counter32: 0 +SNMPv2-MIB::snmpInTooBigs.0 = Counter32: 0 +SNMPv2-MIB::snmpInNoSuchNames.0 = Counter32: 0 +SNMPv2-MIB::snmpInBadValues.0 = Counter32: 0 +SNMPv2-MIB::snmpInReadOnlys.0 = Counter32: 0 +SNMPv2-MIB::snmpInGenErrs.0 = Counter32: 0 +SNMPv2-MIB::snmpInTotalReqVars.0 = Counter32: 2447158 +SNMPv2-MIB::snmpInTotalSetVars.0 = Counter32: 0 +SNMPv2-MIB::snmpInGetRequests.0 = Counter32: 35917 +SNMPv2-MIB::snmpInGetNexts.0 = Counter32: 523738 +SNMPv2-MIB::snmpInSetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpInGetResponses.0 = Counter32: 0 +SNMPv2-MIB::snmpInTraps.0 = Counter32: 0 +SNMPv2-MIB::snmpOutTooBigs.0 = Counter32: 0 +SNMPv2-MIB::snmpOutNoSuchNames.0 = Counter32: 4 +SNMPv2-MIB::snmpOutBadValues.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGenErrs.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGetNexts.0 = Counter32: 0 +SNMPv2-MIB::snmpOutSetRequests.0 = Counter32: 0 +SNMPv2-MIB::snmpOutGetResponses.0 = Counter32: 559694 +SNMPv2-MIB::snmpOutTraps.0 = Counter32: 0 +SNMPv2-MIB::snmpEnableAuthenTraps.0 = INTEGER: disabled(2) +SNMPv2-MIB::snmpSilentDrops.0 = Counter32: 0 +SNMPv2-MIB::snmpProxyDrops.0 = Counter32: 0 +HOST-RESOURCES-MIB::hrSystemUptime.0 = Timeticks: (106389160) 12 days, 7:31:31.60 +HOST-RESOURCES-MIB::hrSystemDate.0 = STRING: 2014-9-8,20:27:45.0,+2:0 +HOST-RESOURCES-MIB::hrSystemInitialLoadDevice.0 = INTEGER: 1536 +HOST-RESOURCES-MIB::hrSystemInitialLoadParameters.0 = STRING: "console=ttyS0,115200 ip=off initrd=0x8000040,8M root=/dev/md0 rw syno_hw_version=DS414v10 ihd_num=4 netif_num=2 flash_size=8 Sat" +HOST-RESOURCES-MIB::hrSystemNumUsers.0 = Gauge32: 0 +HOST-RESOURCES-MIB::hrSystemProcesses.0 = Gauge32: 88 +HOST-RESOURCES-MIB::hrSystemMaxProcesses.0 = INTEGER: 0 +HOST-RESOURCES-MIB::hrMemorySize.0 = INTEGER: 1033912 KBytes +HOST-RESOURCES-MIB::hrStorageIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrStorageIndex.3 = INTEGER: 3 +HOST-RESOURCES-MIB::hrStorageIndex.6 = INTEGER: 6 +HOST-RESOURCES-MIB::hrStorageIndex.7 = INTEGER: 7 +HOST-RESOURCES-MIB::hrStorageIndex.8 = INTEGER: 8 +HOST-RESOURCES-MIB::hrStorageIndex.10 = INTEGER: 10 +HOST-RESOURCES-MIB::hrStorageIndex.31 = INTEGER: 31 +HOST-RESOURCES-MIB::hrStorageIndex.34 = INTEGER: 34 +HOST-RESOURCES-MIB::hrStorageIndex.36 = INTEGER: 36 +HOST-RESOURCES-MIB::hrStorageIndex.38 = INTEGER: 38 +HOST-RESOURCES-MIB::hrStorageIndex.39 = INTEGER: 39 +HOST-RESOURCES-MIB::hrStorageType.1 = OID: HOST-RESOURCES-TYPES::hrStorageRam +HOST-RESOURCES-MIB::hrStorageType.3 = OID: HOST-RESOURCES-TYPES::hrStorageVirtualMemory +HOST-RESOURCES-MIB::hrStorageType.6 = OID: HOST-RESOURCES-TYPES::hrStorageOther +HOST-RESOURCES-MIB::hrStorageType.7 = OID: HOST-RESOURCES-TYPES::hrStorageOther +HOST-RESOURCES-MIB::hrStorageType.8 = OID: HOST-RESOURCES-TYPES::hrStorageOther +HOST-RESOURCES-MIB::hrStorageType.10 = OID: HOST-RESOURCES-TYPES::hrStorageVirtualMemory +HOST-RESOURCES-MIB::hrStorageType.31 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.34 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.36 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.38 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageType.39 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk +HOST-RESOURCES-MIB::hrStorageDescr.1 = STRING: Physical memory +HOST-RESOURCES-MIB::hrStorageDescr.3 = STRING: Virtual memory +HOST-RESOURCES-MIB::hrStorageDescr.6 = STRING: Memory buffers +HOST-RESOURCES-MIB::hrStorageDescr.7 = STRING: Cached memory +HOST-RESOURCES-MIB::hrStorageDescr.8 = STRING: Shared memory +HOST-RESOURCES-MIB::hrStorageDescr.10 = STRING: Swap space +HOST-RESOURCES-MIB::hrStorageDescr.31 = STRING: / +HOST-RESOURCES-MIB::hrStorageDescr.34 = STRING: /tmp +HOST-RESOURCES-MIB::hrStorageDescr.36 = STRING: /volume1 +HOST-RESOURCES-MIB::hrStorageDescr.38 = STRING: /volumeUSB2/usbshare +HOST-RESOURCES-MIB::hrStorageDescr.39 = STRING: /volumeUSB1/usbshare +HOST-RESOURCES-MIB::hrStorageAllocationUnits.1 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.3 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.6 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.7 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.8 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.10 = INTEGER: 1024 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.31 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.34 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.36 = INTEGER: 8192 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.38 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageAllocationUnits.39 = INTEGER: 4096 Bytes +HOST-RESOURCES-MIB::hrStorageSize.1 = INTEGER: 1033912 +HOST-RESOURCES-MIB::hrStorageSize.3 = INTEGER: 3130996 +HOST-RESOURCES-MIB::hrStorageSize.6 = INTEGER: 1033912 +HOST-RESOURCES-MIB::hrStorageSize.7 = INTEGER: 666520 +HOST-RESOURCES-MIB::hrStorageSize.8 = INTEGER: 0 +HOST-RESOURCES-MIB::hrStorageSize.10 = INTEGER: 2097084 +HOST-RESOURCES-MIB::hrStorageSize.31 = INTEGER: 612766 +HOST-RESOURCES-MIB::hrStorageSize.34 = INTEGER: 129239 +HOST-RESOURCES-MIB::hrStorageSize.36 = INTEGER: 1079859161 +HOST-RESOURCES-MIB::hrStorageSize.38 = INTEGER: 180268906 +HOST-RESOURCES-MIB::hrStorageSize.39 = INTEGER: 480714564 +HOST-RESOURCES-MIB::hrStorageUsed.1 = INTEGER: 984152 +HOST-RESOURCES-MIB::hrStorageUsed.3 = INTEGER: 995968 +HOST-RESOURCES-MIB::hrStorageUsed.6 = INTEGER: 100364 +HOST-RESOURCES-MIB::hrStorageUsed.7 = INTEGER: 666520 +HOST-RESOURCES-MIB::hrStorageUsed.10 = INTEGER: 11816 +HOST-RESOURCES-MIB::hrStorageUsed.31 = INTEGER: 515093 +HOST-RESOURCES-MIB::hrStorageUsed.34 = INTEGER: 117 +HOST-RESOURCES-MIB::hrStorageUsed.36 = INTEGER: 284097091 +HOST-RESOURCES-MIB::hrStorageUsed.38 = INTEGER: 50436 +HOST-RESOURCES-MIB::hrStorageUsed.39 = INTEGER: 182503373 +HOST-RESOURCES-MIB::hrDeviceIndex.768 = INTEGER: 768 +HOST-RESOURCES-MIB::hrDeviceIndex.769 = INTEGER: 769 +HOST-RESOURCES-MIB::hrDeviceIndex.1025 = INTEGER: 1025 +HOST-RESOURCES-MIB::hrDeviceIndex.1026 = INTEGER: 1026 +HOST-RESOURCES-MIB::hrDeviceIndex.1027 = INTEGER: 1027 +HOST-RESOURCES-MIB::hrDeviceIndex.1536 = INTEGER: 1536 +HOST-RESOURCES-MIB::hrDeviceIndex.1537 = INTEGER: 1537 +HOST-RESOURCES-MIB::hrDeviceIndex.1538 = INTEGER: 1538 +HOST-RESOURCES-MIB::hrDeviceIndex.1539 = INTEGER: 1539 +HOST-RESOURCES-MIB::hrDeviceIndex.1568 = INTEGER: 1568 +HOST-RESOURCES-MIB::hrDeviceIndex.1569 = INTEGER: 1569 +HOST-RESOURCES-MIB::hrDeviceIndex.3072 = INTEGER: 3072 +HOST-RESOURCES-MIB::hrDeviceType.768 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.769 = OID: HOST-RESOURCES-TYPES::hrDeviceProcessor +HOST-RESOURCES-MIB::hrDeviceType.1025 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1026 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1027 = OID: HOST-RESOURCES-TYPES::hrDeviceNetwork +HOST-RESOURCES-MIB::hrDeviceType.1536 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1537 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1538 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1539 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1568 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.1569 = OID: HOST-RESOURCES-TYPES::hrDeviceDiskStorage +HOST-RESOURCES-MIB::hrDeviceType.3072 = OID: HOST-RESOURCES-TYPES::hrDeviceCoprocessor +HOST-RESOURCES-MIB::hrDeviceDescr.768 = STRING: +HOST-RESOURCES-MIB::hrDeviceDescr.769 = STRING: +HOST-RESOURCES-MIB::hrDeviceDescr.1025 = STRING: network interface lo +HOST-RESOURCES-MIB::hrDeviceDescr.1026 = STRING: network interface eth0 +HOST-RESOURCES-MIB::hrDeviceDescr.1027 = STRING: network interface eth1 +HOST-RESOURCES-MIB::hrDeviceDescr.1536 = STRING: ST3000VN000-1H4167 +HOST-RESOURCES-MIB::hrDeviceDescr.1537 = STRING: ST3000VN000-1H4167 +HOST-RESOURCES-MIB::hrDeviceDescr.1538 = STRING: ST3000VN000-1H4167 +HOST-RESOURCES-MIB::hrDeviceDescr.1539 = STRING: ST3000VN000-1H4167 +HOST-RESOURCES-MIB::hrDeviceDescr.1568 = STRING: RAID disk (/dev/md0) +HOST-RESOURCES-MIB::hrDeviceDescr.1569 = STRING: RAID disk (/dev/md1) +HOST-RESOURCES-MIB::hrDeviceDescr.3072 = STRING: Guessing that there's a floating point co-processor +HOST-RESOURCES-MIB::hrDeviceID.768 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.769 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1025 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1026 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1027 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1536 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1537 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1538 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1539 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1568 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.1569 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceID.3072 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrDeviceStatus.768 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.769 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1025 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1026 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceStatus.1027 = INTEGER: running(2) +HOST-RESOURCES-MIB::hrDeviceErrors.1025 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1026 = Counter32: 0 +HOST-RESOURCES-MIB::hrDeviceErrors.1027 = Counter32: 0 +HOST-RESOURCES-MIB::hrProcessorFrwID.768 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorFrwID.769 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrProcessorLoad.768 = INTEGER: 3 +HOST-RESOURCES-MIB::hrProcessorLoad.769 = INTEGER: 4 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1025 = INTEGER: 1 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1026 = INTEGER: 2 +HOST-RESOURCES-MIB::hrNetworkIfIndex.1027 = INTEGER: 3 +HOST-RESOURCES-MIB::hrDiskStorageAccess.1536 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1537 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1538 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1539 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1568 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageAccess.1569 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1536 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1537 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1538 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1539 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1568 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageMedia.1569 = INTEGER: unknown(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1536 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1537 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1538 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1539 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1568 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageRemoveble.1569 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1536 = INTEGER: 134217727 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1537 = INTEGER: 134217727 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1538 = INTEGER: 134217727 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1539 = INTEGER: 134217727 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1568 = INTEGER: 2490176 KBytes +HOST-RESOURCES-MIB::hrDiskStorageCapacity.1569 = INTEGER: 2097088 KBytes +HOST-RESOURCES-MIB::hrPartitionIndex.1536.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1536.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrPartitionIndex.1537.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1537.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrPartitionIndex.1538.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1538.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrPartitionIndex.1539.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1539.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrPartitionIndex.1568.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionIndex.1569.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrPartitionLabel.1536.1 = STRING: "/dev/hda1" +HOST-RESOURCES-MIB::hrPartitionLabel.1536.2 = STRING: "/dev/hda2" +HOST-RESOURCES-MIB::hrPartitionLabel.1537.1 = STRING: "/dev/hdb1" +HOST-RESOURCES-MIB::hrPartitionLabel.1537.2 = STRING: "/dev/hdb2" +HOST-RESOURCES-MIB::hrPartitionLabel.1538.1 = STRING: "/dev/hdc1" +HOST-RESOURCES-MIB::hrPartitionLabel.1538.2 = STRING: "/dev/hdc2" +HOST-RESOURCES-MIB::hrPartitionLabel.1539.1 = STRING: "/dev/hdd1" +HOST-RESOURCES-MIB::hrPartitionLabel.1539.2 = STRING: "/dev/hdd2" +HOST-RESOURCES-MIB::hrPartitionLabel.1568.1 = STRING: "/dev/md0" +HOST-RESOURCES-MIB::hrPartitionLabel.1569.1 = STRING: "/dev/md1" +HOST-RESOURCES-MIB::hrPartitionID.1536.1 = STRING: "0x801" +HOST-RESOURCES-MIB::hrPartitionID.1536.2 = STRING: "0x802" +HOST-RESOURCES-MIB::hrPartitionID.1537.1 = STRING: "0x811" +HOST-RESOURCES-MIB::hrPartitionID.1537.2 = STRING: "0x812" +HOST-RESOURCES-MIB::hrPartitionID.1538.1 = STRING: "0x821" +HOST-RESOURCES-MIB::hrPartitionID.1538.2 = STRING: "0x822" +HOST-RESOURCES-MIB::hrPartitionID.1539.1 = STRING: "0x831" +HOST-RESOURCES-MIB::hrPartitionID.1539.2 = STRING: "0x832" +HOST-RESOURCES-MIB::hrPartitionID.1568.1 = STRING: "0x900" +HOST-RESOURCES-MIB::hrPartitionID.1569.1 = STRING: "0x901" +HOST-RESOURCES-MIB::hrPartitionSize.1536.1 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1536.2 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1537.1 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1537.2 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1538.1 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1538.2 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1539.1 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1539.2 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1568.1 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionSize.1569.1 = INTEGER: -1 KBytes +HOST-RESOURCES-MIB::hrPartitionFSIndex.1536.1 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1536.2 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1537.1 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1537.2 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1538.1 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1538.2 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1539.1 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1539.2 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1568.1 = INTEGER: -1 +HOST-RESOURCES-MIB::hrPartitionFSIndex.1569.1 = INTEGER: -1 +HOST-RESOURCES-MIB::hrFSIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrFSIndex.4 = INTEGER: 4 +HOST-RESOURCES-MIB::hrFSIndex.6 = INTEGER: 6 +HOST-RESOURCES-MIB::hrFSIndex.8 = INTEGER: 8 +HOST-RESOURCES-MIB::hrFSIndex.9 = INTEGER: 9 +HOST-RESOURCES-MIB::hrFSMountPoint.1 = STRING: "/" +HOST-RESOURCES-MIB::hrFSMountPoint.4 = STRING: "/tmp" +HOST-RESOURCES-MIB::hrFSMountPoint.6 = STRING: "/volume1" +HOST-RESOURCES-MIB::hrFSMountPoint.8 = STRING: "/volumeUSB2/usbshare" +HOST-RESOURCES-MIB::hrFSMountPoint.9 = STRING: "/volumeUSB1/usbshare" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.1 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.4 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.6 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.8 = "" +HOST-RESOURCES-MIB::hrFSRemoteMountPoint.9 = "" +HOST-RESOURCES-MIB::hrFSType.1 = OID: HOST-RESOURCES-TYPES::hrFSLinuxExt2 +HOST-RESOURCES-MIB::hrFSType.4 = OID: HOST-RESOURCES-TYPES::hrFSOther +HOST-RESOURCES-MIB::hrFSType.6 = OID: HOST-RESOURCES-TYPES::hrFSLinuxExt2 +HOST-RESOURCES-MIB::hrFSType.8 = OID: HOST-RESOURCES-TYPES::hrFSLinuxExt2 +HOST-RESOURCES-MIB::hrFSType.9 = OID: HOST-RESOURCES-TYPES::hrFSLinuxExt2 +HOST-RESOURCES-MIB::hrFSAccess.1 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.4 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.6 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.8 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSAccess.9 = INTEGER: readWrite(1) +HOST-RESOURCES-MIB::hrFSBootable.1 = INTEGER: true(1) +HOST-RESOURCES-MIB::hrFSBootable.4 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.6 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.8 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSBootable.9 = INTEGER: false(2) +HOST-RESOURCES-MIB::hrFSStorageIndex.1 = INTEGER: 31 +HOST-RESOURCES-MIB::hrFSStorageIndex.4 = INTEGER: 34 +HOST-RESOURCES-MIB::hrFSStorageIndex.6 = INTEGER: 36 +HOST-RESOURCES-MIB::hrFSStorageIndex.8 = INTEGER: 38 +HOST-RESOURCES-MIB::hrFSStorageIndex.9 = INTEGER: 39 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.1 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.4 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.6 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.8 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastFullBackupDate.9 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.1 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.4 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.6 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.8 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrFSLastPartialBackupDate.9 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWRunIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunIndex.1060 = INTEGER: 1060 +HOST-RESOURCES-MIB::hrSWRunIndex.2415 = INTEGER: 2415 +HOST-RESOURCES-MIB::hrSWRunIndex.2457 = INTEGER: 2457 +HOST-RESOURCES-MIB::hrSWRunIndex.2498 = INTEGER: 2498 +HOST-RESOURCES-MIB::hrSWRunIndex.2516 = INTEGER: 2516 +HOST-RESOURCES-MIB::hrSWRunIndex.2517 = INTEGER: 2517 +HOST-RESOURCES-MIB::hrSWRunIndex.2529 = INTEGER: 2529 +HOST-RESOURCES-MIB::hrSWRunIndex.2700 = INTEGER: 2700 +HOST-RESOURCES-MIB::hrSWRunIndex.2741 = INTEGER: 2741 +HOST-RESOURCES-MIB::hrSWRunIndex.3236 = INTEGER: 3236 +HOST-RESOURCES-MIB::hrSWRunIndex.3267 = INTEGER: 3267 +HOST-RESOURCES-MIB::hrSWRunIndex.3268 = INTEGER: 3268 +HOST-RESOURCES-MIB::hrSWRunIndex.3270 = INTEGER: 3270 +HOST-RESOURCES-MIB::hrSWRunIndex.3355 = INTEGER: 3355 +HOST-RESOURCES-MIB::hrSWRunIndex.3833 = INTEGER: 3833 +HOST-RESOURCES-MIB::hrSWRunIndex.4361 = INTEGER: 4361 +HOST-RESOURCES-MIB::hrSWRunIndex.4962 = INTEGER: 4962 +HOST-RESOURCES-MIB::hrSWRunIndex.5607 = INTEGER: 5607 +HOST-RESOURCES-MIB::hrSWRunIndex.5734 = INTEGER: 5734 +HOST-RESOURCES-MIB::hrSWRunIndex.5804 = INTEGER: 5804 +HOST-RESOURCES-MIB::hrSWRunIndex.6343 = INTEGER: 6343 +HOST-RESOURCES-MIB::hrSWRunIndex.7542 = INTEGER: 7542 +HOST-RESOURCES-MIB::hrSWRunIndex.7756 = INTEGER: 7756 +HOST-RESOURCES-MIB::hrSWRunIndex.7757 = INTEGER: 7757 +HOST-RESOURCES-MIB::hrSWRunIndex.7767 = INTEGER: 7767 +HOST-RESOURCES-MIB::hrSWRunIndex.7839 = INTEGER: 7839 +HOST-RESOURCES-MIB::hrSWRunIndex.7848 = INTEGER: 7848 +HOST-RESOURCES-MIB::hrSWRunIndex.7945 = INTEGER: 7945 +HOST-RESOURCES-MIB::hrSWRunIndex.7950 = INTEGER: 7950 +HOST-RESOURCES-MIB::hrSWRunIndex.7961 = INTEGER: 7961 +HOST-RESOURCES-MIB::hrSWRunIndex.7991 = INTEGER: 7991 +HOST-RESOURCES-MIB::hrSWRunIndex.8005 = INTEGER: 8005 +HOST-RESOURCES-MIB::hrSWRunIndex.8006 = INTEGER: 8006 +HOST-RESOURCES-MIB::hrSWRunIndex.8007 = INTEGER: 8007 +HOST-RESOURCES-MIB::hrSWRunIndex.8016 = INTEGER: 8016 +HOST-RESOURCES-MIB::hrSWRunIndex.8042 = INTEGER: 8042 +HOST-RESOURCES-MIB::hrSWRunIndex.8048 = INTEGER: 8048 +HOST-RESOURCES-MIB::hrSWRunIndex.8053 = INTEGER: 8053 +HOST-RESOURCES-MIB::hrSWRunIndex.8233 = INTEGER: 8233 +HOST-RESOURCES-MIB::hrSWRunIndex.8243 = INTEGER: 8243 +HOST-RESOURCES-MIB::hrSWRunIndex.8244 = INTEGER: 8244 +HOST-RESOURCES-MIB::hrSWRunIndex.8312 = INTEGER: 8312 +HOST-RESOURCES-MIB::hrSWRunIndex.8330 = INTEGER: 8330 +HOST-RESOURCES-MIB::hrSWRunIndex.8461 = INTEGER: 8461 +HOST-RESOURCES-MIB::hrSWRunIndex.8529 = INTEGER: 8529 +HOST-RESOURCES-MIB::hrSWRunIndex.8530 = INTEGER: 8530 +HOST-RESOURCES-MIB::hrSWRunIndex.8719 = INTEGER: 8719 +HOST-RESOURCES-MIB::hrSWRunIndex.8828 = INTEGER: 8828 +HOST-RESOURCES-MIB::hrSWRunIndex.8857 = INTEGER: 8857 +HOST-RESOURCES-MIB::hrSWRunIndex.9013 = INTEGER: 9013 +HOST-RESOURCES-MIB::hrSWRunIndex.9287 = INTEGER: 9287 +HOST-RESOURCES-MIB::hrSWRunIndex.9296 = INTEGER: 9296 +HOST-RESOURCES-MIB::hrSWRunIndex.9407 = INTEGER: 9407 +HOST-RESOURCES-MIB::hrSWRunIndex.9490 = INTEGER: 9490 +HOST-RESOURCES-MIB::hrSWRunIndex.10920 = INTEGER: 10920 +HOST-RESOURCES-MIB::hrSWRunIndex.10926 = INTEGER: 10926 +HOST-RESOURCES-MIB::hrSWRunIndex.11357 = INTEGER: 11357 +HOST-RESOURCES-MIB::hrSWRunIndex.11367 = INTEGER: 11367 +HOST-RESOURCES-MIB::hrSWRunIndex.12224 = INTEGER: 12224 +HOST-RESOURCES-MIB::hrSWRunIndex.12242 = INTEGER: 12242 +HOST-RESOURCES-MIB::hrSWRunIndex.12551 = INTEGER: 12551 +HOST-RESOURCES-MIB::hrSWRunIndex.12725 = INTEGER: 12725 +HOST-RESOURCES-MIB::hrSWRunIndex.12871 = INTEGER: 12871 +HOST-RESOURCES-MIB::hrSWRunIndex.12985 = INTEGER: 12985 +HOST-RESOURCES-MIB::hrSWRunIndex.12992 = INTEGER: 12992 +HOST-RESOURCES-MIB::hrSWRunIndex.13000 = INTEGER: 13000 +HOST-RESOURCES-MIB::hrSWRunIndex.14984 = INTEGER: 14984 +HOST-RESOURCES-MIB::hrSWRunIndex.15034 = INTEGER: 15034 +HOST-RESOURCES-MIB::hrSWRunIndex.15065 = INTEGER: 15065 +HOST-RESOURCES-MIB::hrSWRunIndex.15187 = INTEGER: 15187 +HOST-RESOURCES-MIB::hrSWRunIndex.15188 = INTEGER: 15188 +HOST-RESOURCES-MIB::hrSWRunIndex.15230 = INTEGER: 15230 +HOST-RESOURCES-MIB::hrSWRunIndex.15231 = INTEGER: 15231 +HOST-RESOURCES-MIB::hrSWRunIndex.15237 = INTEGER: 15237 +HOST-RESOURCES-MIB::hrSWRunIndex.15334 = INTEGER: 15334 +HOST-RESOURCES-MIB::hrSWRunIndex.15424 = INTEGER: 15424 +HOST-RESOURCES-MIB::hrSWRunIndex.15425 = INTEGER: 15425 +HOST-RESOURCES-MIB::hrSWRunIndex.15426 = INTEGER: 15426 +HOST-RESOURCES-MIB::hrSWRunIndex.15427 = INTEGER: 15427 +HOST-RESOURCES-MIB::hrSWRunIndex.15467 = INTEGER: 15467 +HOST-RESOURCES-MIB::hrSWRunIndex.15820 = INTEGER: 15820 +HOST-RESOURCES-MIB::hrSWRunIndex.15860 = INTEGER: 15860 +HOST-RESOURCES-MIB::hrSWRunIndex.17951 = INTEGER: 17951 +HOST-RESOURCES-MIB::hrSWRunIndex.22905 = INTEGER: 22905 +HOST-RESOURCES-MIB::hrSWRunIndex.22999 = INTEGER: 22999 +HOST-RESOURCES-MIB::hrSWRunIndex.23000 = INTEGER: 23000 +HOST-RESOURCES-MIB::hrSWRunIndex.31014 = INTEGER: 31014 +HOST-RESOURCES-MIB::hrSWRunName.1 = STRING: "init" +HOST-RESOURCES-MIB::hrSWRunName.1060 = STRING: "syslog-ng" +HOST-RESOURCES-MIB::hrSWRunName.2415 = STRING: "sleep" +HOST-RESOURCES-MIB::hrSWRunName.2457 = STRING: "synologrotated" +HOST-RESOURCES-MIB::hrSWRunName.2498 = STRING: "dbus-daemon" +HOST-RESOURCES-MIB::hrSWRunName.2516 = STRING: "dbus-daemon" +HOST-RESOURCES-MIB::hrSWRunName.2517 = STRING: "synologarchd" +HOST-RESOURCES-MIB::hrSWRunName.2529 = STRING: "sftpd" +HOST-RESOURCES-MIB::hrSWRunName.2700 = STRING: "rsync" +HOST-RESOURCES-MIB::hrSWRunName.2741 = STRING: "sshd" +HOST-RESOURCES-MIB::hrSWRunName.3236 = STRING: "ntpd" +HOST-RESOURCES-MIB::hrSWRunName.3267 = STRING: "nginx" +HOST-RESOURCES-MIB::hrSWRunName.3268 = STRING: "nginx" +HOST-RESOURCES-MIB::hrSWRunName.3270 = STRING: "dhcpcd" +HOST-RESOURCES-MIB::hrSWRunName.3355 = STRING: "cnid_dbd" +HOST-RESOURCES-MIB::hrSWRunName.3833 = STRING: "findhostd" +HOST-RESOURCES-MIB::hrSWRunName.4361 = STRING: "scemd" +HOST-RESOURCES-MIB::hrSWRunName.4962 = STRING: "crond" +HOST-RESOURCES-MIB::hrSWRunName.5607 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.5734 = STRING: "php-fpm" +HOST-RESOURCES-MIB::hrSWRunName.5804 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.6343 = STRING: "getty" +HOST-RESOURCES-MIB::hrSWRunName.7542 = STRING: "php-fpm" +HOST-RESOURCES-MIB::hrSWRunName.7756 = STRING: "synomkflvd" +HOST-RESOURCES-MIB::hrSWRunName.7757 = STRING: "cnid_metad" +HOST-RESOURCES-MIB::hrSWRunName.7767 = STRING: "synomkthumbd" +HOST-RESOURCES-MIB::hrSWRunName.7839 = STRING: "afpd" +HOST-RESOURCES-MIB::hrSWRunName.7848 = STRING: "nmbd" +HOST-RESOURCES-MIB::hrSWRunName.7945 = STRING: "avahi-daemon" +HOST-RESOURCES-MIB::hrSWRunName.7950 = STRING: "hotplugd" +HOST-RESOURCES-MIB::hrSWRunName.7961 = STRING: "synobackupd" +HOST-RESOURCES-MIB::hrSWRunName.7991 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.8005 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.8006 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.8007 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.8016 = STRING: "inetd" +HOST-RESOURCES-MIB::hrSWRunName.8042 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.8048 = STRING: "snmpd" +HOST-RESOURCES-MIB::hrSWRunName.8053 = STRING: "ddnsd" +HOST-RESOURCES-MIB::hrSWRunName.8233 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.8243 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.8244 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.8312 = STRING: "synoindexd" +HOST-RESOURCES-MIB::hrSWRunName.8330 = STRING: "synorelayd" +HOST-RESOURCES-MIB::hrSWRunName.8461 = STRING: "cupsd" +HOST-RESOURCES-MIB::hrSWRunName.8529 = STRING: "synologd" +HOST-RESOURCES-MIB::hrSWRunName.8530 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.8719 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.8828 = STRING: "smbd" +HOST-RESOURCES-MIB::hrSWRunName.8857 = STRING: "fileindexd" +HOST-RESOURCES-MIB::hrSWRunName.9013 = STRING: "smbd" +HOST-RESOURCES-MIB::hrSWRunName.9287 = STRING: "usbipd" +HOST-RESOURCES-MIB::hrSWRunName.9296 = STRING: "synosnmpcd" +HOST-RESOURCES-MIB::hrSWRunName.9407 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.9490 = STRING: "minissdpd" +HOST-RESOURCES-MIB::hrSWRunName.10920 = STRING: "scheduler" +HOST-RESOURCES-MIB::hrSWRunName.10926 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.11357 = STRING: "mt-daapd" +HOST-RESOURCES-MIB::hrSWRunName.11367 = STRING: "postgres" +HOST-RESOURCES-MIB::hrSWRunName.12224 = STRING: "php-fpm" +HOST-RESOURCES-MIB::hrSWRunName.12242 = STRING: "mysqld_safe" +HOST-RESOURCES-MIB::hrSWRunName.12551 = STRING: "mysqld" +HOST-RESOURCES-MIB::hrSWRunName.12725 = STRING: "afpd" +HOST-RESOURCES-MIB::hrSWRunName.12871 = STRING: "owncloud.sh" +HOST-RESOURCES-MIB::hrSWRunName.12985 = STRING: "synovideoindexd" +HOST-RESOURCES-MIB::hrSWRunName.12992 = STRING: "synovideometada" +HOST-RESOURCES-MIB::hrSWRunName.13000 = STRING: "synovpcd" +HOST-RESOURCES-MIB::hrSWRunName.14984 = STRING: "cloud-authd" +HOST-RESOURCES-MIB::hrSWRunName.15034 = STRING: "cloud-indexd" +HOST-RESOURCES-MIB::hrSWRunName.15065 = STRING: "cloud-cleand" +HOST-RESOURCES-MIB::hrSWRunName.15187 = STRING: "synodtv" +HOST-RESOURCES-MIB::hrSWRunName.15188 = STRING: "syncd" +HOST-RESOURCES-MIB::hrSWRunName.15230 = STRING: "synodtv" +HOST-RESOURCES-MIB::hrSWRunName.15231 = STRING: "syno-cloud-clie" +HOST-RESOURCES-MIB::hrSWRunName.15237 = STRING: "svnserve" +HOST-RESOURCES-MIB::hrSWRunName.15334 = STRING: "timebkpd" +HOST-RESOURCES-MIB::hrSWRunName.15424 = STRING: "synoindexscand" +HOST-RESOURCES-MIB::hrSWRunName.15425 = STRING: "synoindexworker" +HOST-RESOURCES-MIB::hrSWRunName.15426 = STRING: "synoindexplugin" +HOST-RESOURCES-MIB::hrSWRunName.15427 = STRING: "synomediaparser" +HOST-RESOURCES-MIB::hrSWRunName.15467 = STRING: "cnid_dbd" +HOST-RESOURCES-MIB::hrSWRunName.15820 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.15860 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.17951 = STRING: "php-fpm" +HOST-RESOURCES-MIB::hrSWRunName.22905 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.22999 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.23000 = STRING: "httpd" +HOST-RESOURCES-MIB::hrSWRunName.31014 = STRING: "transmission-da" +HOST-RESOURCES-MIB::hrSWRunID.1 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.1060 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2415 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2457 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2498 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2516 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2517 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2529 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2700 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.2741 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3236 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3267 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3268 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3270 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3355 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.3833 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.4361 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.4962 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.5607 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.5734 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.5804 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.6343 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7542 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7756 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7757 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7767 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7839 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7848 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7945 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7950 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7961 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.7991 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8005 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8006 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8007 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8016 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8042 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8048 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8053 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8233 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8243 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8244 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8312 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8330 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8461 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8529 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8530 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8719 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8828 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.8857 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.9013 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.9287 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.9296 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.9407 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.9490 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.10920 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.10926 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.11357 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.11367 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12224 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12242 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12551 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12725 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12871 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12985 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.12992 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.13000 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.14984 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15034 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15065 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15187 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15188 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15230 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15231 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15237 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15334 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15424 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15425 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15426 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15427 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15467 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15820 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.15860 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.17951 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.22905 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.22999 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.23000 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunID.31014 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWRunPath.1 = STRING: "/sbin/init" +HOST-RESOURCES-MIB::hrSWRunPath.1060 = STRING: "/usr/sbin/syslog-ng" +HOST-RESOURCES-MIB::hrSWRunPath.2415 = STRING: "sleep" +HOST-RESOURCES-MIB::hrSWRunPath.2457 = STRING: "/usr/syno/bin/synologrotated" +HOST-RESOURCES-MIB::hrSWRunPath.2498 = STRING: "/usr/syno/sbin/dbus-daemon" +HOST-RESOURCES-MIB::hrSWRunPath.2516 = STRING: "/usr/syno/sbin/dbus-daemon" +HOST-RESOURCES-MIB::hrSWRunPath.2517 = STRING: "/usr/syno/sbin/synologarchd" +HOST-RESOURCES-MIB::hrSWRunPath.2529 = STRING: "/usr/syno/sbin/sftpd" +HOST-RESOURCES-MIB::hrSWRunPath.2700 = STRING: "/usr/syno/bin/rsync" +HOST-RESOURCES-MIB::hrSWRunPath.2741 = STRING: "/usr/syno/sbin/sshd" +HOST-RESOURCES-MIB::hrSWRunPath.3236 = STRING: "/usr/sbin/ntpd" +HOST-RESOURCES-MIB::hrSWRunPath.3267 = STRING: "nginx: master process /usr/bin/nginx -g pid /run/nginx.pid; daemon on; master_process on;" +HOST-RESOURCES-MIB::hrSWRunPath.3268 = STRING: "nginx: worker process" +HOST-RESOURCES-MIB::hrSWRunPath.3270 = STRING: "/sbin/dhcpcd" +HOST-RESOURCES-MIB::hrSWRunPath.3355 = STRING: "/usr/syno/sbin/cnid_dbd" +HOST-RESOURCES-MIB::hrSWRunPath.3833 = STRING: "/usr/syno/bin/findhostd" +HOST-RESOURCES-MIB::hrSWRunPath.4361 = STRING: "scemd" +HOST-RESOURCES-MIB::hrSWRunPath.4962 = STRING: "/usr/sbin/crond" +HOST-RESOURCES-MIB::hrSWRunPath.5607 = STRING: "postgres: postgres mediaserver [local] idle" +HOST-RESOURCES-MIB::hrSWRunPath.5734 = STRING: "php-fpm: pool www" +HOST-RESOURCES-MIB::hrSWRunPath.5804 = STRING: "postgres: postgres video_metadata [local] idle" +HOST-RESOURCES-MIB::hrSWRunPath.6343 = STRING: "/sbin/getty" +HOST-RESOURCES-MIB::hrSWRunPath.7542 = STRING: "php-fpm: pool www" +HOST-RESOURCES-MIB::hrSWRunPath.7756 = STRING: "/usr/syno/sbin/synomkflvd" +HOST-RESOURCES-MIB::hrSWRunPath.7757 = STRING: "/usr/syno/sbin/cnid_metad" +HOST-RESOURCES-MIB::hrSWRunPath.7767 = STRING: "/usr/syno/sbin/synomkthumbd" +HOST-RESOURCES-MIB::hrSWRunPath.7839 = STRING: "/usr/syno/sbin/afpd" +HOST-RESOURCES-MIB::hrSWRunPath.7848 = STRING: "/usr/syno/sbin/nmbd" +HOST-RESOURCES-MIB::hrSWRunPath.7945 = STRING: "avahi-daemon: running [DiskStation.local]" +HOST-RESOURCES-MIB::hrSWRunPath.7950 = STRING: "/usr/syno/sbin/hotplugd" +HOST-RESOURCES-MIB::hrSWRunPath.7961 = STRING: "/usr/syno/bin/synobackupd" +HOST-RESOURCES-MIB::hrSWRunPath.7991 = STRING: "/usr/bin/postgres" +HOST-RESOURCES-MIB::hrSWRunPath.8005 = STRING: "postgres: checkpointer process " +HOST-RESOURCES-MIB::hrSWRunPath.8006 = STRING: "postgres: writer process " +HOST-RESOURCES-MIB::hrSWRunPath.8007 = STRING: "postgres: wal writer process " +HOST-RESOURCES-MIB::hrSWRunPath.8016 = STRING: "/usr/sbin/inetd" +HOST-RESOURCES-MIB::hrSWRunPath.8042 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.8048 = STRING: "/usr/syno/sbin/snmpd" +HOST-RESOURCES-MIB::hrSWRunPath.8053 = STRING: "/usr/syno/sbin/ddnsd" +HOST-RESOURCES-MIB::hrSWRunPath.8233 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.8243 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.8244 = STRING: "/usr/bin/fcgi-" +HOST-RESOURCES-MIB::hrSWRunPath.8312 = STRING: "/usr/syno/sbin/synoindexd" +HOST-RESOURCES-MIB::hrSWRunPath.8330 = STRING: "/usr/syno/sbin/synorelayd" +HOST-RESOURCES-MIB::hrSWRunPath.8461 = STRING: "/usr/syno/sbin/cupsd" +HOST-RESOURCES-MIB::hrSWRunPath.8529 = STRING: "/usr/syno/sbin/synologd" +HOST-RESOURCES-MIB::hrSWRunPath.8530 = STRING: "postgres: postgres synolog [local] idle" +HOST-RESOURCES-MIB::hrSWRunPath.8719 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.8828 = STRING: "/usr/syno/sbin/smbd" +HOST-RESOURCES-MIB::hrSWRunPath.8857 = STRING: "/usr/syno/sbin/fileindexd" +HOST-RESOURCES-MIB::hrSWRunPath.9013 = STRING: "/usr/syno/sbin/smbd" +HOST-RESOURCES-MIB::hrSWRunPath.9287 = STRING: "/usr/syno/sbin/usbipd" +HOST-RESOURCES-MIB::hrSWRunPath.9296 = STRING: "/usr/syno/sbin/synosnmpcd" +HOST-RESOURCES-MIB::hrSWRunPath.9407 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.9490 = STRING: "/usr/syno/sbin/minissdpd" +HOST-RESOURCES-MIB::hrSWRunPath.10920 = STRING: "/var/packages/DownloadStation/target/sbin/scheduler" +HOST-RESOURCES-MIB::hrSWRunPath.10926 = STRING: "postgres: postgres download [local] idle" +HOST-RESOURCES-MIB::hrSWRunPath.11357 = STRING: "/var/packages/iTunesServer/target/sbin/mt-daapd" +HOST-RESOURCES-MIB::hrSWRunPath.11367 = STRING: "postgres: postgres mediaserver [local] idle" +HOST-RESOURCES-MIB::hrSWRunPath.12224 = STRING: "php-fpm: master process (/etc/php/php-fpm.conf)" +HOST-RESOURCES-MIB::hrSWRunPath.12242 = STRING: "/bin/sh" +HOST-RESOURCES-MIB::hrSWRunPath.12551 = STRING: "/usr/bin/mysqld" +HOST-RESOURCES-MIB::hrSWRunPath.12725 = STRING: "/usr/syno/sbin/afpd" +HOST-RESOURCES-MIB::hrSWRunPath.12871 = STRING: "/bin/sh" +HOST-RESOURCES-MIB::hrSWRunPath.12985 = STRING: "/var/packages/VideoStation/target/sbin/synovideoindexd" +HOST-RESOURCES-MIB::hrSWRunPath.12992 = STRING: "/var/packages/VideoStation/target/sbin/synovideometadatad" +HOST-RESOURCES-MIB::hrSWRunPath.13000 = STRING: "/var/packages/VideoStation/target/sbin/synovpcd" +HOST-RESOURCES-MIB::hrSWRunPath.14984 = STRING: "/var/packages/CloudStation/target/sbin/cloud-authd" +HOST-RESOURCES-MIB::hrSWRunPath.15034 = STRING: "/var/packages/CloudStation/target/sbin/cloud-indexd" +HOST-RESOURCES-MIB::hrSWRunPath.15065 = STRING: "/var/packages/CloudStation/target/sbin/cloud-cleand" +HOST-RESOURCES-MIB::hrSWRunPath.15187 = STRING: "/var/packages/VideoStation/target/bin/synodtv" +HOST-RESOURCES-MIB::hrSWRunPath.15188 = STRING: "/var/packages/CloudStation/target/sbin/syncd" +HOST-RESOURCES-MIB::hrSWRunPath.15230 = STRING: "/var/packages/VideoStation/target/bin/synodtv" +HOST-RESOURCES-MIB::hrSWRunPath.15231 = STRING: "/var/packages/CloudStation/target/sbin/syno-cloud-clientd" +HOST-RESOURCES-MIB::hrSWRunPath.15237 = STRING: "/var/packages/SVN/target/bin/svnserve" +HOST-RESOURCES-MIB::hrSWRunPath.15334 = STRING: "/usr/local/timebkp/tools/timebkpd" +HOST-RESOURCES-MIB::hrSWRunPath.15424 = STRING: "/usr/syno/sbin/synoindexscand" +HOST-RESOURCES-MIB::hrSWRunPath.15425 = STRING: "/usr/syno/sbin/synoindexworkerd" +HOST-RESOURCES-MIB::hrSWRunPath.15426 = STRING: "/usr/syno/sbin/synoindexplugind" +HOST-RESOURCES-MIB::hrSWRunPath.15427 = STRING: "/usr/syno/sbin/synomediaparserd" +HOST-RESOURCES-MIB::hrSWRunPath.15467 = STRING: "/usr/syno/sbin/cnid_dbd" +HOST-RESOURCES-MIB::hrSWRunPath.15820 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.15860 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.17951 = STRING: "php-fpm: pool www" +HOST-RESOURCES-MIB::hrSWRunPath.22905 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.22999 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.23000 = STRING: "/usr/bin/httpd" +HOST-RESOURCES-MIB::hrSWRunPath.31014 = STRING: "/usr/local/transmission/bin/transmission-daemon" +HOST-RESOURCES-MIB::hrSWRunParameters.1 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.1060 = STRING: "-F" +HOST-RESOURCES-MIB::hrSWRunParameters.2415 = STRING: "1800" +HOST-RESOURCES-MIB::hrSWRunParameters.2457 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.2498 = STRING: "--session --fork --print-address" +HOST-RESOURCES-MIB::hrSWRunParameters.2516 = STRING: "--system --nopidfile" +HOST-RESOURCES-MIB::hrSWRunParameters.2517 = STRING: "-f" +HOST-RESOURCES-MIB::hrSWRunParameters.2529 = STRING: "-p 115" +HOST-RESOURCES-MIB::hrSWRunParameters.2700 = STRING: "--daemon" +HOST-RESOURCES-MIB::hrSWRunParameters.2741 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3236 = STRING: "-p /var/run/ntpd.pid -g" +HOST-RESOURCES-MIB::hrSWRunParameters.3267 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3268 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.3270 = STRING: "-n eth1 -t 30" +HOST-RESOURCES-MIB::hrSWRunParameters.3355 = STRING: "/volume1/@tmp/@pplepriv@te/Series 6 4 default log_error " +HOST-RESOURCES-MIB::hrSWRunParameters.3833 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.4361 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.4962 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.5607 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.5734 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.5804 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.6343 = STRING: "115200 console" +HOST-RESOURCES-MIB::hrSWRunParameters.7542 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7756 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7757 = STRING: "-l log_error" +HOST-RESOURCES-MIB::hrSWRunParameters.7767 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7839 = STRING: "-g guest -c 256 -n DiskStation:AFPServer -l default log_error" +HOST-RESOURCES-MIB::hrSWRunParameters.7848 = STRING: "-D" +HOST-RESOURCES-MIB::hrSWRunParameters.7945 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7950 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7961 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.7991 = STRING: "-D /var/services/pgsql" +HOST-RESOURCES-MIB::hrSWRunParameters.8005 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8006 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8007 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8016 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8042 = STRING: "-DSSL -f /etc/httpd/conf/httpd.conf-webdav" +HOST-RESOURCES-MIB::hrSWRunParameters.8048 = STRING: "-Ln -c /usr/syno/etc/snmpd.conf -p /var/run/snmpd.pid udp:161,udp6:161,tcp:161,tcp6:161" +HOST-RESOURCES-MIB::hrSWRunParameters.8053 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8233 = STRING: "-DSSL -DSPDY -DHAVE_PHP" +HOST-RESOURCES-MIB::hrSWRunParameters.8243 = STRING: "-DSSL -DSPDY -DHAVE_PHP" +HOST-RESOURCES-MIB::hrSWRunParameters.8244 = STRING: "-DSSL -DSPDY -DHAVE_PHP" +HOST-RESOURCES-MIB::hrSWRunParameters.8312 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8330 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8461 = STRING: "-C /usr/local/cups/cupsd.conf" +HOST-RESOURCES-MIB::hrSWRunParameters.8529 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8530 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.8719 = STRING: "-DSSL -DSPDY -DHAVE_PHP" +HOST-RESOURCES-MIB::hrSWRunParameters.8828 = STRING: "-F" +HOST-RESOURCES-MIB::hrSWRunParameters.8857 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.9013 = STRING: "-F" +HOST-RESOURCES-MIB::hrSWRunParameters.9287 = STRING: "-D" +HOST-RESOURCES-MIB::hrSWRunParameters.9296 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.9407 = STRING: "-DSSL -DSPDY -DFrameOptions -f /etc/httpd/conf/httpd.conf-sys" +HOST-RESOURCES-MIB::hrSWRunParameters.9490 = STRING: "-i eth0 -i eth1" +HOST-RESOURCES-MIB::hrSWRunParameters.10920 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.10926 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.11357 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.11367 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12224 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12242 = STRING: "/usr/bin/mysqld_safe --datadir=/var/services/mysql --pid-file=/run/mysqld/mysqld.pid" +HOST-RESOURCES-MIB::hrSWRunParameters.12551 = STRING: "--basedir=/usr --datadir=/var/services/mysql --plugin-dir=/usr/lib/mysql/plugin --user=mysql --log-error=/var/services/mysql/Dis" +HOST-RESOURCES-MIB::hrSWRunParameters.12725 = STRING: "-g guest -c 256 -n DiskStation:AFPServer -l default log_error" +HOST-RESOURCES-MIB::hrSWRunParameters.12871 = STRING: "/usr/local/owncloud/bin/owncloud.sh" +HOST-RESOURCES-MIB::hrSWRunParameters.12985 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.12992 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.13000 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.14984 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15034 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15065 = STRING: "/volume1/@cloudstation/@sync" +HOST-RESOURCES-MIB::hrSWRunParameters.15187 = STRING: "start" +HOST-RESOURCES-MIB::hrSWRunParameters.15188 = STRING: "-c /volume1/@cloudstation/@sync -p 6690 -u /volume1/@cloudstation/@sync/user-db.sqlite" +HOST-RESOURCES-MIB::hrSWRunParameters.15230 = STRING: "start" +HOST-RESOURCES-MIB::hrSWRunParameters.15231 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15237 = STRING: "-d -r /var/packages/SVN/target/repo/" +HOST-RESOURCES-MIB::hrSWRunParameters.15334 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15424 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15425 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15426 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15427 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.15467 = STRING: "/volume1/@tmp/@pplepriv@te/Films 7 4 default log_error " +HOST-RESOURCES-MIB::hrSWRunParameters.15820 = STRING: "-DSSL -DSPDY -DFrameOptions -f /etc/httpd/conf/httpd.conf-sys" +HOST-RESOURCES-MIB::hrSWRunParameters.15860 = STRING: "-DSSL -DSPDY -DFrameOptions -f /etc/httpd/conf/httpd.conf-sys" +HOST-RESOURCES-MIB::hrSWRunParameters.17951 = "" +HOST-RESOURCES-MIB::hrSWRunParameters.22905 = STRING: "-DSSL -f /etc/httpd/conf/httpd.conf-webdav" +HOST-RESOURCES-MIB::hrSWRunParameters.22999 = STRING: "-DSSL -f /etc/httpd/conf/httpd.conf-webdav" +HOST-RESOURCES-MIB::hrSWRunParameters.23000 = STRING: "-DSSL -f /etc/httpd/conf/httpd.conf-webdav" +HOST-RESOURCES-MIB::hrSWRunParameters.31014 = STRING: "-g /usr/local/transmission/var/ -x /usr/local/transmission/var/transmission.pid" +HOST-RESOURCES-MIB::hrSWRunType.1 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.1060 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2415 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2457 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2498 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2516 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2517 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2529 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2700 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.2741 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.3236 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.3267 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.3268 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.3270 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.3355 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.3833 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.4361 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.4962 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.5607 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.5734 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.5804 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.6343 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7542 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7756 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7757 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7767 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7839 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7848 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7945 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7950 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7961 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.7991 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8005 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8006 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8007 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8016 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8042 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8048 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8053 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8233 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8243 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8244 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8312 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8330 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8461 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8529 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8530 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8719 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8828 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.8857 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.9013 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.9287 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.9296 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.9407 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.9490 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.10920 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.10926 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.11357 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.11367 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12224 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12242 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12551 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12725 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12871 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12985 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.12992 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.13000 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.14984 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15034 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15065 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15187 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15188 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15230 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15231 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15237 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15334 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15424 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15425 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15426 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15427 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15467 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15820 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.15860 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.17951 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.22905 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.22999 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.23000 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunType.31014 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWRunStatus.1 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.1060 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2415 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2457 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2498 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2516 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2517 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2529 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2700 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.2741 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3236 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3267 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3268 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3270 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3355 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.3833 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.4361 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.4962 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.5607 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.5734 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.5804 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.6343 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7542 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7756 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7757 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7767 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7839 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7848 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7945 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7950 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7961 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.7991 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8005 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8006 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8007 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8016 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8042 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8048 = INTEGER: running(1) +HOST-RESOURCES-MIB::hrSWRunStatus.8053 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8233 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8243 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8244 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8312 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8330 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8461 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8529 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8530 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8719 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8828 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.8857 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.9013 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.9287 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.9296 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.9407 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.9490 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.10920 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.10926 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.11357 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.11367 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12224 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12242 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12551 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12725 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12871 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12985 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.12992 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.13000 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.14984 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15034 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15065 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15187 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15188 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15230 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15231 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15237 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15334 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15424 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15425 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15426 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15427 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15467 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15820 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.15860 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.17951 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.22905 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.22999 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.23000 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunStatus.31014 = INTEGER: runnable(2) +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1 = INTEGER: 935 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.1060 = INTEGER: 3038 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2415 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2457 = INTEGER: 37 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2498 = INTEGER: 5466 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2516 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2517 = INTEGER: 2638 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2529 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2700 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.2741 = INTEGER: 65 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3236 = INTEGER: 296 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3267 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3268 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3270 = INTEGER: 340 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3355 = INTEGER: 18 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.3833 = INTEGER: 72 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.4361 = INTEGER: 9709 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.4962 = INTEGER: 27 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.5607 = INTEGER: 36 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.5734 = INTEGER: 35344 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.5804 = INTEGER: 50 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.6343 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7542 = INTEGER: 34950 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7756 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7757 = INTEGER: 157 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7767 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7839 = INTEGER: 22 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7848 = INTEGER: 1068 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7945 = INTEGER: 3052 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7950 = INTEGER: 21082 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7961 = INTEGER: 328 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.7991 = INTEGER: 73 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8005 = INTEGER: 96 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8006 = INTEGER: 262 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8007 = INTEGER: 216 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8016 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8042 = INTEGER: 181 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8048 = INTEGER: 75252 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8053 = INTEGER: 56 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8233 = INTEGER: 2760 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8243 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8244 = INTEGER: 14 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8312 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8330 = INTEGER: 741 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8461 = INTEGER: 6 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8529 = INTEGER: 146 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8530 = INTEGER: 11 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8719 = INTEGER: 41620 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8828 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.8857 = INTEGER: 22 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.9013 = INTEGER: 50 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.9287 = INTEGER: 2150 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.9296 = INTEGER: 7720 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.9407 = INTEGER: 45 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.9490 = INTEGER: 750 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.10920 = INTEGER: 132 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.10926 = INTEGER: 22946 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.11357 = INTEGER: 312 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.11367 = INTEGER: 13 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12224 = INTEGER: 272 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12242 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12551 = INTEGER: 123094 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12725 = INTEGER: 424 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12871 = INTEGER: 179 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12985 = INTEGER: 16 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.12992 = INTEGER: 132 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.13000 = INTEGER: 7096 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.14984 = INTEGER: 88 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15034 = INTEGER: 86 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15065 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15187 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15188 = INTEGER: 58424 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15230 = INTEGER: 188 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15231 = INTEGER: 28590 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15237 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15334 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15424 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15425 = INTEGER: 26 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15426 = INTEGER: 130 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15427 = INTEGER: 20682 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15467 = INTEGER: 10 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15820 = INTEGER: 56 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.15860 = INTEGER: 7692 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.17951 = INTEGER: 72752 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.22905 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.22999 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.23000 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWRunPerfCPU.31014 = INTEGER: 6566 +HOST-RESOURCES-MIB::hrSWRunPerfMem.1 = INTEGER: 13418496 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.1060 = INTEGER: 1972 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2415 = INTEGER: 25484992 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2457 = INTEGER: 3800 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2498 = INTEGER: 3856 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2516 = INTEGER: 3892 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2517 = INTEGER: 3892 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2529 = INTEGER: 3912 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2700 = INTEGER: 4108 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.2741 = INTEGER: 4168 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3236 = INTEGER: 4688 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3267 = INTEGER: 4740 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3268 = INTEGER: 4740 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3270 = INTEGER: 4748 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3355 = INTEGER: 2306844 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.3833 = INTEGER: 6360 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.4361 = INTEGER: 7768 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.4962 = INTEGER: 2870688 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.5607 = INTEGER: 2331552 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.5734 = INTEGER: 3025424 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.5804 = INTEGER: 2333008 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.6343 = INTEGER: 9192 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7542 = INTEGER: 3447724 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7756 = INTEGER: 12104 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7757 = INTEGER: 12104 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7767 = INTEGER: 12120 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7839 = INTEGER: 12240 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7848 = INTEGER: 12252 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7945 = INTEGER: 12444 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7950 = INTEGER: 12472 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7961 = INTEGER: 12560 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.7991 = INTEGER: 12844 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8005 = INTEGER: 13012 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8006 = INTEGER: 13012 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8007 = INTEGER: 13016 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8016 = INTEGER: 13072 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8042 = INTEGER: 13468 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8048 = INTEGER: 13520 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8053 = INTEGER: 13592 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8233 = INTEGER: 14248 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8243 = INTEGER: 14272 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8244 = INTEGER: 14272 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8312 = INTEGER: 14524 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8330 = INTEGER: 14676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8461 = INTEGER: 14908 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8529 = INTEGER: 15288 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8530 = INTEGER: 15292 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8719 = INTEGER: 15980 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8828 = INTEGER: 16260 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.8857 = INTEGER: 16568 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.9013 = INTEGER: 16908 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.9287 = INTEGER: 18536 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.9296 = INTEGER: 18560 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.9407 = INTEGER: 19160 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.9490 = INTEGER: 19772 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.10920 = INTEGER: 22316 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.10926 = INTEGER: 22316 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.11357 = INTEGER: 22952 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.11367 = INTEGER: 23356 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12224 = INTEGER: 26568 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12242 = INTEGER: 26696 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12551 = INTEGER: 26928 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12725 = INTEGER: 32048 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12871 = INTEGER: 37164 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12985 = INTEGER: 38600 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.12992 = INTEGER: 38688 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.13000 = INTEGER: 39012 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.14984 = INTEGER: 708 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15034 = INTEGER: 756 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15065 = INTEGER: 808 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15187 = INTEGER: 940 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15188 = INTEGER: 952 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15230 = INTEGER: 1136 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15231 = INTEGER: 1148 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15237 = INTEGER: 1364 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15334 = INTEGER: 1892 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15424 = INTEGER: 2676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15425 = INTEGER: 2676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15426 = INTEGER: 2676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15427 = INTEGER: 2676 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15467 = INTEGER: 13543176 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15820 = INTEGER: 4942772 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.15860 = INTEGER: 4943352 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.17951 = INTEGER: 95140 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.22905 = INTEGER: 27747112 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.22999 = INTEGER: 27747828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.23000 = INTEGER: 27747828 KBytes +HOST-RESOURCES-MIB::hrSWRunPerfMem.31014 = INTEGER: 35977432 KBytes +HOST-RESOURCES-MIB::hrSWInstalledIndex.0 = INTEGER: 0 +HOST-RESOURCES-MIB::hrSWInstalledIndex.1 = INTEGER: 1 +HOST-RESOURCES-MIB::hrSWInstalledIndex.2 = INTEGER: 2 +HOST-RESOURCES-MIB::hrSWInstalledIndex.3 = INTEGER: 3 +HOST-RESOURCES-MIB::hrSWInstalledIndex.4 = INTEGER: 4 +HOST-RESOURCES-MIB::hrSWInstalledIndex.5 = INTEGER: 5 +HOST-RESOURCES-MIB::hrSWInstalledIndex.6 = INTEGER: 6 +HOST-RESOURCES-MIB::hrSWInstalledIndex.7 = INTEGER: 7 +HOST-RESOURCES-MIB::hrSWInstalledIndex.8 = INTEGER: 8 +HOST-RESOURCES-MIB::hrSWInstalledIndex.9 = INTEGER: 9 +HOST-RESOURCES-MIB::hrSWInstalledIndex.10 = INTEGER: 10 +HOST-RESOURCES-MIB::hrSWInstalledIndex.11 = INTEGER: 11 +HOST-RESOURCES-MIB::hrSWInstalledIndex.12 = INTEGER: 12 +HOST-RESOURCES-MIB::hrSWInstalledIndex.13 = INTEGER: 13 +HOST-RESOURCES-MIB::hrSWInstalledIndex.14 = INTEGER: 14 +HOST-RESOURCES-MIB::hrSWInstalledIndex.15 = INTEGER: 15 +HOST-RESOURCES-MIB::hrSWInstalledIndex.16 = INTEGER: 16 +HOST-RESOURCES-MIB::hrSWInstalledIndex.17 = INTEGER: 17 +HOST-RESOURCES-MIB::hrSWInstalledIndex.18 = INTEGER: 18 +HOST-RESOURCES-MIB::hrSWInstalledIndex.19 = INTEGER: 19 +HOST-RESOURCES-MIB::hrSWInstalledIndex.20 = INTEGER: 20 +HOST-RESOURCES-MIB::hrSWInstalledIndex.21 = INTEGER: 21 +HOST-RESOURCES-MIB::hrSWInstalledName.0 = STRING: "dsm-admincenter-armadaxp-bin-5.0-4493-s2" +HOST-RESOURCES-MIB::hrSWInstalledName.1 = STRING: "dsm-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.2 = STRING: "iptables-1.4.x-armadaxp-bin-1.4.21-4493-s3" +HOST-RESOURCES-MIB::hrSWInstalledName.3 = STRING: "krb5-1.9.2-armadaxp-bin-1.9.2-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.4 = STRING: "libdsm-armadaxp-bin-5.0-4493-s3" +HOST-RESOURCES-MIB::hrSWInstalledName.5 = STRING: "libsynobackup-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.6 = STRING: "libsynocgi-armadaxp-bin-5.0-4493-s3" +HOST-RESOURCES-MIB::hrSWInstalledName.7 = STRING: "libsynoflashcache-armadaxp-bin-5.0-4493-s3" +HOST-RESOURCES-MIB::hrSWInstalledName.8 = STRING: "libsynoinstall-armadaxp-bin-5.0-4493-s3" +HOST-RESOURCES-MIB::hrSWInstalledName.9 = STRING: "libsynoldap-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.10 = STRING: "libsynosdk-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.11 = STRING: "linux-3.x-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.12 = STRING: "lnxessential-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.13 = STRING: "lnxsdk-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.14 = STRING: "openssl-1.0.x-armadaxp-bin-1.0.1g-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.15 = STRING: "samba-3.6.x-armadaxp-bin-3.6.9-4493-s3" +HOST-RESOURCES-MIB::hrSWInstalledName.16 = STRING: "synobackup-armadaxp-bin-5.0-4493-s2" +HOST-RESOURCES-MIB::hrSWInstalledName.17 = STRING: "synoddns-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.18 = STRING: "synoha-armadaxp-bin-5.0-4493-s2" +HOST-RESOURCES-MIB::hrSWInstalledName.19 = STRING: "synopkg-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.20 = STRING: "webapi-supportform-armadaxp-bin-5.0-4493-s4" +HOST-RESOURCES-MIB::hrSWInstalledName.21 = STRING: "webfm2-armadaxp-bin-5.0-4493-s2" +HOST-RESOURCES-MIB::hrSWInstalledID.0 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.1 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.2 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.3 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.4 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.5 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.6 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.7 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.8 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.9 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.10 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.11 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.12 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.13 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.14 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.15 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.16 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.17 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.18 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.19 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.20 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledID.21 = OID: SNMPv2-SMI::zeroDotZero +HOST-RESOURCES-MIB::hrSWInstalledType.0 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.1 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.2 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.3 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.4 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.5 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.6 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.7 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.8 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.9 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.10 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.11 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.12 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.13 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.14 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.15 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.16 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.17 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.18 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.19 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.20 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledType.21 = INTEGER: application(4) +HOST-RESOURCES-MIB::hrSWInstalledDate.0 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.1 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.2 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.3 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.4 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.5 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.6 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.7 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.8 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.9 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.10 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.11 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.12 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.13 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.14 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.15 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.16 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.17 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.18 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.19 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.20 = STRING: 0-1-1,0:0:0.0 +HOST-RESOURCES-MIB::hrSWInstalledDate.21 = STRING: 0-1-1,0:0:0.0 +IF-MIB::ifName.1 = STRING: lo +IF-MIB::ifName.2 = STRING: eth0 +IF-MIB::ifName.3 = STRING: eth1 +IF-MIB::ifInMulticastPkts.1 = Counter32: 0 +IF-MIB::ifInMulticastPkts.2 = Counter32: 0 +IF-MIB::ifInMulticastPkts.3 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.1 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.2 = Counter32: 0 +IF-MIB::ifInBroadcastPkts.3 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.1 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.2 = Counter32: 0 +IF-MIB::ifOutMulticastPkts.3 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.1 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.2 = Counter32: 0 +IF-MIB::ifOutBroadcastPkts.3 = Counter32: 0 +IF-MIB::ifHCInOctets.1 = Counter64: 242527936 +IF-MIB::ifHCInOctets.2 = Counter64: 108811122388 +IF-MIB::ifHCInOctets.3 = Counter64: 0 +IF-MIB::ifHCInUcastPkts.1 = Counter64: 2102922 +IF-MIB::ifHCInUcastPkts.2 = Counter64: 87857450 +IF-MIB::ifHCInUcastPkts.3 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.1 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.2 = Counter64: 0 +IF-MIB::ifHCInMulticastPkts.3 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.1 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.2 = Counter64: 0 +IF-MIB::ifHCInBroadcastPkts.3 = Counter64: 0 +IF-MIB::ifHCOutOctets.1 = Counter64: 242527936 +IF-MIB::ifHCOutOctets.2 = Counter64: 28069177853 +IF-MIB::ifHCOutOctets.3 = Counter64: 0 +IF-MIB::ifHCOutUcastPkts.1 = Counter64: 2102922 +IF-MIB::ifHCOutUcastPkts.2 = Counter64: 40648616 +IF-MIB::ifHCOutUcastPkts.3 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.1 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.2 = Counter64: 0 +IF-MIB::ifHCOutMulticastPkts.3 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.1 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.2 = Counter64: 0 +IF-MIB::ifHCOutBroadcastPkts.3 = Counter64: 0 +IF-MIB::ifHighSpeed.1 = Gauge32: 10 +IF-MIB::ifHighSpeed.2 = Gauge32: 1000 +IF-MIB::ifHighSpeed.3 = Gauge32: 0 +IF-MIB::ifPromiscuousMode.1 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.2 = INTEGER: false(2) +IF-MIB::ifPromiscuousMode.3 = INTEGER: false(2) +IF-MIB::ifConnectorPresent.2 = INTEGER: true(1) +IF-MIB::ifConnectorPresent.3 = INTEGER: true(1) +IF-MIB::ifAlias.1 = STRING: +IF-MIB::ifAlias.2 = STRING: +IF-MIB::ifAlias.3 = STRING: +IF-MIB::ifCounterDiscontinuityTime.1 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.2 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifCounterDiscontinuityTime.3 = Timeticks: (0) 0:00:00.00 +IF-MIB::ifTableLastChange.0 = Timeticks: (103850320) 12 days, 0:28:23.20 +SNMPv2-SMI::mib-2.55.1.1.0 = INTEGER: 2 +SNMPv2-SMI::mib-2.55.1.2.0 = INTEGER: 64 +SNMPv2-SMI::mib-2.55.1.3.0 = Gauge32: 2 +SNMPv2-SMI::mib-2.55.1.5.1.2.1 = STRING: "lo" +SNMPv2-SMI::mib-2.55.1.5.1.2.2 = STRING: "eth0" +SNMPv2-SMI::mib-2.55.1.5.1.3.1 = OID: SNMPv2-SMI::zeroDotZero +SNMPv2-SMI::mib-2.55.1.5.1.3.2 = OID: SNMPv2-SMI::zeroDotZero +SNMPv2-SMI::mib-2.55.1.5.1.4.1 = Gauge32: 16436 +SNMPv2-SMI::mib-2.55.1.5.1.4.2 = Gauge32: 1500 +SNMPv2-SMI::mib-2.55.1.5.1.8.1 = "" +SNMPv2-SMI::mib-2.55.1.5.1.8.2 = Hex-STRING: 00 11 32 28 59 45 +SNMPv2-SMI::mib-2.55.1.5.1.9.1 = INTEGER: 1 +SNMPv2-SMI::mib-2.55.1.5.1.9.2 = INTEGER: 1 +SNMPv2-SMI::mib-2.55.1.5.1.10.1 = INTEGER: 1 +SNMPv2-SMI::mib-2.55.1.5.1.10.2 = INTEGER: 1 +DISMAN-EVENT-MIB::mteResourceSampleMinimum.0 = INTEGER: 1 seconds +DISMAN-EVENT-MIB::mteResourceSampleInstanceMaximum.0 = Gauge32: 0 instances +DISMAN-EVENT-MIB::mteResourceSampleInstances.0 = Gauge32: 0 instances +DISMAN-EVENT-MIB::mteResourceSampleInstancesHigh.0 = Gauge32: 0 instances +DISMAN-EVENT-MIB::mteResourceSampleInstanceLacks.0 = Counter32: 0 instances +DISMAN-EVENT-MIB::mteTriggerFailures.0 = Counter32: 0 failures +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_linkUpDown".1 = OID: IF-MIB::ifIndex +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_linkUpDown".2 = OID: IF-MIB::ifAdminStatus +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_linkUpDown".3 = OID: IF-MIB::ifOperStatus +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".1 = OID: DISMAN-EVENT-MIB::mteHotTrigger +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".2 = OID: DISMAN-EVENT-MIB::mteHotTargetName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".3 = OID: DISMAN-EVENT-MIB::mteHotContextName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".4 = OID: DISMAN-EVENT-MIB::mteHotOID +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFail".5 = OID: DISMAN-EVENT-MIB::mteFailedReason +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".1 = OID: DISMAN-EVENT-MIB::mteHotTrigger +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".2 = OID: DISMAN-EVENT-MIB::mteHotTargetName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".3 = OID: DISMAN-EVENT-MIB::mteHotContextName +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".4 = OID: DISMAN-EVENT-MIB::mteHotOID +DISMAN-EVENT-MIB::mteObjectsID."_snmpd"."_triggerFire".5 = OID: DISMAN-EVENT-MIB::mteHotValue +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_linkUpDown".1 = INTEGER: true(1) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_linkUpDown".2 = INTEGER: true(1) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_linkUpDown".3 = INTEGER: true(1) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".1 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".2 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".3 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".4 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFail".5 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".1 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".2 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".3 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".4 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsIDWildcard."_snmpd"."_triggerFire".5 = INTEGER: false(2) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_linkUpDown".1 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_linkUpDown".2 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_linkUpDown".3 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".1 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".2 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".3 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".4 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFail".5 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".1 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".2 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".3 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".4 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteObjectsEntryStatus."_snmpd"."_triggerFire".5 = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_linkDown' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_linkUp' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerFailure' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerFalling' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerFired' = STRING: +DISMAN-EVENT-MIB::mteEventComment."_snmpd".'_mteTriggerRising' = STRING: +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_linkDown' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_linkUp' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerFailure' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerFalling' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerFired' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventActions."_snmpd".'_mteTriggerRising' = BITS: 80 notification(0) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_linkDown' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_linkUp' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerFailure' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerFalling' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerFired' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEnabled."_snmpd".'_mteTriggerRising' = INTEGER: true(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_linkDown' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_linkUp' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerFailure' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerFalling' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerFired' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventEntryStatus."_snmpd".'_mteTriggerRising' = INTEGER: active(1) +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_linkDown' = OID: IF-MIB::linkDown +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_linkUp' = OID: IF-MIB::linkUp +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerFailure' = OID: DISMAN-EVENT-MIB::mteTriggerFailure +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerFalling' = OID: DISMAN-EVENT-MIB::mteTriggerFalling +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerFired' = OID: DISMAN-EVENT-MIB::mteTriggerFired +DISMAN-EVENT-MIB::mteEventNotification."_snmpd".'_mteTriggerRising' = OID: DISMAN-EVENT-MIB::mteTriggerRising +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_linkDown' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_linkUp' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFailure' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFalling' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerFired' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjectsOwner."_snmpd".'_mteTriggerRising' = STRING: _snmpd +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_linkDown' = STRING: _linkUpDown +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_linkUp' = STRING: _linkUpDown +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerFailure' = STRING: _triggerFail +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerFalling' = STRING: _triggerFire +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerFired' = STRING: _triggerFire +DISMAN-EVENT-MIB::mteEventNotificationObjects."_snmpd".'_mteTriggerRising' = STRING: _triggerFire +NOTIFICATION-LOG-MIB::nlmConfigGlobalEntryLimit.0 = Gauge32: 1000 +NOTIFICATION-LOG-MIB::nlmConfigGlobalAgeOut.0 = Gauge32: 1440 minutes +NOTIFICATION-LOG-MIB::nlmStatsGlobalNotificationsLogged.0 = Counter32: 0 notifications +NOTIFICATION-LOG-MIB::nlmStatsGlobalNotificationsBumped.0 = Counter32: 0 notifications diff --git a/syno/_walk_syno.xml b/syno/_walk_syno.xml new file mode 100644 index 0000000..3cec9f4 --- /dev/null +++ b/syno/_walk_syno.xml @@ -0,0 +1,20894 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/syno/check_snmp_ds414.sh b/syno/check_snmp_ds414.sh new file mode 100755 index 0000000..5d54975 --- /dev/null +++ b/syno/check_snmp_ds414.sh @@ -0,0 +1,424 @@ +#!/bin/bash + +SNMPCOMMUNITY="public" +SNMPVERSION="2c" +SNMPWALK=$(which snmpwalk) +SNMPGET=$(which snmpget) + +HOSTNAME="192.168.0.8" +verbose="yes" + +####################### +# Synology System MIB +####################### +OID_syno="1.3.6.1.4.1.6574" +OID_modelName="1.3.6.1.4.1.6574.1.5.1.0" +OID_serialNumber="1.3.6.1.4.1.6574.1.5.2.0" +OID_DSMVersion="1.3.6.1.4.1.6574.1.5.3.0" +OID_temp="1.3.6.1.4.1.6574.1.2.0" +# Normal (1) Failed (2) +OID_systemStatus="1.3.6.1.4.1.6574.1.1.0" +OID_powerStatus="1.3.6.1.4.1.6574.1.3.0" +OID_systemFanStatus="1.3.6.1.4.1.6574.1.4.1.0" +OID_CPUFanStatus="1.3.6.1.4.1.6574.1.4.2.0" +# Available(1) Unavailable(2) Connecting(3) Disconnected(4) Others(5) +OID_upgradeAvailable="1.3.6.1.4.1.6574.1.5.4.0" + +##################### +# Synology Disk MIB +##################### +OID_disk="" +OID_diskID="1.3.6.1.4.1.6574.2.1.1.2" +OID_diskModel="1.3.6.1.4.1.6574.2.1.1.3" +# SATA, SSD +OID_diskType="1.3.6.1.4.1.6574.2.1.1.4" +# Normal(1) Initialized(2) NotInitialized(3) SystemPartitionFailed(4) Crashed(5) +OID_diskStatus="1.3.6.1.4.1.6574.2.1.1.5" +OID_diskTemp="1.3.6.1.4.1.6574.2.1.1.6" + +#OID_diskID_0="1.3.6.1.4.1.6574.2.1.1.2.0" +#OID_diskID_3="1.3.6.1.4.1.6574.2.1.1.2.3" +#OID_diskModel_0="1.3.6.1.4.1.6574.2.1.1.3.0" +#OID_diskModel_3="1.3.6.1.4.1.6574.2.1.1.3.3" +#OID_diskStatus_0="1.3.6.1.4.1.6574.2.1.1.5.0" +#OID_diskStatus_3="1.3.6.1.4.1.6574.2.1.1.5.3" +#OID_diskTemp_0="1.3.6.1.4.1.6574.2.1.1.6.0" +#OID_diskTemp_3="1.3.6.1.4.1.6574.2.1.1.6.3" + +##################### +# Synology RAID MIB +##################### +OID_RAID="" +#OID_RAIDName="1.3.6.1.4.1.6574.3.1.1.2" +#OID_RAIDStatus="1.3.6.1.4.1.6574.3.1.1.3" +OID_RAIDName="1.3.6.1.4.1.6574.3.1.1.2.0" +# Normal(1) Repairing(2) Migrating(3) Expanding(4) Deleting(5) Creating(6) RaidSyncing(7) RaidParityChecking(8) RaidAssembling(9) Canceling(10) Degrade(11) Crashed(12) +OID_RAIDStatus="1.3.6.1.4.1.6574.3.1.1.3.0" + +#################### +# Synology UPS MIB +#################### +OID_upsDeviceModel=".1.1" +OID_upsDeviceManufacturer=".1.2" +OID_upsDeviceSerial=".1.3" +OID_upsInfoStatus=".2.1" +OID_upsInfoMfrDate=".2.6.2" +OID_upsInfoLoadValue=".2.12.1" +OID_upsBatteryChargeValue=".3.1.1" +OID_upsBatteryChargeWarning=".3.1.4" +OID_upsBatteryType=".3.12" + +#$OID_upsDeviceModel $OID_upsDeviceManufacturer $OID_upsDeviceSerial $OID_upsInfoStatus $OID_upsInfoMfrDate $OID_upsInfoLoadValue $OID_upsBatteryChargeValue $OID_upsBatteryChargeWarning $OID_upsBatteryType + +########### +# CPU MIB +########### +OID_ssCpuUser=".1.3.6.1.4.1.2021.11.9.0" +OID_ssCpuSystem=".1.3.6.1.4.1.2021.11.10.0" +OID_ssCpuIdle=".1.3.6.1.4.1.2021.11.11.0" +OID_laLoadInt_1=".1.3.6.1.4.1.2021.10.1.5.1" +OID_laLoadInt_2=".1.3.6.1.4.1.2021.10.1.5.2" +OID_laLoadInt_3=".1.3.6.1.4.1.2021.10.1.5.3" + +#$OID_ssCpuUser $OID_ssCpuSystem $OID_ssCpuIdle $OID_laLoadInt_1 $OID_laLoadInt_2 $OID_laLoadInt_3 + + +############# +# Memory MIB +############# +OID_memTotalSwap=".1.3.6.1.4.1.2021.4.3.0" +OID_memAvailSwap=".1.3.6.1.4.1.2021.4.4.0" +OID_memTotalReal=".1.3.6.1.4.1.2021.4.5.0" +OID_memAvailReal=".1.3.6.1.4.1.2021.4.6.0" +OID_memTotalFree=".1.3.6.1.4.1.2021.4.11.0" +OID_memShared=".1.3.6.1.4.1.2021.4.13.0" +OID_memBuffer=".1.3.6.1.4.1.2021.4.14.0" +OID_memCached=".1.3.6.1.4.1.2021.4.15.0" + +#$OID_memTotalSwap $OID_memAvailSwap $OID_memTotalReal $OID_memAvailReal $OID_memTotalFree $OID_memShared $OID_memBuffer $OID_memCached + +############## +# Network MIB +############## +OID_if="" +OID_ifName=".1.3.6.1.2.1.31.1.1.1.1" +OID_ifHCInOctets=".1.3.6.1.2.1.31.1.1.1.6" +OID_ifHCOutOctets=".1.3.6.1.2.1.31.1.1.1.10" + +#$OID_ifName $OID_ifHCInOctets $OID_ifHCOutOctets + +############## +# Disk MIB (no) +############## +OID_storage="" +OID_hrStorageDescr=".1.3.6.1.2.1.25.2.3.1.3" +OID_hrStorageAllocationUnits=".1.3.6.1.2.1.25.2.3.1.4" +OID_hrStorageSize=".1.3.6.1.2.1.25.2.3.1.5" +OID_hrStorageUsed=".1.3.6.1.2.1.25.2.3.1.6" +OID_diskIODevice=".1.3.6.1.4.1.2021.13.15.1.1.2" +OID_diskIONReadX=".1.3.6.1.4.1.2021.13.15.1.1.12" +OID_diskIONWrittenX=".1.3.6.1.4.1.2021.13.15.1.1.13" +OID_synoDisk=".1.3.6.1.4.1.6574.2" + +#$OID_hrStorageDescr $OID_hrStorageAllocationUnits $OID_hrStorageSize $OID_hrStorageUsed $OID_diskIODevice $OID_diskIONReadX $OID_diskIONWrittenX $OID_synoDisk + + +#coldStart="1.3.6.1.6.31.1.5.1" +#warmStart="1.3.6.1.6.31.1.5.2" +#authentificationFailure="1.3.6.1.6.31.1.5.5" + +nbDisk=`$SNMPWALK -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME 1.3.6.1.4.1.6574.2.1.1.2 2> /dev/null | wc -l ` +nbRAID=`$SNMPWALK -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME 1.3.6.1.4.1.6574.3.1.1.2 2> /dev/null | wc -l` + +for i in `seq 1 $nbDisk`; +do + OID_disk="$OID_disk $OID_diskID.$(($i-1)) $OID_diskModel.$(($i-1)) $OID_diskStatus.$(($i-1)) $OID_diskTemp.$(($i-1)) " +done +for i in `seq 1 $nbRAID`; +do + OID_RAID="$OID_RAID $OID_RAIDName.$(($i-1)) $OID_RAIDStatus.$(($i-1))" +done + + +# Synology System MIB +synoSystem=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_modelName $OID_serialNumber $OID_DSMVersion $OID_temp $OID_systemStatus $OID_powerStatus $OID_systemFanStatus $OID_CPUFanStatus $OID_upgradeAvailable 2> /dev/null` + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request synoSystem" + #exit 2 +fi +#echo $synoSystem +modelName=$(echo "$synoSystem" | grep $OID_modelName | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Synology model: $modelName" ; fi + +serialNumber=$(echo "$synoSystem" | grep $OID_serialNumber | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Synology s/n: $serialNumber" ; fi + +DSMVersion=$(echo "$synoSystem" | grep $OID_DSMVersion | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "DSMVersion: $DSMVersion" ; fi + +temp=$(echo "$synoSystem" | grep $OID_temp | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Temperature: $temp °C" ; fi + +systemStatus=$(echo "$synoSystem" | grep $OID_systemStatus | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Etat Système: $systemStatus" ; fi + +powerStatus=$(echo "$synoSystem" | grep $OID_powerStatus | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Etat alimentation: $powerStatus" ; fi + +systemFanStatus=$(echo "$synoSystem" | grep $OID_systemFanStatus | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Ventilo Système: $systemFanStatus" ; fi + +CPUFanStatus=$(echo "$synoSystem" | grep $OID_CPUFanStatus | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Ventilo CPU: $CPUFanStatus" ; fi + +upgradeAvailable=$(echo "$synoSystem" | grep $OID_upgradeAvailable | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "Temperature: $upgradeAvailable" ; fi + + +# Synology Disk MIB +synoDisk=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_disk $OID_RAID 2> /dev/null` +#echo $synoDisk + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request synoDisk" + #exit 2 +fi +#echo $synoDisk +echo "Nb de disques: $nbDisk" +for i in `seq 1 $nbDisk`; +do + diskID[$i]=$(echo "$synoDisk" | grep "$OID_diskID.$(($i-1)) " | cut -d "=" -f2) + diskModel[$i]=$(echo "$synoDisk" | grep "$OID_diskModel.$(($i-1)) " | cut -d "=" -f2) + diskStatus[$i]=$(echo "$synoDisk" | grep "$OID_diskStatus.$(($i-1)) " | cut -d "=" -f2 | sed 's/^[ \t]*//;s/[ \t]*$//') + diskTemp[$i]=$(echo "$synoDisk" | grep "$OID_diskTemp.$(($i-1)) " | cut -d "=" -f2 | sed 's/^[ \t]*//;s/[ \t]*$//') + +if [ "${diskStatus[$i]}" != "1" ] ; then + if [ "${diskStatus[$i]}" = "2" ] ; then diskStatus[$i]="Initialized"; fi + if [ "${diskStatus[$i]}" = "3" ] ; then diskStatus[$i]="NotInitialized"; fi + if [ "${diskStatus[$i]}" = "4" ] ; then diskStatus[$i]="SystemPartitionFailed"; fi + if [ "${diskStatus[$i]}" = "5" ] ; then diskStatus[$i]="Crashed"; fi + healthStatus=2 + healthString="$healthString, problem with ${diskID[$i]} (model:${diskModel[$i]}) status:${diskStatus[$i]} temperature:${diskTemp[$i]} C " +else + diskStatus[$i]="Normal" + fi + if [ "$verbose" = "yes" ] ; then echo "${diskID[$i]} (model:${diskModel[$i]}) status:${diskStatus[$i]} temperature:${diskTemp[$i]} C" ; fi +done + +echo "Nb de RAID: $nbRAID" +for i in `seq 1 $nbRAID`; +do +RAIDName[$i]=$(echo "$synoDisk" | grep $OID_RAIDName.$(($i-1)) | cut -d "=" -f2) +RAIDStatus[$i]=$(echo "$synoDisk" | grep $OID_RAIDStatus.$(($i-1)) | cut -d "=" -f2 | sed 's/^[ \t]*//;s/[ \t]*$//') + + if [ "${RAIDStatus[$i]}" != "1" ] ; then + if [ "${RAIDStatus[$i]}" = "2" ] ; then RAIDStatus[$i]="Repairing"; fi + if [ "${RAIDStatus[$i]}" = "3" ] ; then RAIDStatus[$i]="Migrating"; fi + if [ "${RAIDStatus[$i]}" = "4" ] ; then RAIDStatus[$i]="Expanding"; fi + if [ "${RAIDStatus[$i]}" = "5" ] ; then RAIDStatus[$i]="Deleting"; fi + if [ "${RAIDStatus[$i]}" = "6" ] ; then RAIDStatus[$i]="Creating"; fi + if [ "${RAIDStatus[$i]}" = "7" ] ; then RAIDStatus[$i]="RaidSyncing"; fi + if [ "${RAIDStatus[$i]}" = "8" ] ; then RAIDStatus[$i]="RaidParityChecking"; fi + if [ "${RAIDStatus[$i]}" = "9" ] ; then RAIDStatus[$i]="RaidAssembling"; fi + if [ "${RAIDStatus[$i]}" = "10" ] ; then RAIDStatus[$i]="Canceling"; fi + if [ "${RAIDStatus[$i]}" = "11" ] ; then RAIDStatus[$i]="Degrade"; fi + if [ "${RAIDStatus[$i]}" = "12" ] ; then RAIDStatus[$i]="Crashed"; fi + + #healthStatus=2 + #healthString="$healthString, RAID status ($RAIDName ): $RAIDStatus " +else + RAIDStatus[$i]="Normal" +fi + if [ "$verbose" = "yes" ] ; then echo "${RAIDName[$i]} status:${RAIDStatus[$i]}" ; fi +done + + +# Synology UPS MIB +synoUPS=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_upsDeviceModel $OID_upsDeviceManufacturer $OID_upsDeviceSerial $OID_upsInfoStatus $OID_upsInfoMfrDate $OID_upsInfoLoadValue $OID_upsBatteryChargeValue $OID_upsBatteryChargeWarning $OID_upsBatteryType 2> /dev/null` + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request synoUPS" + #exit 2 +else +#echo $synoUPS +upsDeviceModel=$(echo "$synoUPS" | grep $OID_upsDeviceModel | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsDeviceModel: $upsDeviceModel" ; fi + +upsDeviceManufacturer=$(echo "$synoUPS" | grep $OID_upsDeviceManufacturer | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsDeviceManufacturer: $upsDeviceManufacturer" ; fi + +upsDeviceSerial=$(echo "$synoUPS" | grep $OID_upsDeviceSerial | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsDeviceSerial: $upsDeviceSerial" ; fi + +upsInfoStatus=$(echo "$synoUPS" | grep $OID_upsInfoStatus | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsInfoStatus: $upsInfoStatus" ; fi + +upsInfoMfrDate=$(echo "$synoUPS" | grep $OID_upsInfoMfrDate | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsInfoMfrDate: $upsInfoMfrDate" ; fi + +upsInfoLoadValue=$(echo "$synoUPS" | grep $OID_upsInfoLoadValue | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsInfoLoadValue: $upsInfoLoadValue" ; fi + +upsBatteryChargeValue=$(echo "$synoUPS" | grep $OID_upsBatteryChargeValue | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsBatteryChargeValue: $upsBatteryChargeValue" ; fi + +upsBatteryChargeWarning=$(echo "$synoUPS" | grep $OID_upsBatteryChargeWarning | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsBatteryChargeWarning: $upsBatteryChargeWarning" ; fi + +upsBatteryType=$(echo "$synoUPS" | grep $OID_upsBatteryType | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "upsBatteryType: $upsBatteryType" ; fi +fi + +# CPU MIB +cpuMIB=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_ssCpuUser $OID_ssCpuSystem $OID_ssCpuIdle $OID_laLoadInt_1 $OID_laLoadInt_2 $OID_laLoadInt_3 2> /dev/null` + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request cpuMIB" + #exit 2 +fi +#echo $cpuMIB +ssCpuUser=$(echo "$cpuMIB" | grep $OID_ssCpuUser | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "ssCpuUser: $ssCpuUser" ; fi + +ssCpuSystem=$(echo "$cpuMIB" | grep $OID_ssCpuSystem | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "ssCpuSystem: $ssCpuSystem" ; fi + +ssCpuIdle=$(echo "$cpuMIB" | grep $OID_ssCpuIdle | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "ssCpuIdle: $ssCpuIdle" ; fi + +laLoadInt_1=$(echo "$cpuMIB" | grep $OID_laLoadInt_1 | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "laLoadInt_1: $laLoadInt_1" ; fi + +laLoadInt_2=$(echo "$cpuMIB" | grep $OID_laLoadInt_2 | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "laLoadInt_2: $laLoadInt_2" ; fi + +laLoadInt_3=$(echo "$cpuMIB" | grep $OID_laLoadInt_3 | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "laLoadInt_3: $laLoadInt_3" ; fi + + +# Memory MIB +memoryMIB=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_memTotalSwap $OID_memAvailSwap $OID_memTotalReal $OID_memAvailReal $OID_memTotalFree $OID_memShared $OID_memBuffer $OID_memCached 2> /dev/null` + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request memoryMIB" + #exit 2 +fi +#echo $memoryMIB +memTotalSwap=$(echo "$memoryMIB" | grep $OID_memTotalSwap | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memTotalSwap: $memTotalSwap" ; fi + +memAvailSwap=$(echo "$memoryMIB" | grep $OID_memAvailSwap | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memAvailSwap: $memAvailSwap" ; fi + +memTotalReal=$(echo "$memoryMIB" | grep $OID_memTotalReal | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memTotalReal: $memTotalReal" ; fi + +memAvailReal=$(echo "$memoryMIB" | grep $OID_memAvailReal | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memAvailReal: $memAvailReal" ; fi + +memTotalFree=$(echo "$memoryMIB" | grep $OID_memTotalFree | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memTotalFree: $memTotalFree" ; fi + +memShared=$(echo "$memoryMIB" | grep $OID_memShared | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memShared: $memShared" ; fi + +memBuffer=$(echo "$memoryMIB" | grep $OID_memBuffer | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memBuffer: $memBuffer" ; fi + +memCached=$(echo "$memoryMIB" | grep $OID_memCached | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "memCached: $memCached" ; fi + + +# Network MIB (no) +nbIF=`$SNMPWALK -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME .1.3.6.1.2.1.31.1.1.1.1 2> /dev/null | wc -l ` +#echo $nbIF +for i in `seq 1 $nbIF`; +do + echo "OID_ifName $OID_ifName.$(($i))" + echo "OID_ifHCInOctets $OID_ifHCInOctets.$(($i))" + echo "OID_ifHCOutOctets $OID_ifHCOutOctets.$(($i))" + OID_if="$OID_if $OID_ifName.$(($i)) $OID_ifHCInOctets.$(($i)) $OID_ifHCOutOctets.$(($i)) " +done +echo "tableau" +echo ${OID_if[0]} + +networkMIB=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_if 2> /dev/null` +echo $networkMIB + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request networkMIB" + #exit 2 +fi + +for i in `seq 1 $nbIF`; +do + ifName[$i]=$(echo "$networkMIB" | grep "$OID_ifName.$(($i)) " | cut -d "=" -f2) + ifHCInOctets[$i]=$(echo "$networkMIB" | grep "$OID_ifHCInOctets.$(($i)) " | cut -d "=" -f2) + ifHCOutOctets[$i]=$(echo "$networkMIB" | grep "$OID_ifHCOutOctets.$(($i)) " | cut -d "=" -f2) + + if [ "$verbose" = "yes" ] ; then echo "${ifName[$i]} In:${ifHCInOctets[$i]} Out:${ifHCOutOctets[$i]}" ; fi + +done + + +# Disk MIB (no) +OID_hrStorageIndex=".1.3.6.1.2.1.25.2.3.1.1" +nbStorage=`$SNMPWALK -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME .1.3.6.1.2.1.25.2.3.1.3 2> /dev/null | wc -l` +for i in `seq 1 $nbStorage`; +do + echo "OID_hrStorageIndex $OID_hrStorageIndex.$(($i))" + #OID_hrStorageIndex .1.3.6.1.2.1.25.2.3.1.1.1 -> get 1 + #OID_hrStorageIndex .1.3.6.1.2.1.25.2.3.1.1.2 + #OID_hrStorageIndex .1.3.6.1.2.1.25.2.3.1.1.3 + + #diskIndex=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME + + echo "OID_hrStorageDescr $OID_hrStorageDescr.$(($i))" + echo "OID_ifHCInOctets $OID_ifHCInOctets.$(($i))" + echo "OID_hrStorageAllocationUnits $OID_hrStorageAllocationUnits.$(($i))" + OID_if="$OID_if $OID_hrStorageDescr.$(($i)) $OID_hrStorageAllocationUnits.$(($i)) $OID_hrStorageSize.$(($i)) " +done + +diksMIB=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_hrStorageDescr $OID_hrStorageAllocationUnits $OID_hrStorageSize $OID_hrStorageUsed $OID_diskIODevice $OID_diskIONReadX $OID_diskIONWrittenX $OID_synoDisk 2> /dev/null` + +#OID_hrStorageIndex=".1.3.6.1.2.1.25.2.3.1.1" +#OID_hrStorageType=".1.3.6.1.2.1.25.2.3.1.2" +#OID_hrStorageDescr=".1.3.6.1.2.1.25.2.3.1.3" +#OID_hrStorageAllocationUnits=".1.3.6.1.2.1.25.2.3.1.4" +#OID_hrStorageSize=".1.3.6.1.2.1.25.2.3.1.5" +#OID_hrStorageUsed=".1.3.6.1.2.1.25.2.3.1.6" +#OID_diskIODevice=".1.3.6.1.4.1.2021.13.15.1.1.2" +#OID_diskIONReadX=".1.3.6.1.4.1.2021.13.15.1.1.12" +#OID_diskIONWrittenX=".1.3.6.1.4.1.2021.13.15.1.1.13" +#OID_synoDisk=".1.3.6.1.4.1.6574.2" + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request diksMIB" + #exit 2 +fi +#echo $diksMIB +OID_hrStorageDescr=$(echo "$diksMIB" | grep $OID_hrStorageDescr | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "OID_hrStorageDescr: $OID_hrStorageDescr" ; fi + +hrStorageAllocationUnits=$(echo "$diksMIB" | grep $OID_hrStorageAllocationUnits | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "hrStorageAllocationUnits: $hrStorageAllocationUnits" ; fi + +hrStorageSize=$(echo "$diksMIB" | grep $OID_hrStorageSize | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "hrStorageSize: $hrStorageSize" ; fi + +hrStorageUsed=$(echo "$diksMIB" | grep $OID_hrStorageUsed | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "hrStorageUsed: $hrStorageUsed" ; fi + +diskIODevice=$(echo "$diksMIB" | grep $OID_diskIODevice | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "diskIODevice: $diskIODevice" ; fi + +diskIONReadX=$(echo "$diksMIB" | grep $OID_diskIONReadX | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "diskIONReadX: $diskIONReadX" ; fi + +diskIONWrittenX=$(echo "$diksMIB" | grep $OID_diskIONWrittenX | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "diskIONWrittenX: $diskIONWrittenX" ; fi + +synoDisk=$(echo "$diksMIB" | grep $OID_synoDisk | cut -d "=" -f2) +if [ "$verbose" = "yes" ] ; then echo "synoDisk: $synoDisk" ; fi + diff --git a/syno/cpuinfo b/syno/cpuinfo new file mode 100644 index 0000000..f6b12b0 --- /dev/null +++ b/syno/cpuinfo @@ -0,0 +1,17 @@ +Processor : Marvell PJ4Bv7 Processor rev 2 (v7l) +processor : 0 +BogoMIPS : 1332.01 + +processor : 1 +BogoMIPS : 1332.01 + +Features : swp half thumb fastmult vfp edsp vfpv3 tls +CPU implementer : 0x56 +CPU architecture: 7 +CPU variant : 0x2 +CPU part : 0x584 +CPU revision : 2 + +Hardware : Marvell Armada XP Development Board +Revision : 0000 +Serial : 0000000000000000 diff --git a/syno/disk_mac.sh b/syno/disk_mac.sh new file mode 100755 index 0000000..3a0d3e1 --- /dev/null +++ b/syno/disk_mac.sh @@ -0,0 +1,204 @@ +#!/bin/bash + +#cf test sur les strings + +SNMPCOMMUNITY="public" +SNMPVERSION="2c" +SNMPWALK=$(which snmpwalk) +SNMPGET=$(which snmpget) +CMD_BC=$(which bc) +CMD_EXPR=$(which expr) + +#HOSTNAME="localhost" +HOSTNAME="192.168.0.8" +WARNING=80 +CRITICAL=90 + +STATE=$STATE_UNKNOWN +STATE_OK="OK" +STATE_WARNING="Warning" +STATE_CRITICAL="Critical" +STATE_UNKNOWN="Inconnu" + +############## +# Disk MIB (no) +############## +OID_storage="" +OID_hrStorageIndex=".1.3.6.1.2.1.25.2.3.1.1" +#A description of the type and instance of the storage described by this entry +OID_hrStorageDescr=".1.3.6.1.2.1.25.2.3.1.3" +#The size, in bytes, of the data objects allocated from this pool +OID_hrStorageAllocationUnits=".1.3.6.1.2.1.25.2.3.1.4" +#The size of the storage represented by this entry, in units of hrStorageAllocationUnits +OID_hrStorageSize=".1.3.6.1.2.1.25.2.3.1.5" +#The amount of the storage represented by this entry +OID_hrStorageUsed=".1.3.6.1.2.1.25.2.3.1.6" + +OID_diskIODevice=".1.3.6.1.4.1.2021.13.15.1.1.2" +OID_diskIONReadX=".1.3.6.1.4.1.2021.13.15.1.1.12" +OID_diskIONWrittenX=".1.3.6.1.4.1.2021.13.15.1.1.13" +OID_synoDisk=".1.3.6.1.4.1.6574.2" + +nbStorage=`$SNMPWALK -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_hrStorageDescr 2> /dev/null | wc -l` + +declare RESULT=() +while read -r LINE; do + RESULT[${#RESULT[@]}]=$LINE + + index=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_hrStorageIndex.$(($i)) 2> /dev/null` + + OID_storage="$OID_storage $OID_hrStorageDescr.$(($LINE)) $OID_hrStorageAllocationUnits.$(($LINE)) $OID_hrStorageSize.$(($LINE)) $OID_hrStorageUsed.$(($LINE)) " + +done < <($SNMPWALK -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_hrStorageIndex | awk '{print $4}') + + +diskMIB=`$SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_storage 2> /dev/null` + +#OID_hrStorageIndex=".1.3.6.1.2.1.25.2.3.1.1" +#OID_hrStorageType=".1.3.6.1.2.1.25.2.3.1.2" +#OID_hrStorageDescr=".1.3.6.1.2.1.25.2.3.1.3" +#OID_hrStorageAllocationUnits=".1.3.6.1.2.1.25.2.3.1.4" +#OID_hrStorageSize=".1.3.6.1.2.1.25.2.3.1.5" +#OID_hrStorageUsed=".1.3.6.1.2.1.25.2.3.1.6" +#OID_diskIODevice=".1.3.6.1.4.1.2021.13.15.1.1.2" +#OID_diskIONReadX=".1.3.6.1.4.1.2021.13.15.1.1.12" +#OID_diskIONWrittenX=".1.3.6.1.4.1.2021.13.15.1.1.13" +#OID_synoDisk=".1.3.6.1.4.1.6574.2" + +if [ "$?" != "0" ] ; then + echo "CRITICAL - Problem with SNMP request diksMIB" + #exit 2 +fi +#echo $diskMIB + +size_convert() { + if [ $VALUE -ge 1099511627776 ]; then + VALUE=`echo "scale=2 ; ( ( ( $VALUE / 1024 ) / 1024 ) / 1024 ) / 1024" | $CMD_BC` + VALUE="$VALUE To" + elif [ $VALUE -ge 1073741824 ]; then + VALUE=`echo "scale=2 ; ( ( $VALUE / 1024 ) / 1024 ) / 1024" | $CMD_BC` + VALUE="$VALUE Go" + elif [ $VALUE -ge 1048576 ]; then + VALUE=`echo "scale=2 ; ( $VALUE / 1024 ) / 1024" | $CMD_BC` + VALUE="$VALUE Mo" + else + VALUE=`echo "scale=2 ; $VALUE / 1024" | $CMD_BC` + VALUE="$VALUE Octets" + fi +} + +size_fix() { + if [ ${VALUE: 0:1} = "-" ]; then + VALUE=`$CMD_EXPR 4294967294 - \( 0 - $VALUE \)` + fi +} + +hrStorageDescr="" +hrStorageAllocationUnits="" +hrStorageSize="" +hrStorageUsed="" +i=0 +j=0 + +declare RESULT=() +while read -r LINE; do + RESULT[${#RESULT[@]}]=$LINE + _hrStorageDescr=$(echo $LINE | grep $OID_hrStorageDescr | cut -d "=" -f2) + _hrStorageAllocationUnits=$(echo $LINE | grep $OID_hrStorageAllocationUnits | cut -d "=" -f2) + _hrStorageSize=$(echo $LINE | grep $OID_hrStorageSize | cut -d "=" -f2) + _hrStorageUsed=$(echo $LINE | grep $OID_hrStorageUsed | cut -d "=" -f2) + + if [ -n "$_hrStorageDescr" ] ; then hrStorageDescr[$j]=$_hrStorageDescr ; fi + + if [ -n "$_hrStorageAllocationUnits" ] ; then hrStorageAllocationUnits[$j]=$_hrStorageAllocationUnits ; fi + + if [ -n "$_hrStorageSize" ] ; then hrStorageSize[$j]=$_hrStorageSize ; fi + + if [ -n "$_hrStorageUsed" ] ; then + #hrStorageUsed[$j]=$_hrStorageUsed + + VALUE=$_hrStorageUsed + #size_fix + #size_convert + hrStorageUsed[$j]=$VALUE + fi + + ((i=i+1)) + + if [ $i -eq "4" ] + then + i=0 + ((j=j+1)) + fi + + +done < <($SNMPGET -OQne -t 10 -v $SNMPVERSION -c $SNMPCOMMUNITY $HOSTNAME $OID_storage) + + +for((i=0;i<$nbStorage;i++)); +do + # // remove all spaces + #DISK_LABEL=${hrStorageDescr[i]// } + # remove leading and trailing spaces + DISK_LABEL=`echo ${hrStorageDescr[i]} | sed 's/^ *//g' | sed 's/ *$//g'` + DISK_UNIT=`echo ${hrStorageAllocationUnits[i]} | awk '{print $1}'` + DISK_TOTAL=${hrStorageSize[i]// } + DISK_USED=${hrStorageUsed[i]// } + # longeur de la chaine + #echo ${#DISK_USED} + # 1er caractère de la variable est - + #if [ ${VALUE: 0:1} = "-" ]; then + + #echo "$DISK_LABEL" + + # Swap space + #if [ "${DISK_LABEL}" == "Shared memory" ]; then + #echo "$DISK_TOTAL" + #echo "$DISK_USED" + #fi + + if [ "${DISK_LABEL}" != "/dev" ] && [ "${DISK_LABEL}" != "/net" ] && [ "${DISK_LABEL}" != "/home" ] && [ "${DISK_LABEL}" != "Shared memory" ]; then + + + DISK_TOTAL=`$CMD_EXPR $DISK_TOTAL \* \( $DISK_UNIT \)` + DISK_USED=`$CMD_EXPR $DISK_USED \* \( $DISK_UNIT \)` + #echo "$DISK_TOTAL" + #echo "$DISK_USED" + + PERFDATA_WARNING=0 + PERFDATA_CRITICAL=0 + + if [ $WARNING != 0 ] || [ $CRITICAL != 0 ]; then + DISK_USED_POURCENT=`$CMD_EXPR \( $DISK_USED \* 100 \) / $DISK_TOTAL` + PERFDATA_WARNING=`$CMD_EXPR \( $DISK_TOTAL \* $WARNING \) / 100` + PERFDATA_CRITICAL=`$CMD_EXPR \( $DISK_TOTAL \* $CRITICAL \) / 100` + #echo "$PERFDATA_WARNING" + #echo "$PERFDATA_CRITICAL" + + if [ $DISK_USED_POURCENT -gt $CRITICAL ] && [ $CRITICAL != 0 ]; then + STATE=$STATE_CRITICAL + elif [ $DISK_USED_POURCENT -gt $WARNING ] && [ $WARNING != 0 ]; then + STATE=$STATE_WARNING + else + STATE=$STATE_OK + fi + else + STATE=$STATE_OK + fi + + VALUE=$DISK_TOTAL + size_convert + DISK_TOTAL_FORMAT=$VALUE + + VALUE=$DISK_USED + size_convert + DISK_USED_FORMAT=$VALUE + + + printf "%s %s %s\n" "$DISK_LABEL $DISK_USED_FORMAT utilise sur $DISK_TOTAL_FORMAT (${DISK_USED_POURCENT}%) $STATE" + + fi + +done + +#exit $STATE diff --git a/syno/diskstats b/syno/diskstats new file mode 100644 index 0000000..8aa218b --- /dev/null +++ b/syno/diskstats @@ -0,0 +1,56 @@ + 1 0 ram0 0 0 0 0 0 0 0 0 0 0 0 + 1 1 ram1 0 0 0 0 0 0 0 0 0 0 0 + 1 2 ram2 0 0 0 0 0 0 0 0 0 0 0 + 1 3 ram3 0 0 0 0 0 0 0 0 0 0 0 + 1 4 ram4 0 0 0 0 0 0 0 0 0 0 0 + 1 5 ram5 0 0 0 0 0 0 0 0 0 0 0 + 1 6 ram6 0 0 0 0 0 0 0 0 0 0 0 + 1 7 ram7 0 0 0 0 0 0 0 0 0 0 0 + 1 8 ram8 0 0 0 0 0 0 0 0 0 0 0 + 1 9 ram9 0 0 0 0 0 0 0 0 0 0 0 + 1 10 ram10 0 0 0 0 0 0 0 0 0 0 0 + 1 11 ram11 0 0 0 0 0 0 0 0 0 0 0 + 1 12 ram12 0 0 0 0 0 0 0 0 0 0 0 + 1 13 ram13 0 0 0 0 0 0 0 0 0 0 0 + 1 14 ram14 0 0 0 0 0 0 0 0 0 0 0 + 1 15 ram15 0 0 0 0 0 0 0 0 0 0 0 + 8 0 sda 798440 4175491 25051310 24737440 764667 7985160 69248440 36936410 0 13184110 61842370 + 8 1 sda1 39133 5998 1183342 1543860 199340 67520 2202944 3863880 0 4449410 5407660 + 8 2 sda2 177 70 1976 1230 1232 1196 19448 17130 0 17220 18380 + 8 5 sda5 759115 4169371 23865456 23192260 563575 7916444 67026040 33051040 0 9423930 56411850 + 8 16 sdb 841459 4197719 25502936 26886120 735045 7959471 68809400 37076320 0 13145480 64140360 + 8 17 sdb1 39920 6014 1219568 1623890 199426 67434 2202944 3954370 0 4469890 5578060 + 8 18 sdb2 42 71 904 560 1173 1254 19448 18620 0 18640 19200 + 8 21 sdb5 801482 4191582 24281928 25261590 533926 7890783 66587000 33098910 0 9304950 58538670 + 8 32 sdc 923512 4122134 25301128 25788470 754686 8009458 69368768 38966950 0 13353260 64938050 + 8 33 sdc1 40033 5473 1241730 1348070 199701 67158 2202944 3979580 0 4553870 5327650 + 8 34 sdc2 148 81 1832 28090 1266 1162 19448 17060 0 43960 45170 + 8 37 sdc5 883316 4116528 24057030 24412230 553199 7941138 67146368 34965730 0 9538540 59560700 + 8 48 sdd 757608 4117249 24693292 25590520 741663 8004580 69221976 35784750 0 13209970 61535250 + 8 49 sdd1 40628 6133 1297616 1488500 199925 66935 2202944 3986810 0 4607670 5475200 + 8 50 sdd2 113 562 5400 620 1259 1169 19448 17980 0 17760 18620 + 8 53 sdd5 716817 4110138 23386548 24101000 539899 7936476 66999576 31774140 0 9316050 56035360 + 31 0 mtdblock0 0 0 0 0 0 0 0 0 0 0 0 + 31 1 mtdblock1 0 0 0 0 0 0 0 0 0 0 0 + 31 2 mtdblock2 0 0 0 0 0 0 0 0 0 0 0 + 31 3 mtdblock3 0 0 0 0 0 0 0 0 0 0 0 + 31 4 mtdblock4 0 0 0 0 0 0 0 0 0 0 0 + 31 5 mtdblock5 0 0 0 0 0 0 0 0 0 0 0 + 31 6 mtdblock6 0 0 0 0 0 0 0 0 0 0 0 + 9 0 md0 184369 0 4940728 0 193589 0 1613424 0 0 0 0 + 9 1 md1 457 0 3656 0 2070 0 16552 0 0 0 0 + 9 2 md2 17355884 0 76405362 0 30079695 0 194258296 0 0 0 0 + 253 0 dm-0 17355718 0 76404034 153625380 30079695 0 194258296 4062776380 0 10558810 4216475080 + 253 1 dm-1 8287175 0 71907138 74937500 15413726 0 194258296 2076055230 0 10389900 2151074640 + 65 0 sdq 164 1097 7157 86320 58088 12 224 112580 0 166570 198810 + 65 1 sdq1 137 700 6733 60980 16 12 224 190 0 35270 61160 + 65 16 sdr 176685 213741 3124669 350600 23346 537973 4490552 1540650 0 207810 1890770 + 65 17 sdr1 176668 213705 3124245 328040 23346 537973 4490552 1540650 0 185250 1868210 + 7 0 loop0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 loop1 0 0 0 0 0 0 0 0 0 0 0 + 7 2 loop2 0 0 0 0 0 0 0 0 0 0 0 + 7 3 loop3 0 0 0 0 0 0 0 0 0 0 0 + 7 4 loop4 0 0 0 0 0 0 0 0 0 0 0 + 7 5 loop5 0 0 0 0 0 0 0 0 0 0 0 + 7 6 loop6 0 0 0 0 0 0 0 0 0 0 0 + 7 7 loop7 0 0 0 0 0 0 0 0 0 0 0 diff --git a/syno/filesystems b/syno/filesystems new file mode 100644 index 0000000..cf9eeb9 --- /dev/null +++ b/syno/filesystems @@ -0,0 +1,28 @@ +nodev sysfs +nodev rootfs +nodev bdev +nodev proc +nodev tmpfs +nodev sockfs +nodev pipefs +nodev anon_inodefs +nodev rpc_pipefs +nodev devpts + ext3 + ext2 + ext4 +nodev ramfs +nodev nfs +nodev nfs4 +nodev mqueue +nodev mtd_inodefs +nodev usbfs +nodev ecryptfs + vfat + fuseblk +nodev fuse +nodev fusectl + hfsplus + iso9660 + udf +nodev cifs diff --git a/syno/mdstat b/syno/mdstat new file mode 100644 index 0000000..fffa3a0 --- /dev/null +++ b/syno/mdstat @@ -0,0 +1,11 @@ +Personalities : [linear] [raid0] [raid1] [raid10] [raid6] [raid5] [raid4] +md2 : active raid5 sdb5[0] sdc5[2] sdd5[3] sda5[1] + 8776594944 blocks super 1.2 level 5, 64k chunk, algorithm 2 [4/4] [UUUU] + +md1 : active raid1 sda2[0] sdb2[1] sdc2[2] sdd2[3] + 2097088 blocks [4/4] [UUUU] + +md0 : active raid1 sda1[0] sdb1[1] sdc1[2] sdd1[3] + 2490176 blocks [4/4] [UUUU] + +unused devices: diff --git a/syno/meminfo b/syno/meminfo new file mode 100644 index 0000000..2b84800 --- /dev/null +++ b/syno/meminfo @@ -0,0 +1,33 @@ +MemTotal: 1033912 kB +MemFree: 39140 kB +Buffers: 104416 kB +Cached: 521708 kB +SwapCached: 1556 kB +Active: 210512 kB +Inactive: 530308 kB +Active(anon): 59288 kB +Inactive(anon): 97696 kB +Active(file): 151224 kB +Inactive(file): 432612 kB +Unevictable: 0 kB +Mlocked: 0 kB +SwapTotal: 2097084 kB +SwapFree: 2090016 kB +Dirty: 16 kB +Writeback: 0 kB +AnonPages: 113364 kB +Mapped: 56040 kB +Shmem: 42256 kB +Slab: 221572 kB +SReclaimable: 182160 kB +SUnreclaim: 39412 kB +KernelStack: 2224 kB +PageTables: 4960 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 2614040 kB +Committed_AS: 1277952 kB +VmallocTotal: 950272 kB +VmallocUsed: 27368 kB +VmallocChunk: 860156 kB diff --git a/syno/partitions b/syno/partitions new file mode 100644 index 0000000..5e4127d --- /dev/null +++ b/syno/partitions @@ -0,0 +1,34 @@ +major minor #blocks name + + 8 0 2930266584 sda + 8 1 2490240 sda1 + 8 2 2097152 sda2 + 8 5 2925532864 sda5 + 8 16 2930266584 sdb + 8 17 2490240 sdb1 + 8 18 2097152 sdb2 + 8 21 2925532864 sdb5 + 8 32 2930266584 sdc + 8 33 2490240 sdc1 + 8 34 2097152 sdc2 + 8 37 2925532864 sdc5 + 8 48 2930266584 sdd + 8 49 2490240 sdd1 + 8 50 2097152 sdd2 + 8 53 2925532864 sdd5 + 31 0 832 mtdblock0 + 31 1 2880 mtdblock1 + 31 2 4288 mtdblock2 + 31 3 64 mtdblock3 + 31 4 64 mtdblock4 + 31 5 64 mtdblock5 + 31 6 8192 mtdblock6 + 9 0 2490176 md0 + 9 1 2097088 md1 + 9 2 8776594944 md2 + 253 0 8776593408 dm-0 + 253 1 8776593408 dm-1 + 65 0 732574582 sdq + 65 1 732571904 sdq1 + 65 16 1953514584 sdr + 65 17 1953511904 sdr1 diff --git a/syno/script.sh b/syno/script.sh new file mode 100755 index 0000000..cf4b509 --- /dev/null +++ b/syno/script.sh @@ -0,0 +1,219 @@ +#!/bin/bash + +# check_snmp_disksize +# Description : Check the disk size of Windows server and Unix server +# Version : 1.6 +# Author : Yoann LAMY +# Licence : GPLv2 + +# MacBook-Pro:syno bruno$ ./script.sh -H localhost -d /BOOTCAMP + +# Commands +CMD_BASENAME="/usr/bin/basename" +CMD_SNMPGET="/usr/bin/snmpget" +CMD_SNMPWALK="/usr/bin/snmpwalk" +CMD_BC="/usr/bin/bc" +CMD_AWK="/usr/bin/awk" +CMD_GREP="/usr/bin/grep" +CMD_EXPR="/bin/expr" + +# Script name +SCRIPTNAME=`$CMD_BASENAME $0` + +# Version +VERSION="1.6" + +# Plugin return codes +STATE_OK=0 +STATE_WARNING=1 +STATE_CRITICAL=2 +STATE_UNKNOWN=3 + +# 'hrStorageDescr', HOST-RESOURCES-MIB +OID_DESC=".1.3.6.1.2.1.25.2.3.1.3" + +# 'hrStorageAllocationUnits', HOST-RESOURCES-MIB +OID_UNIT=".1.3.6.1.2.1.25.2.3.1.4" + +# 'hrStorageSize', HOST-RESOURCES-MIB +OID_TOTAL=".1.3.6.1.2.1.25.2.3.1.5" + +# 'hrStorageUsed', HOST-RESOURCES-MIB +OID_USED=".1.3.6.1.2.1.25.2.3.1.6" + +# Default variables +DESCRIPTION="Unknown" +STATE=$STATE_UNKNOWN +CODE=0 + +# Default options +COMMUNITY="public" +HOSTNAME="127.0.0.1" +DISK="" +WARNING=20 +CRITICAL=10 + +# Option processing +print_usage() { + echo "Usage: ./check_snmp_disksize -H 127.0.0.1 -C public -d C: -w 80 -c 90" + echo " $SCRIPTNAME -H ADDRESS" + echo " $SCRIPTNAME -C STRING" + echo " $SCRIPTNAME -d STRING" + echo " $SCRIPTNAME -w INTEGER" + echo " $SCRIPTNAME -c INTEGER" + echo " $SCRIPTNAME -h" + echo " $SCRIPTNAME -V" +} + +print_version() { + echo $SCRIPTNAME version $VERSION + echo "" + echo "This nagios plugins comes with ABSOLUTELY NO WARRANTY." + echo "You may redistribute copies of the plugins under the terms of the GNU General Public License v2." +} + +print_help() { + print_version + echo "" + print_usage + echo "" + echo "Check the disk size of Windows server and Unix server" + echo "" + echo "-H ADDRESS" + echo " Name or IP address of host (default: 127.0.0.1)" + echo "-C STRING" + echo " Community name for the host's SNMP agent (default: public)" + echo "-d STRING" + echo " Drive letter (C:) or mount point (/home)" + echo "-w INTEGER" + echo " Warning level for size in percent (default: 0)" + echo "-c INTEGER" + echo " Critical level for size in percent (default: 0)" + echo "-h" + echo " Print this help screen" + echo "-V" + echo " Print version and license information" + echo "" + echo "" + echo "This plugin uses the 'snmpget' command and the 'snmpwalk' command included with the NET-SNMP package." + echo "This plugin support performance data output." + echo "If the percentage of the warning and critical levels are set 0, then the script returns a OK state." +} + +while getopts H:C:d:w:c:hV OPT +do + case $OPT in + H) HOSTNAME="$OPTARG" ;; + C) COMMUNITY="$OPTARG" ;; + d) DISK="$OPTARG" ;; + w) WARNING=$OPTARG ;; + c) CRITICAL=$OPTARG ;; + h) + print_help + exit $STATE_UNKNOWN + ;; + V) + print_version + exit $STATE_UNKNOWN + ;; + esac +done + +# Plugin processing +if [ "${DISK: 0:1}" != "/" ]; then + if [ "${DISK: -1}" != ":" ]; then + DISK="${DISK}:" + fi +fi + +size_convert() { + if [ $VALUE -ge 1099511627776 ]; then + VALUE=`echo "scale=2 ; ( ( ( $VALUE / 1024 ) / 1024 ) / 1024 ) / 1024" | $CMD_BC` + VALUE="$VALUE To" + elif [ $VALUE -ge 1073741824 ]; then + VALUE=`echo "scale=2 ; ( ( $VALUE / 1024 ) / 1024 ) / 1024" | $CMD_BC` + VALUE="$VALUE Go" + elif [ $VALUE -ge 1048576 ]; then + VALUE=`echo "scale=2 ; ( $VALUE / 1024 ) / 1024" | $CMD_BC` + VALUE="$VALUE Mo" + else + VALUE=`echo "scale=2 ; $VALUE / 1024" | $CMD_BC` + VALUE="$VALUE Octets" + fi +} + +size_fix() { + if [ ${VALUE: 0:1} = "-" ]; then + VALUE=`$CMD_EXPR 4294967294 - \( 0 - $VALUE \)` + fi +} + +DISK_DESC=`$CMD_SNMPWALK -t 2 -r 2 -v 1 -c $COMMUNITY $HOSTNAME "$OID_DESC" | $CMD_GREP "$DISK"` +#DISK_DESC=`$CMD_SNMPWALK -t 2 -r 2 -v 1 -c $COMMUNITY $HOSTNAME "$OID_DESC" | $CMD_GREP "DRIVE : $DISK"` + +#DISK_DESC=`$CMD_SNMPWALK -t 2 -r 2 -v 1 -c $COMMUNITY $HOSTNAME "$OID_DESC"` +echo $DISK_DESC + +if [ -n "$DISK_DESC" ]; then + DISK_ID=`echo $DISK_DESC | $CMD_AWK '{print $1}' | $CMD_AWK -F "." '{print $NF}'` + if [ ${DISK: 0:1} != "/" ]; then + DISK_LABEL=`echo $DISK_DESC | $CMD_AWK '{ print $5 }' | $CMD_AWK -F ':' '{ print $2 }'` + fi + + DISK_UNIT=`$CMD_SNMPGET -t 2 -r 2 -v 1 -c $COMMUNITY -OvqU $HOSTNAME "${OID_UNIT}.${DISK_ID}"` + DISK_TOTAL=`$CMD_SNMPGET -t 2 -r 2 -v 1 -c $COMMUNITY -OvqU $HOSTNAME "${OID_TOTAL}.${DISK_ID}"` + DISK_USED=`$CMD_SNMPGET -t 2 -r 2 -v 1 -c $COMMUNITY -OvqU $HOSTNAME "${OID_USED}.${DISK_ID}"` + + if [ $DISK_TOTAL != 0 ]; then + VALUE=$DISK_TOTAL + echo "VALUE (DISK_TOTAL): $VALUE" + size_fix + DISK_TOTAL=$VALUE + echo "DISK_TOTAL: $DISK_TOTAL" + + VALUE=$DISK_USED + echo "VALUE (DISK_USED): $VALUE" + size_fix + DISK_USED=$VALUE + echo "DISK_USED: $DISK_USED" + + echo "DISK_UNIT: $DISK_UNIT" + DISK_TOTAL=`$CMD_EXPR $DISK_TOTAL \* \( $DISK_UNIT \)` + DISK_USED=`$CMD_EXPR $DISK_USED \* \( $DISK_UNIT \)` + echo "DISK_TOTAL: $DISK_TOTAL" + echo "DISK_USED: $DISK_USED" + PERFDATA_WARNING=0 + PERFDATA_CRITICAL=0 + + if [ $WARNING != 0 ] || [ $CRITICAL != 0 ]; then + DISK_USED_POURCENT=`$CMD_EXPR \( $DISK_USED \* 100 \) / $DISK_TOTAL` + PERFDATA_WARNING=`$CMD_EXPR \( $DISK_TOTAL \* $WARNING \) / 100` + PERFDATA_CRITICAL=`$CMD_EXPR \( $DISK_TOTAL \* $CRITICAL \) / 100` + + if [ $DISK_USED_POURCENT -gt $CRITICAL ] && [ $CRITICAL != 0 ]; then + STATE=$STATE_CRITICAL + elif [ $DISK_USED_POURCENT -gt $WARNING ] && [ $WARNING != 0 ]; then + STATE=$STATE_WARNING + else + STATE=$STATE_OK + fi + else + STATE=$STATE_OK + fi + + VALUE=$DISK_TOTAL + echo "VALUE (DISK_TOTAL): $VALUE" + size_convert + DISK_TOTAL_FORMAT=$VALUE + echo "DISK_TOTAL_FORMAT: $DISK_TOTAL_FORMAT" + + VALUE=$DISK_USED + size_convert + DISK_USED_FORMAT=$VALUE + + DESCRIPTION="Disk/partition usage '$DISK' $DISK_LABEL : $DISK_USED_FORMAT utilise sur $DISK_TOTAL_FORMAT (${DISK_USED_POURCENT}%) | total=${DISK_TOTAL}B;$PERFDATA_WARNING;$PERFDATA_CRITICAL;0 used=${DISK_USED}B;0;0;0" + fi +fi + +echo $DESCRIPTION +exit $STATE \ No newline at end of file diff --git a/syno/script2.sh b/syno/script2.sh new file mode 100755 index 0000000..93fb273 --- /dev/null +++ b/syno/script2.sh @@ -0,0 +1,155 @@ +#!/bin/bash +#==================================================================== +# Reads free diskspace on remote hosts via snmp. +# +# Requires Net-SNMP: http://net-snmp.sourceforge.net/ +# +# Jonathan Baxter jbaxter@panscient.com 20080426 +# +# Copyright (C) 2008, Jonathan Baxter +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +#==================================================================== + +function usage() { + echo + echo "Usage: $0 [-cp] host [host...]"; + echo "Print fixed disks on the specified host(s) with free space below threshold" + echo + echo " -c snmp community string (default: \"public\")" + echo " -p percent free threshold (default: 10%)" + echo + echo "Report bugs to jbaxter@panscient.com" + echo +} + +#=================== +# Process options +#=================== +while getopts ":c:p:" option; do + case $option in + c ) community="$OPTARG"; shift $((OPTIND-1)); OPTIND=1;; + p ) percent_free_threshold="$OPTARG"; shift $((OPTIND-1)); OPTIND=1;; + h ) usage; exit 0;; + \? ) usage; exit 1;; + * ) usage; exit 1;; + esac +done +community=${community-public} +percent_free_threshold=${percent_free_threshold-10} +snmp_ver="1" + +if [ "$1" = "" ]; then + echo $usage + exit 1 +fi + +#============================================================================= +# Reads the free space on fixed disks on the specified host +# +# $1: host +# return: line for each fixed disk: +#============================================================================= +function read_fixed_diskspace() +{ + local data host type desc au size used + host=$1 + data="$(snmpwalk -c public -v 1 -OqUes $host hrStorage 2>&1)" + if [ "$?" != "0" ]; then + echo -e "$data" + return 1; + fi + while read nameid value junk; do + name=${nameid%%.*} + #echo $name + id=${nameid/$name.} + lastid=$id + case "$name" in + "hrStorageType" ) type[$id]=$value;; + "hrStorageDescr" ) desc[$id]=$value;; + "hrStorageAllocationUnits" ) au[$id]=$value;; + "hrStorageSize" ) size[$id]=$value;; + "hrStorageUsed" ) used[$id]=$value;; + * ) ;; + esac + done < <(echo -e "$data") + + i="0" + while [[ i -lt ${lastid} ]]; do + if [[ ("${type[$i]}" = "hrStorageFixedDisk") && + ("${size[$i]-0}" != "0") && + ("${au[$i]-0}" != "0") ]]; then + sizeMB=$(( (${au[$i]} * (${size[$i]} / 1024) / 1024) )) + usedMB=$(( (${au[$i]} * (${used[$i]} / 1024) / 1024) )) + percent_free=$((100 * ( $sizeMB - $usedMB ) / $sizeMB)) + echo "${desc[$i]} ${sizeMB} ${usedMB} $percent_free\n" + fi + let i=i+1; + done +} + +#============================================ +# Insert commas as appropriate into integers +# $1: integer, eg: 5555555 +# return: commaized integer, eg: 5,555,555 +#============================================ +function commaize() { + echo $1 | sed ':a;s/\B[0-9]\{3\}\>/,&/;ta' +} + +#====================================== +# Process the hosts on the commandline +#====================================== +n="0" +num_bad_hosts="0" +for host in "$@"; do + data="$(read_fixed_diskspace $host)" + if [ "$?" != "0" ]; then + bad_hosts[$num_bad_hosts]=$host + last_bad_host=$host + let num_bad_hosts+=1 + message[$n]="$host: $data" + let n+=1 + else + while read desc size used percent_free junk; do + if [[ ("$percent_free" != "") && + ($percent_free -lt $percent_free_threshold) ]]; then + if [ "$host" != "$last_bad_host" ]; then + bad_hosts[$num_bad_hosts]=$host + last_bad_host=$host + let num_bad_hosts+=1 + fi + message[$n]="$host:$desc is $(( 100 - $percent_free ))% full - \ + $(commaize $used)M used out of $(commaize $size)M total" + let n+=1 + fi + done < <(echo -e "$data") + fi +done + +if [ "$num_bad_hosts" -gt "0" ]; then + # summary line: all bad hosts + echo "${bad_hosts[*]}" + + # messages + lastn=$(( $n-1 )) + for i in $(seq 0 $lastn); do + echo ${message[$i]} + done + exit 1; +fi + +exit 0; \ No newline at end of file diff --git a/syno/smart.sh b/syno/smart.sh new file mode 100755 index 0000000..2f6ce3c --- /dev/null +++ b/syno/smart.sh @@ -0,0 +1,377 @@ +#!/bin/bash + +# http://fr.wikipedia.org/wiki/Self-Monitoring,_Analysis_and_Reporting_Technology + +#Attributes names (this is deduced from ID by smartctl and may be incorrect, as it's highly vendor-specific) +#Flag values: if given in POSRCK+ format, the presence of each letter indicates that the flag is on. +#P: pre-failure warning ; O: updated continuously ; S: speed / performance attribute ; R: error rate ; C: event count K: auto-keep ; +: undocumented bits present +#Updated: the attribute is usually updated continuously, or during Offline Data Collection only. +#Type: alarm condition is reached when if normalized value becomes less than or equal to threshold. Type indicates whether it's a signal of drive's pre-failure time or just an old age. +#Raw value: as reported by drive. May or may not be sensible. +#Threshold for normalized value. Normalized value should be greater than threshold +#Worst normalized value recorded for this attribute during the drive's lifetime(with SMART enabled) +#Normalized value (highly vendor-specific; converted from Raw value by the drive's firmware) +#Failed when the normalized value became equal or less than threshold + +bold='' +nobold='' +bgblue='' +bgnormal='' +italic='' +noitalic='' +under='' +nounder='' + +#modelName=$(echo "$synoSystem" | grep $OID_modelName | cut -d "=" -f2) + +# -P showall +#smart2=$(ssh root@192.168.0.8 "smartctl -a /dev/hda -d ata") +#Temp=$(echo "$smart2" | egrep "Model|Temp") +#echo "$Temp" + + + +#WORST (le pire) +#THRESH (battre) threshold (seuil) + + +#smart3=$(ssh root@192.168.0.8 "find /dev/hd[a-d] -exec /usr/syno/bin/smartctl -iA -d ata {} \;") +#Serial=$(echo "$smart3" | egrep "Serial") +#echo "$Serial" + +# fdisk -l ; df -h +# pour les pérfis ide: /dev/hd* +# pour les périferiques sata et usb: /dev/sd* +# fdisk -l | grep "^/dev/" +# df -h | grep "USB" + +#sdq: Toshiba 750 Go (volumeUSB2) +#/usr/syno/bin/smartctl -aH -d sat /dev/sdq => OK + +#sdr: Toshiba 2 To (volumeUSB1) +#/usr/syno/bin/smartctl -aH -d sat /dev/sdr => OK ** + +# -d TYPE, --device=TYPE +# Specify device type to one of: ata, scsi, sat[,auto][,N][+TYPE], usbcypress[,X], usbjmicron[,p][,x][,N], usbsunplus, marvell, areca,N/E, 3ware,N, hpt,L/M/N, megaraid,N, cciss,N, auto, test + +model="" +serial="" +firmware="" +capacity="" +temperature="" +health="" +smart1="" +smart1v="" +smart1t="" +smart1w="" +smart2="" +smart2v="" +smart2t="" +smart2w="" +smart3="" +smart3v="" +smart3t="" +smart3w="" +smart4="" +smart4v="" +smart4t="" +smart4w="" +smart5="" +smart5v="" +smart5t="" +smart6w="" +smart6="" +smart6v="" +smart6t="" +smart6w="" +smart7="" +smart7v="" +smart7t="" +smart7w="" +smart8="" +smart8v="" +smart8t="" +smart8w="" +smart9="" +smart9v="" +smart9t="" +smart9w="" +smart10="" +smart10v="" +smart10t="" +smart10w="" +smart11="" +smart11v="" +smart11t="" +smart11w="" +smart12="" +smart12v="" +smart12t="" +smart12w="" +smart13="" +smart13v="" +smart13t="" +smart13w="" +smart14="" +smart14v="" +smart14t="" +smart14w="" +smart15="" +smart15v="" +smart15t="" +smart15w="" + +i=0 +j=0 + +declare RESULT=() +while read -r LINE; do + RESULT[${#RESULT[@]}]=$LINE + #echo $LINE + + _model=$(echo $LINE | grep "Device Model"| cut -d ":" -f2) + if [ -n "$_model" ] ; then model[$i]=$_model ; fi + + _serial=$(echo $LINE | grep "Serial Number"| cut -d ":" -f2) + if [ -n "$_serial" ] ; then serial[$i]=$_serial ; fi + + _firmware=$(echo $LINE | grep "Firmware Version"| cut -d ":" -f2) + if [ -n "$_firmware" ] ; then firmware[$i]=$_firmware ; fi + + # recherche chaine entre [] sed 's/.*\[//;s/\].*//' + _capacity=$(echo $LINE | grep "User Capacity"| cut -d ":" -f2 | sed 's/.*\[//;s/\].*//') + if [ -n "$_capacity" ] ; then capacity[$i]=$_capacity ; fi + + _temperature=$(echo $LINE | grep "Temperature_Celsius"| cut -d " " -f10) + if [ -n "$_temperature" ] ; then temperature[$i]=$_temperature ; fi + + _health=$(echo $LINE | grep "SMART overall-health"| cut -d ":" -f2 | sed 's/^ *//g') + if [ -n "$_health" ] ; then health[$i]=$_health ; fi + + ## SMART + + _smart1=$(echo $LINE | grep "Raw_Read_Error_Rate") #1 + if [ -n "$_smart1" ] + then + # VALUE WORST THRESH (valeur mini failed) + echo $_smart1 + smart1[$i]=$(echo $_smart1 | awk '{print $10}') + smart1v[$i]=$(echo $_smart1 | awk '{print $4}') + smart1w[$i]=$(echo $_smart1 | awk '{print $5}') + smart1t[$i]=$(echo $_smart1 | awk '{print $6}') + fi + + _smart2=$(echo $LINE | grep "Reallocated_Sector_Ct") #5 + if [ -n "$_smart2" ] + then + smart2[$i]=$(echo $_smart2 | awk '{print $10}') + smart2v[$i]=$(echo $_smart2 | awk '{print $4}') + smart2w[$i]=$(echo $_smart2 | awk '{print $5}') + smart2t[$i]=$(echo $_smart2 | awk '{print $6}') + fi + + _smart3=$(echo $LINE | grep "Spin_Retry_Count") #10 + if [ -n "$_smart3" ] + then + smart3[$i]=$(echo $_smart3 | awk '{print $10}') + smart3v[$i]=$(echo $_smart3 | awk '{print $4}') + smart3w[$i]=$(echo $_smart3 | awk '{print $5}') + smart3t[$i]=$(echo $_smart3 | awk '{print $6}') + fi + + _smart4=$(echo $LINE | grep "Command_Timeout") #188 + if [ -n "$_smart4" ] + then + smart4[$i]=$(echo $_smart4 | awk '{print $10}') + smart4v[$i]=$(echo $_smart4 | awk '{print $4}') + smart4w[$i]=$(echo $_smart4 | awk '{print $5}') + smart4t[$i]=$(echo $_smart4 | awk '{print $6}') + fi + + _smart5=$(echo $LINE | grep "Airflow_Temperature_Cel") #190 + if [ -n "$_smart5" ] + then + smart5[$i]=$(echo $_smart5 | awk '{print $10}') + smart5v[$i]=$(echo $_smart5 | awk '{print $4}') + smart5w[$i]=$(echo $_smart5 | awk '{print $5}') + smart5t[$i]=$(echo $_smart5 | awk '{print $6}') + fi + + _smart6=$(echo $LINE | grep "Reallocated_Event_Count") #196 + if [ -n "$_smart6" ] + then + smart6[$i]=$(echo $_smart6 | awk '{print $10}') + smart6v[$i]=$(echo $_smart6 | awk '{print $4}') + smart6w[$i]=$(echo $_smart6 | awk '{print $5}') + smart6t[$i]=$(echo $_smart6 | awk '{print $6}') + fi + + _smart7=$(echo $LINE | grep "Current_Pending_Sector") #197 + if [ -n "$_smart7" ] + then + smart7[$i]=$(echo $_smart7 | awk '{print $10}') + smart7v[$i]=$(echo $_smart7 | awk '{print $4}') + smart7w[$i]=$(echo $_smart7 | awk '{print $5}') + smart7t[$i]=$(echo $_smart7 | awk '{print $6}') + fi + + _smart8=$(echo $LINE | grep "Offline_Uncorrectable") #198 + if [ -n "$_smart8" ] + then + smart8[$i]=$(echo $_smart8 | awk '{print $10}') + smart8v[$i]=$(echo $_smart8 | awk '{print $4}') + smart8w[$i]=$(echo $_smart8 | awk '{print $5}') + smart8t[$i]=$(echo $_smart8 | awk '{print $6}') + fi + + _smart9=$(echo $LINE | grep "Soft_Read_Error_Rate") #201 + if [ -n "$_smart9" ] + then + smart9[$i]=$(echo $_smart9 | awk '{print $10}') + smart9v[$i]=$(echo $_smart9 | awk '{print $4}') + smart9w[$i]=$(echo $_smart9 | awk '{print $5}') + smart9t[$i]=$(echo $_smart9 | awk '{print $6}') + fi + + _smart10=$(echo $LINE | grep "Disk_Shift") #220 + if [ -n "$_smart10" ] + then + smart10[$i]=$(echo $_smart10 | awk '{print $10}') + smart10v[$i]=$(echo $_smart10 | awk '{print $4}') + smart10w[$i]=$(echo $_smart10 | awk '{print $5}') + smart10t[$i]=$(echo $_smart10 | awk '{print $6}') + fi + + ## INFOS + + _smart11=$(echo $LINE | grep "Start_Stop_Count") #4 + if [ -n "$_smart11" ] + then + smart11[$i]=$(echo $_smart11 | awk '{print $10}') + smart11v[$i]=$(echo $_smart11 | awk '{print $4}') + smart11w[$i]=$(echo $_smart11 | awk '{print $5}') + smart11t[$i]=$(echo $_smart11 | awk '{print $6}') + fi + + _smart12=$(echo $LINE | grep "Seek_Error_Rate") #7 + if [ -n "$_smart12" ] + then + smart12[$i]=$(echo $_smart12 | awk '{print $10}') + smart12v[$i]=$(echo $_smart12 | awk '{print $4}') + smart12w[$i]=$(echo $_smart12 | awk '{print $5}') + smart12t[$i]=$(echo $_smart12 | awk '{print $6}') + fi + + _smart13=$(echo $LINE | grep "Power_On_Hours") #9 + if [ -n "$_smart13" ] + then + smart13[$i]=$(echo $_smart13 | awk '{print $10}') + smart13v[$i]=$(echo $_smart13 | awk '{print $4}') + smart13w[$i]=$(echo $_smart13 | awk '{print $5}') + smart13t[$i]=$(echo $_smart13 | awk '{print $6}') + fi + + _smart14=$(echo $LINE | grep "Power_Cycle_Count") #12 + if [ -n "$_smart14" ] + then + smart14[$i]=$(echo $_smart14 | awk '{print $10}') + smart14v[$i]=$(echo $_smart14 | awk '{print $4}') + smart14w[$i]=$(echo $_smart14 | awk '{print $5}') + smart14t[$i]=$(echo $_smart14 | awk '{print $6}') + fi + + _smart15=$(echo $LINE | grep "UDMA_CRC_Error_Count") #199 + if [ -n "$_smart15" ] + then + smart15[$i]=$(echo $_smart15 | awk '{print $10}') + smart15v[$i]=$(echo $_smart15 | awk '{print $4}') + smart15w[$i]=$(echo $_smart15 | awk '{print $5}') + smart15t[$i]=$(echo $_smart15 | awk '{print $6}') + fi + + + if [ -n "$(echo $LINE | grep "Copyright")" ] ; then ((i=i+1)) ; fi + #echo $i + +done < <(ssh root@192.168.0.8 "find /dev/sd[a-d,q-r] -exec /usr/syno/bin/smartctl -a -v 9,minutes -d sat {} \;") + #done < <(find /dev/disk0 -exec smartctl -a -v 9,minutes -d sat {} \;) + + +for((j=1;j<=$i;j++)); +do + echo "${bold}Disk $j [${health[j]}]:${nobold}" + echo " Modèle:${model[j]} N° serie:${serial[j]} Firmware:${firmware[j]} Capacité: ${capacity[j]}" + echo " Temp: ${temperature[j]}°C" + + echo " ${under}Alarmes:${nounder}" + + a=${smart1[j]} + #echo "Raw_Read_Error_Rate: $a" + if [[ -n $a && $a -gt 0 ]]; then echo " Raw_Read_Error_Rate: $a" ; fi + av=${smart1v[j]} + at=${smart1t[j]} + aw=${smart1w[j]} + echo "value: $av tresh: $at worst: $aw" + + b=${smart2[j]} + #echo "Reallocated_Sector_Ct: $b" + if [[ -n $b && $b -gt 0 ]]; then echo " Reallocated_Sector_Ct: $b" ; fi + c=${smart3[j]} + #echo "Spin_Retry_Count: $c" + if [[ -n $c && $c -gt 0 ]]; then echo " Spin_Retry_Count: $c" ; fi + d=${smart4[j]} + #echo "Command_Timeout: $d" + if [[ -n $d && $d -gt 0 ]]; then echo " Command_Timeout: $d" ; fi + e=${smart5[j]} + #echo "Airflow_Temperature_Cel: $e" + if [[ -n $e && $e -gt 0 ]]; then echo " Airflow_Temperature_Cel: $e" ; fi + f=${smart6[j]} + #echo "Reallocated_Event_Count: $f" + if [[ -n $f && $f -gt 0 ]]; then echo " Reallocated_Event_Count: $f" ; fi # + g=${smart7[j]} + #echo "Current_Pending_Sector: $g" + if [[ -n $g && $g -gt 0 ]]; then echo " Current_Pending_Sector: $g" ; fi + h=${smart8[j]} + #echo "Offline_Uncorrectable: $h" + if [[ -n $h && $h -gt 0 ]]; then echo " Offline_Uncorrectable: $h" ; fi + k=${smart9[j]} + #echo "Soft_Read_Error_Rate: $k" + if [[ -n $k && $k -gt 0 ]]; then echo " Soft_Read_Error_Rate: $k" ; fi # + l=${smart10[j]} + #echo "Disk_Shift: $l" + if [[ -n $l && $l -gt 0 ]]; then echo " Disk_Shift: $l" ; fi # + + echo " ${under}Infos:${nounder}" + m=${smart11[j]} + #echo "Start_Stop_Count: $m" + if [[ -n $m && $m -gt 0 ]]; then echo " Start_Stop_Count: $m" ; fi # + n=${smart12[j]} + #echo "Seek_Error_Rate: $n" + if [[ -n $n && $n -gt 0 ]]; then echo " Seek_Error_Rate: $n" ; fi # + o=${smart13[j]} + #echo "Power_On_Hours: $o" + if [[ -n $o && $o -gt 0 ]]; then echo " Power_On_Hours: $o" ; fi # + p=${smart14[j]} + #echo "Power_Cycle_Count: $p" + if [[ -n $p && $p -gt 0 ]]; then echo " Power_Cycle_Count: $p" ; fi # + q=${smart15[j]} + #echo "UDMA_CRC_Error_Count: $q" + if [[ -n $q && $q -gt 0 ]]; then echo " UDMA_CRC_Error_Count: $q" ; fi # +done + +#for hd in /dev/hda*; do +#for hd in /dev/hd[a-z]; do +#for hd in /dev/disk[1-9]; do +#dd=$(ssh root@192.168.0.8 "for hd in /dev/hd[a-d]; do smartctl -A $hd -d ata; done") + +#dd=$(ssh root@192.168.0.8 "for i in $(ls /dev/ | grep sd[a-d]\$) ; do /usr/syno/bin/smartctl -A /dev/$i -d ata; done") +#dd=$(ssh root@192.168.0.8 "for i in $(ls /dev/ | grep sd[a-d]\$) ; do /usr/syno/bin/smartctl -A /dev/sda -d ata; done") +#echo "$dd" + +#VALUE="_AAAA" + +#if [ ${VALUE: 1:3} = "AA" ]; then + #echo "oui" + #else + #echo "non" + #fi diff --git a/syno/syno_cpu.sh b/syno/syno_cpu.sh new file mode 100755 index 0000000..0a8d64f --- /dev/null +++ b/syno/syno_cpu.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +ssh=admin@192.168.0.8 + +hostname=`ssh $ssh 'hostname'` +echo $hostname + +#cpuinfo=`cat ./cpuinfo` +cpuinfo=`ssh $ssh 'cat /proc/cpuinfo'` +processor=`grep Processor cpuinfo | awk -F":" '{print $2}'` +hardware=`grep Hardware cpuinfo | awk -F":" '{print $2}'` +echo $processor +echo $hardware + + +#diskstats=`cat ./diskstats` +diskstats=`ssh $ssh 'cat /proc/diskstats'` +dk1=`grep sda diskstats` +echo $dk1 + + +#meminfo=`cat ./meminfo` +meminfo=`ssh $ssh 'cat /proc/meminfo'` +MemTotal=`grep MemTotal meminfo | awk '{print $2}'` +echo $MemTotal + + +#version=`cat ./version` +version=`cat ./version | awk '{print $1} {print $2} {print $3}'` +#linux= +echo $version + + diff --git a/syno/test.sh b/syno/test.sh new file mode 100755 index 0000000..bd4cfda --- /dev/null +++ b/syno/test.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +OID_model="1.3.6.1.4.1.6574.1.5.1.0" +OID_serialNumber="1.3.6.1.4.1.6574.1.5.2.0" + +#syno=".1.3.6.1.4.1.6574.1.5.1.0 = \"DS414\" .1.3.6.1.4.1.6574.1.5.2.0 = \"13B0LUN002661\" .1.3.6.1.4.1.6574.1.5.3.0 = \"DSM 5.0-4493\" .1.3.6.1.4.1.6574.1.2.0 = 37 .1.3.6.1.4.1.6574.1.1.0 = 1 .1.3.6.1.4.1.6574.1.3.0 = 1 .1.3.6.1.4.1.6574.1.4.1.0 = 1 .1.3.6.1.4.1.6574.1.4.2.0 = 1 .1.3.6.1.4.1.6574.1.5.4.0 = 3" +syno=".1.3.6.1.4.1.6574.1.5.1.0 = "DS414" .1.3.6.1.4.1.6574.1.5.2.0 = "13B0LUN002661" .1.3.6.1.4.1.6574.1.5.3.0 = "DSM 5.0-4493" .1.3.6.1.4.1.6574.1.2.0 = 37 .1.3.6.1.4.1.6574.1.1.0 = 1 .1.3.6.1.4.1.6574.1.3.0 = 1 .1.3.6.1.4.1.6574.1.4.1.0 = 1 .1.3.6.1.4.1.6574.1.4.2.0 = 1 .1.3.6.1.4.1.6574.1.5.4.0 = 3" + +#echo "$syno" + +aa=$(echo "$syno" | grep $OID_model) +echo "$aa" + +model=$(echo "$syno" | grep $OID_model | cut -d "=" -f2) +echo "Synology model: $model" + +serialNumber=$(echo "$syno" | grep $OID_serialNumber | cut -d "=" -f2) +echo "Synology s/n: $serialNumber" diff --git a/syno/tps b/syno/tps new file mode 100644 index 0000000..3d046c0 --- /dev/null +++ b/syno/tps @@ -0,0 +1,602 @@ +#!/bin/sh +#================================== +# Script par Fredlime +# English Translation by Ikeke +#================================== +# Variables courantes du programme +# +model=`/bin/get_key_value /etc/synoinfo.conf upnpmodelname` +heure=`date +%Hh%M` +jour=`date +%d-%m-%Y` +script=`ps | grep $$ | grep -v grep | sed -e 's/^..*sh //' | awk '{print $1}'` +echo $script +# +#===================================== +# Creation du fichier de configuration +# si il n'existe pas => /etc/tps.conf +#===================================== +# +if test -f /etc/tps.conf +then +config="no" +else +config="yes" +printf "#\n# Script configuration of "$script"\n#\n" > /etc/tps.conf +# + if test -f /opt/bin/esmtp + then + echo "tps-mail=\"yes\"" >> /etc/tps.conf + else + echo "tps-mail=\"no\"" >> /etc/tps.conf + fi +# + if test -f /opt/bin/rrdtool + then + echo "tps-graph=\"yes\"" >> /etc/tps.conf + else + echo "tps-graph=\"no\"" >> /etc/tps.conf + fi + if test -d /volume1/web + then + echo "tps-image=\"/volume1/web\"" >> /etc/tps.conf + else + echo "tps-image=\"/tmp\"" >> /etc/tps.conf + fi +# +printf "#\ntps-temps=\"5\"\n#\n# Variables courantes\n#\ntps-jour=\""$jour"\"\n#\n" >> /etc/tps.conf +# +> /etc/tps.log +fi +#=================================== +# Menu de configuration du script +# Cas ou on lance 'tps config' +# ou si premiere execution su script +#=================================== +# +if test "$1" = "config" -o "$config" = "yes" -o "$1" = "info" +then +#----------------------------- +# recup des valeurs par defaut +#----------------------------- +tpsmail=`/bin/get_key_value /etc/tps.conf tps-mail` +tpsgraph=`/bin/get_key_value /etc/tps.conf tps-graph` +tpsimage=`/bin/get_key_value /etc/tps.conf tps-image` +tpstemps=`/bin/get_key_value /etc/tps.conf tps-temps` +jourlog=`/bin/get_key_value /etc/tps.conf tps-jour` +# +smtp=`/bin/get_key_value /etc/synoinfo.conf eventsmtp` +mail=`/bin/get_key_value /etc/synoinfo.conf eventmail1` +user=`/bin/get_key_value /etc/synoinfo.conf eventuser` +pass=`/bin/get_key_value /etc/synoinfo.conf eventpass` +# +# + if test "$1" = "info" + then + status=`cat /etc/crontab | grep $script | sed -e "s/^.*root sh //"` + if test "$status" = "$script" + then + status="Enabled" + else + status="Disabled" + fi + clear + echo "##################################################################" + echo " How to use the SCRIPT and informations about parameters to use " + echo "" + echo $script" config => Script configuration" + echo $script" stop => Disable this script" + echo $script" start => Enable this script" + echo $script" info => Script status" + echo $script" mail => Immediatly send an email" + echo $script" => Generate a temperature statement in database" + echo "" + echo "Send email => "$tpsmail + echo " MAIL => "$mail + echo " SMTP => "$smtp + echo " USER => "$user" useful with some I.S.P" + echo " PASS => "$pass" useful with some I.S.P" + echo "" + echo "Graph creation => "$tpsgraph + echo "Image folder => "$tpsimage + echo "" + echo "Time interval = "$tpstemps" minutes" + echo "Current day = "$jourlog + echo "Script status = "$status + echo "" + echo "" + exit + fi +# + if test -f /opt/bin/esmtp + then + echo + printf "Send eMail yes/no : ("$tpsmail") \c" ; read q + if test "$q" != "" + then + tpsmail=$q + cat /etc/tps.conf | sed -e 's/tps-mail="..*"/tps-mail="'$tpsmail'"/' > /etc/tps.conf + fi + echo + echo "Email address => "$mail + echo "Smtp Server => "$smtp + echo "Login => "$user + echo "Password => "$pass + fi +# + if test -f /opt/bin/rrdtool + then + printf "\nGraphical function yes/no : ("$tpsgraph") \c" ; read q + if test "$q" != "" + then + tpsgraph=$q + fi + if test "$tpsgraph" = "yes" + then + while test "$ok" != "ok" + do + printf "\nImage Folder, by default => "$tpsimage" : \c" ; read q + if test "$q" != "" + then + tpsimage=$q + fi + if test -d $tpsimage + then + ok="ok" + else + echo "" + echo "Error, entered path to store the " + echo "graph file doesn't exist !!" + echo "" + fi + done + fi + cat /etc/tps.conf | sed -e 's/tps-graph="..*"/tps-graph="'$tpsgraph'"/' > /etc/tps.conf + tpsimage="tps-image=\""`echo $tpsimage | sed -e "s/\//slash/g"` + cat /etc/tps.conf | sed -e 's/tps-image="..*/'$tpsimage'"/' | sed -e "s/slash/\//g" > /etc/tps.conf + fi +# +# +echo +printf "\nTime between each statements (minutes) : ("$tpstemps") \c" ; read q + if test "$q" != "" + then + tpstemps=$q + cat /etc/tps.conf | sed -e 's/tps-temps="..*"/tps-temps="'$tpstemps'"/' > /etc/tps.conf + fi +fi +#================================ +# Cas ou on lance le script avec +# 'config' ou 'stop' ou 'start' +#================================ +# +if test "$1" = "stop" -o "$1" = "start" -o "$config" = "yes" +then +/bin/killall crond +echo "Script halted" +#------------------------------------------------------ +# Supression des lignes qui lancent le script dans +# le fichier /etc/rc.local => particularite du CS-406 +# le fichier /etc/crontab => particularite des SYNO +#------------------------------------------------------ + if test "$model" = "CS-406" + then + /bin/cat /etc/rc.local | grep -v $script > /etc/rc.local + fi +/bin/cat /etc/crontab | grep -v $script > /etc/crontab +#------------------------------- +# Cas ou on lance le script avec +# 'config' ou 'start' +#------------------------------- + if test "$1" = "start" -o "$config" = "yes" + then + echo "Script is starting !!" + tpstemps=`/bin/get_key_value /etc/tps.conf tps-temps` + if test "$model" = "CS-406" + then + echo "killall crond # "$script >> /etc/rc.local + echo "echo \"*/"$tpstemps" * * * * root sh "$script"\" >> /etc/crontab" >> /etc/rc.local + echo "/usr/sbin/crond # "$script >> /etc/rc.local + fi + echo "*/"$tpstemps" * * * * root sh "$script >> /etc/crontab + fi +#-------------------- +# On sort du script +# et on relance crond +#-------------------- +/usr/sbin/crond +exit +fi +#================================================================================================= +# Releve la temperature des disques +#================================================================================================= +# +cd /dev +nbrdisk=0 +for bo in `/bin/ls hd?` +do +t=`/opt/sbin/smartctl -A $bo | grep "Temperature_Celsius" | awk '{print $10}'` + if test "$t" != "" + then + h=`/opt/sbin/smartctl -A $bo | grep "Power_On_Hours" | awk '{print $10}'` + nbrdisk=`expr $nbrdisk + 1` + temp=$temp" "$t + dure=$dure" disk"$nbrdisk"= "$h" " + fi +done +temp=`echo $temp | sed -e "s/^ //"` +Tmax=`echo $temp | awk '{print $1"\n"$2"\n"$3"\n"$4}' | sort | tail -1` +Tmin=`echo $temp | awk '{print $1"\n"$2"\n"$3"\n"$4}' | grep -v "^$" | sort -r | tail -1` +delta=`expr $Tmax - $Tmin` +Tmoy=`echo $temp | awk '{print ($1+$2+$3+$4)/'$nbrdisk' }'` +# +#===================== +# Traitement graphique +#===================== +tpsgraph=`/bin/get_key_value /etc/tps.conf tps-graph` +if test "$tpsgraph" = "yes" +then +tpsimage=`/bin/get_key_value /etc/tps.conf tps-image`"/tps-"`hostname`".png" +tempsrdd=`/opt/bin/rrdtool info /etc/tps.rrd 2> /dev/null | grep -i step | awk '{print $3 / 60}'` +tpstemps=`/bin/get_key_value /etc/tps.conf tps-temps` +# +#------------------------------- +# Test si la base existe avec +# le temps des releves, sinon +# creation de la base de donnees +#------------------------------- + if test "$tpstemps" = "$tempsrdd" + then + /opt/bin/rrdtool update /etc/tps.rrd N:$Tmoy:$delta + printf "Creation of the Temperature Graph \c" +# +#--------------------------------------------- +# Generation du Graphique special Cube Station +# avec 1 ou plusieurs disques +#--------------------------------------------- + if test "$model" = "CS-406" + then +# +/opt/bin/rrdtool graph $tpsimage -w 500 -h 100 \ +--title `hostname`" => SYNOLOGY "$model" on "$jour" "$heure \ +--vertical-label "Degrees C" \ +--x-grid MINUTE:15:HOUR:1:HOUR:2:0:%Hh00 \ +--imgformat PNG \ +--color MGRID#337fbf \ +--color FRAME#808080 \ +--color ARROW#FF0099 \ +DEF:disque=/etc/tps.rrd:disque:AVERAGE \ +DEF:deltad=/etc/tps.rrd:deltad:AVERAGE \ +VDEF:max=disque,MAXIMUM \ +LINE2:max#ff0000 \ +CDEF:flaming1=disque,40,*,100,/ \ +CDEF:flaming2=disque,5,*,100,/ \ +AREA:flaming1#ffff5f \ +STACK:flaming2#fffc51 \ +STACK:flaming2#fffc51 \ +STACK:flaming2#fff046 \ +STACK:flaming2#ffe95f \ +STACK:flaming2#ffd237 \ +STACK:flaming2#ffc832 \ +STACK:flaming2#ffbe2d \ +STACK:flaming2#ffaa23 \ +STACK:flaming2#ff9619 \ +STACK:flaming2#ff841e \ +STACK:flaming2#ff841e \ +STACK:flaming2#ff6600:"Disks Temperatures" \ +GPRINT:disque:MAX:"Maxi %2.0lf" \ +GPRINT:disque:MIN:"Mini %2.0lf" \ +GPRINT:disque:AVERAGE:"Aver. %2.1lf" \ +GPRINT:deltad:AVERAGE:"Max Diff. %2.1lf" \ +GPRINT:disque:LAST:"Last measure %2.0lf" \ +COMMENT:"\n" \ +COMMENT:" ---------------------------- \n" \ +COMMENT:" Time Counter $dure" +# +# +#--------------------------------------------- +# Generation du Graphique pour les autres SYNO +# avec 1 disque uniquement +#--------------------------------------------- + else + dure=`echo $dure | awk '{print $2}'` + /opt/bin/rrdtool graph $tpsimage -w 500 -h 100 \ + --title `hostname`" => SYNOLOGY "$model" on "$jour" "$heure \ + --vertical-label "Degrees C" \ + --x-grid MINUTE:15:HOUR:1:HOUR:2:0:%Hh00 \ + --imgformat PNG \ + --color MGRID#337fbf \ + --color FRAME#808080 \ + --color ARROW#FF0099 \ + DEF:disque=/etc/tps.rrd:disque:AVERAGE \ + VDEF:max=disque,MAXIMUM \ + LINE2:max#ff0000 \ + CDEF:flaming1=disque,40,*,100,/ \ + CDEF:flaming2=disque,5,*,100,/ \ + AREA:flaming1#ffff5f \ + STACK:flaming2#fffc51 \ + STACK:flaming2#fffc51 \ + STACK:flaming2#fff046 \ + STACK:flaming2#ffe95f \ + STACK:flaming2#ffd237 \ + STACK:flaming2#ffc832 \ + STACK:flaming2#ffbe2d \ + STACK:flaming2#ffaa23 \ + STACK:flaming2#ff9619 \ + STACK:flaming2#ff841e \ + STACK:flaming2#ff841e \ + STACK:flaming2#ff6600:"Disk Temperature" \ + GPRINT:disque:MAX:"Maxi %2.0lf" \ + GPRINT:disque:MIN:"Mini %2.0lf" \ + GPRINT:disque:AVERAGE:"Aver. %2.2lf" \ + GPRINT:disque:LAST:"Last measure %2.0lf ("$dure" hours)" +# + fi +# + else + echo "Initialization of rrdtool database" + step=`expr $tpstemps \* 60` + inte=`expr $step \* 2` +/opt/bin/rrdtool create /etc/tps.rrd -s $step \ +DS:disque:GAUGE:$inte:U:U \ +DS:deltad:GAUGE:$inte:U:U \ +RRA:AVERAGE:0.5:1:288 + fi +fi +# +#===================== +# Traitement par Mail +#===================== +# +tpsmail=`/bin/get_key_value /etc/tps.conf tps-mail` +if test "$tpsmail" = "yes" +then +# +jourlog=`/bin/get_key_value /etc/tps.conf tps-jour` +tpstemps=`/bin/get_key_value /etc/tps.conf tps-temps` +# + if test -f /etc/tps.log + then +# +# test si le jour a change ou bien +# si on a lance le script avec l'option mail +# + if test "$jourlog" != "$jour" -o "$1" = "mail" + then + echo "Preparing email..." +#----------------------------------------------- +# Dans ce cas, on prepare le mail et on l'envoie +#----------------------------------------------- +/bin/cat /etc/tps.log | sed -e 's/ Delta.*//' | awk -F= '{print $2}' > /tmp/tps-moy.log +/bin/cat /etc/tps.log | sed -e 's/ Disks.*//' | awk -F= '{print $3}' > /tmp/tps-del.log +/bin/cat /etc/tps.log | sed -e 's/Ave.*Disks=//' | sed -e 's/ //g' | sed -e "s/[0-9][0-9]h/~&/" > /tmp/tps-disk0.log +# + if test "$model" = "CS-406" + then + tab="4" + else + tab="6" + fi + col="1" + printf "Temperatures list of day "$jourlog" \n \n" > /tmp/tps-disk.log + for bo in `/bin/cat /tmp/tps-disk0.log` + do + if test "$col" != "$tab" + then + printf " "$bo" \c" >> /tmp/tps-disk.log + else + echo " "$bo >> /tmp/tps-disk.log + col="0" + fi + col=`expr $col + 1` + done +# +# Extraction des infos email, nom et domaine +# +smtp=`/bin/get_key_value /etc/synoinfo.conf eventsmtp` +mail=`/bin/get_key_value /etc/synoinfo.conf eventmail1` +user=`/bin/get_key_value /etc/synoinfo.conf eventuser` +pass=`/bin/get_key_value /etc/synoinfo.conf eventpass` +smtp=`/bin/get_key_value /etc/synoinfo.conf eventsmtp` +echo "hostname = "$smtp":25" > /opt/etc/esmtprc +echo "username = \""$user"\"" >> /opt/etc/esmtprc +echo "password = \""$pass"\"" >> /opt/etc/esmtprc +echo "mda = \"/opt/bin/procmail -d %T\"" >> /opt/etc/esmtprc +# +#----------------------------- +# Prepa entete du fichier mail +#----------------------------- +echo "FROM:SYNO "`hostname`"<"$mail">" > /tmp/ficmail +echo "TO:"`echo $mail | awk -F@ '{print $1}'`"<"$mail">" >> /tmp/ficmail +echo "SUBJECT: Disk diagnostic of "$jourlog >> /tmp/ficmail +echo "X-Priority: 1" >> /tmp/ficmail +echo "" >> /tmp/ficmail +#--------------------------------- +# Infos SMART + Modele des disques +#--------------------------------- + cd /dev + disque=0 + > /tmp/tps-smart + > /tmp/tps-disk +# pour le CS-406 + if test "$model" = "CS-406" + then + for bo in `/bin/ls hd?` + do + ph=`/opt/sbin/smartctl -A $bo | grep "Power_On_Hours" | awk '{ print $10 }'` + if test "$ph" != "" + then + disque=`expr $disque + 1` + pc=`/opt/sbin/smartctl -A $bo | grep "Power_Cycle_Count" | awk '{ print $10 }'` + echo "S.M.A.R.T values of DISQK number : "$disque" (/dev/"$bo")" >> /tmp/tps-smart + echo " " >> /tmp/tps-smart + /opt/sbin/smartctl -i $bo | grep -i "^[MDSU]" | grep -vi "smart" >> /tmp/tps-smart + echo " " >> /tmp/tps-smart + /opt/sbin/smartctl -A $bo | grep -i "ID#" >> /tmp/tps-smart + /opt/sbin/smartctl -A $bo | grep -i "^ *[0-9][0-9]* ..* 0x0" >> /tmp/tps-smart + echo "------------------------------------------------------------------------------------------------" >> /tmp/tps-smart + echo " " >> /tmp/tps-smart + echo "Disk n"$disque" : "$ph" hours / "$pc" starts." >> /tmp/tps-disk + fi + done + echo "Information of "`hostname`" with "$disque" disk(s) on "$jourlog >> /tmp/ficmail +# pour les autres syno + else + ph=`/opt/sbin/smartctl -A /dev/hda | grep "Power_On_Hours" | awk '{ print $10 }'` + pc=`/opt/sbin/smartctl -A /dev/hda | grep "Power_Cycle_Count" | awk '{ print $10 }'` + printf "S.M.A.R.T values of the DISK \n \n" >> /tmp/tps-smart + /opt/sbin/smartctl -i /dev/hda | grep -i "^[MDSU]" | grep -vi "smart" >> /tmp/tps-smart + echo " " >> /tmp/tps-smart + /opt/sbin/smartctl -A /dev/hda | grep -i "ID#" >> /tmp/tps-smart + /opt/sbin/smartctl -A /dev/hda | grep -i "^ *[0-9][0-9]* ..* 0x0" >> /tmp/tps-smart + echo "------------------------------------------------------------------------------------------------" >> /tmp/tps-smart + echo " " >> /tmp/tps-smart + echo "Internal hard disk : "$ph" hours / "$pc" starts." >> /tmp/tps-disk + echo "Information of "`hostname`" on "$jourlog >> /tmp/ficmail + fi + echo " " >> /tmp/ficmail + /bin/cat /tmp/tps-disk >> /tmp/ficmail + echo " " >> /tmp/ficmail +#---------------------- +# Infos sur les volumes +#---------------------- + cd / + > /tmp/tps-volume + for bo in `/bin/ls | grep volume` + do + echo `df -h $bo | grep $bo | awk '{print "Disk Usage. : "$2" - "$5" , "$4" available on "$6}'` >> /tmp/tps-volume + done +#---------------------------------------------------------------- +# Temperature moyenne, mini, maxi, Heure les plus chaudes du jour +# Ecriture des infos +#---------------------------------------------------------------- + nbr=`wc -l /tmp/tps-moy.log | awk '{print $1}'` + h=`echo $nbr | awk '{ print $1 / 60 * '$tpstemps'}' | awk -F. '{print $1}'` + m=`echo $nbr | awk '{ print (( $1 / 60 * '$tpstemps' ) - '$h') * 60 }' | awk -F. '{print $1}'` + Tmax=`cat /tmp/tps-moy.log | sort | tail -1` + Tmin=`cat /tmp/tps-moy.log | sort -r | tail -1` + HTmax=`cat /etc/tps.log | grep "Moyenne=$Tmax" | sed -e 's/^..* //'` + echo "Uptime : "$h" hour(s) "$m" minute(s)" >> /tmp/ficmail +# +# pour le CS-406 +# + if test "$model" = "CS-406" + then + Delt=`cat /tmp/tps-del.log | sort | tail -1` + for bou in `/bin/cat /tmp/tps-moy.log` + do + t=`echo $bou | awk -F. '{print $1}'` + echo $t >> /tmp/tps.$t + done + echo "Min Average Temp. : "$Tmin"" >> /tmp/ficmail + echo "Max Average Temp. : "$Tmax"" >> /tmp/ficmail + echo "Max Diff./Disk : "$Delt"" >> /tmp/ficmail +# +# pour les autres +# + else + Tmoy=0 + for bou in `/bin/cat /tmp/tps-moy.log` + do + t=`echo $bou | awk -F. '{print $1}'` + Tmoy=`expr $Tmoy + $t` + echo $t >> /tmp/tps.$t + done + Tmoy=`echo $Tmoy | awk '{print $1 * 100 / '$nbr'}' | awk -F. '{print $1 / 100}'` + echo "Lowest Temperature : "$Tmin"" >> /tmp/ficmail + echo "Highest Temperature : "$Tmax"" >> /tmp/ficmail + echo "Average Temperature : "$Tmoy"" >> /tmp/ficmail + fi +# + echo " " >> /tmp/ficmail + echo "Hottest ++ Hours : "$HTmax >> /tmp/ficmail + echo " " >> /tmp/ficmail + /bin/cat /tmp/tps-volume >> /tmp/ficmail +#----------------------------------- +# Tri du fichier de releve du jour +# et Stat temperature en % du temps +#----------------------------------- +# + echo " " >> /tmp/ficmail + echo "==== Distribution of reported temperature ====" >> /tmp/ficmail + echo " " >> /tmp/ficmail + for bou in `/bin/ls /tmp/tps.*` + do + t=`echo $bou | awk -F. '{ print $2 }'` + p=`wc -l $bou | awk '{print $1 * 10000 / '$nbr'}' | awk -F. '{print $1 / 100}'` + nbcar=`echo $p | awk -F. '{print $1}' | wc -c | awk '{print $1 - 1}'` + virgu=`echo $p | awk -F. '{print $2}' | wc -c | awk '{print $1 - 1}'` + if test "$virgu" = "0" + then + p=$p".00" + fi + if test "$nbcar" = "1" + then + echo $t" ~~> " $p"% " >> /tmp/ficmail + else + echo $t" ~~> " $p"% " >> /tmp/ficmail + fi + done +# + echo " " >> /tmp/ficmail + echo "=====================================================" >> /tmp/ficmail + echo " " >> /tmp/ficmail + /bin/cat /tmp/tps-smart >> /tmp/ficmail +# + /bin/cat /tmp/tps-disk.log | sed -e "s/~/ ~ /g" >> /tmp/ficmail +# +# Envoie du Mail avec test si connection OK +# sinon on sauvegarde le mail +# +connect=`ping -c 1 $smtp 2> /dev/null | grep -i "0% packet loss"` +# + if test "$connect" != "" + then + echo "Sending email to "$mail + /opt/bin/esmtp $mail < /tmp/ficmail +# +# envoie mail en retard +# + for bou in `/bin/ls /etc/tps.mail* 2> /dev/null` + do + /opt/bin/esmtp $mail < $bou + echo "Sending delayed email" $bou + rm -f $bou + done +# +# Sauvegarde du mail si pas de connexion +# + else + echo "Sending email to "$mail" impossible / delayed" + mv /tmp/ficmail /etc/tps.mail$jourlog + fi +# +# Nettoyage +# + rm -f /tmp/ficmail /tmp/tps* +# +# Initialisation des donnees temperatures +# et mise a jour de la date courante. +# + if test "$jourlog" != "$jour" + then + echo "Updating Temperature statements" + cat /etc/tps.conf | sed -e 's/tps-jour="..*"/tps-jour="'$jour'"/' > /tmp/tps.conf + mv /tmp/tps.conf /etc + > /etc/tps.log + fi +# +# Ecriture des donnees si le jour courant = base de donnee +# + else + echo "Average="$Tmoy" Delta="$delta" Disks="$temp" "$heure >> /etc/tps.log + fi + else +# +# cas ou le fichier de donnees temperatures +# n'existe pas +# + cat /etc/tps.conf | sed -e 's/tps-jour="..*"/tps-jour="'$jour'"/' > /tmp/tps.conf + mv /tmp/tps.conf /etc + > /etc/tps.log + fi +fi diff --git a/syno/version b/syno/version new file mode 100644 index 0000000..60d8496 --- /dev/null +++ b/syno/version @@ -0,0 +1 @@ +Linux version 3.2.40 (root@build2) (gcc version 4.6.4 (Linaro GCC branch-4.6.4. Marvell GCC Dev 201310-2126.3d181f66 64K MAXPAGESIZE ALIGN) ) #4493 SMP Thu Aug 21 21:43:02 CST 2014 diff --git a/vlc.sh b/vlc.sh new file mode 100755 index 0000000..c698b9b --- /dev/null +++ b/vlc.sh @@ -0,0 +1,76 @@ +#!/bin/bash + +#requiert xmlstarlet (installable depuis brew) et mettre le chemin complet /usr/local/bin/xml sel +bold='' +nobold='' +bgblue='' +bgnormal='' +italic='' +noitalic='' +under='' +nounder='' +# VLC->Préférences->Interface->Tout afficher +# ->Interfaces->Interfaces principales->cocher Réseau +# ->Interfaces->Interfaces principales->Lua->Mot de passe->ajouter un password +VLC_PWD=123 +USER=bruno + +cd /Users/$USER/Documents/GeekTool +curl -o vlcstatus.xml -u :$VLC_PWD -s http://127.0.0.1:8080/requests/status.xml + +TYPE1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 0']/info[@name='Type ']" vlcstatus.xml) +retval1=$? +#echo $retval1 +retval2=1 + +if [ $retval1 != 1 ]; then # si flux0 present + + CURRENT=$(/usr/local/bin/xml sel -t -v "/root/time" vlcstatus.xml) + CURRENT=$(echo - | awk -v "S=$CURRENT" '{printf "%dh:%dm:%ds",S/(60*60),S%(60*60)/60,S%60}') + DUREE=$(/usr/local/bin/xml sel -t -v "/root/length" vlcstatus.xml) + DUREE=$(echo - | awk -v "S=$DUREE" '{printf "%dh:%dm:%ds",S/(60*60),S%(60*60)/60,S%60}') + TITLE=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='title']" vlcstatus.xml) + FILENAME=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='filename']" vlcstatus.xml | sed 's/\..*//') + + CODEC1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 0']/info[@name='Codec ']" vlcstatus.xml) + if [ $TYPE1 == "Audio" ]; then + #artist, album, title, track_number + ARTIST1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='artist']" vlcstatus.xml) + ALBUM1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='album']" vlcstatus.xml) + TITLE1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='title']" vlcstatus.xml) + TRACK_NUMBER1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='track_number']" vlcstatus.xml) + TOTAL_TRACK1=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='meta']/info[@name='track_total']" vlcstatus.xml) + fi + + # flux 1 + TYPE2=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 1']/info[@name='Type ']" vlcstatus.xml) + retval2=$? + if [ $retval2 != 1 ]; then # si flux1 present + CODEC2=$(/usr/local/bin/xml sel -t -v "/root/information/category[@name='Flux 1']/info[@name='Codec ']" vlcstatus.xml) + fi + #echo $retval2 + #Sous-titres Text subtitles with various tags (subt) + +fi + +if [ $retval1 != 1 ]; then + echo "${italic}${under}VLC${nounder}${noitalic}" + echo "${bold}Lecture en cours: $FILENAME ${nobold}($CURRENT)" + if [ $TYPE1 == "Vidéo" ]; then + echo "Codec vidéo: $CODEC1" + elif [ $TYPE1 == "Audio" ]; then + echo "Artiste: $ARTIST1" + echo "Album: $ALBUM1" + echo "Titre: $TITLE1 ($TRACK_NUMBER1/$TOTAL_TRACK1)" + echo "Codec audio: $CODEC1" + fi + if [ $retval2 != 1 ]; then + if [ $TYPE2 == "Audio" ]; then + echo "Codec audio: $CODEC2" + fi + fi + echo "Durée: $DUREE" +else + #echo "${bold}Pas de lecture en cours...${nobold}" + echo " " +fi