mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added support for Protelevision DVB-T Transmitter (#9648)
* Create protelevision-t1.yaml * Create protelevision-t1.yaml * Create PT-MIB * Create PT3080-MIB * Add files via upload * Create protelevision-t1.snmprec * Create protelevision-t1.json * Create protelevision-t1.inc.php * Add files via upload * Delete protelevision.png * added indexes to dbm sensors * Update protelevision-t1.yaml * added On Air TS Bitrate * Update protelevision-t1.yaml * added more sensors * Update ProtelevisionT1.php * Update protelevision-t1.yaml * Update protelevision-t1.yaml * Update protelevision-t1.yaml * Update protelevision-t1.snmprec * Update protelevision-t1.json * Update protelevision-t1.yaml * Update protelevision-t1.snmprec * Update protelevision-t1.json * added more sensors and grouping of state sensors * Add files via upload * Update protelevision-t1.json * Update protelevision-t1.json * Update protelevision-t1.snmprec * Update protelevision-t1.yaml * Update protelevision-t1.json * Update protelevision-t1.json
This commit is contained in:
27
LibreNMS/OS/ProtelevisionT1.php
Normal file
27
LibreNMS/OS/ProtelevisionT1.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
namespace LibreNMS\OS;
|
||||
|
||||
use LibreNMS\Device\WirelessSensor;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
|
||||
use LibreNMS\OS;
|
||||
|
||||
class ProtelevisionT1 extends OS implements
|
||||
WirelessFrequencyDiscovery,
|
||||
WirelessRateDiscovery
|
||||
{
|
||||
public function discoverWirelessFrequency()
|
||||
{
|
||||
$rffrequency_oid = '.1.3.6.1.4.1.18086.3080.4.2.0'; // PT3080-MIB::pt3080OutputRfFrequency
|
||||
return array(
|
||||
new WirelessSensor('frequency', $this->getDeviceId(), $rffrequency_oid, 'rffrequency', 1, 'Output RF Frequency', null, 1, 1000000),
|
||||
);
|
||||
}
|
||||
public function discoverWirelessRate()
|
||||
{
|
||||
$oid_tshpbitrate = '.1.3.6.1.4.1.18086.3080.3.41.0'; // PT3080-MIB::pt3080InputTSHpBitrate
|
||||
return array(
|
||||
new WirelessSensor('rate', $this->getDeviceId(), $oid_tshpbitrate, 'pt3080InputTSHpBitrate', 1, 'Current Bitrate On Air TS', null, 1000, 1),
|
||||
);
|
||||
}
|
||||
}
|
BIN
html/images/logos/protelevision.png
Normal file
BIN
html/images/logos/protelevision.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
html/images/os/protelevision.png
Normal file
BIN
html/images/os/protelevision.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
258
includes/definitions/discovery/protelevision-t1.yaml
Normal file
258
includes/definitions/discovery/protelevision-t1.yaml
Normal file
@ -0,0 +1,258 @@
|
||||
mib: PT3080-MIB
|
||||
modules:
|
||||
sensors:
|
||||
state:
|
||||
data:
|
||||
-
|
||||
oid: pt3080InputTSPrimaryStatus
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.3.36.{{ $index }}'
|
||||
descr: TS Primary Status
|
||||
group: Input
|
||||
state_name: pt3080InputTSPrimaryStatus
|
||||
states:
|
||||
- { descr: 'Available', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'Unavailable', graph: 1, value: 1, generic: 1 }
|
||||
- { descr: 'No sync', graph: 1, value: 2, generic: 2 }
|
||||
-
|
||||
oid: pt3080InputTSSecondaryStatus
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.3.37.{{ $index }}'
|
||||
descr: TS Secondary Status
|
||||
group: Input
|
||||
state_name: pt3080InputTSSecondaryStatus
|
||||
states:
|
||||
- { descr: 'Available', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'Unavailable', graph: 1, value: 1, generic: 3 }
|
||||
- { descr: 'No sync', graph: 1, value: 2, generic: 2 }
|
||||
-
|
||||
oid: pt3080InputTSHp
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.3.38.{{ $index }}'
|
||||
descr: Input source On Air
|
||||
group: Input
|
||||
state_name: pt3080InputTSHp
|
||||
states:
|
||||
- { descr: 'asi-in-1', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'asi-in-2', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'demodulator-1', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'demodulator-2', graph: 1, value: 3, generic: 0 }
|
||||
- { descr: 'tsoip-rx1', graph: 1, value: 4, generic: 0 }
|
||||
- { descr: 'tsoip-rx2', graph: 1, value: 5, generic: 0 }
|
||||
- { descr: 'satRecv', graph: 1, value: 6, generic: 0 }
|
||||
-
|
||||
oid: pt3080InputTSLp
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.3.39.{{ $index }}'
|
||||
descr: Input source Backup
|
||||
group: Input
|
||||
state_name: pt3080InputTSLp
|
||||
states:
|
||||
- { descr: 'asi-in-1', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'asi-in-2', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'demodulator-1', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'demodulator-2', graph: 1, value: 3, generic: 0 }
|
||||
- { descr: 'tsoip-rx1', graph: 1, value: 4, generic: 0 }
|
||||
- { descr: 'tsoip-rx2', graph: 1, value: 5, generic: 0 }
|
||||
- { descr: 'satRecv', graph: 1, value: 6, generic: 0 }
|
||||
-
|
||||
oid: pt3080SystemModulationStandard
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.1.32.{{ $index }}'
|
||||
descr: Modulation standard
|
||||
group: System
|
||||
state_name: pt3080SystemModulationStandard
|
||||
states:
|
||||
- { descr: 'dvbt', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'dvbt2', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'atsc', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'isdbt', graph: 1, value: 3, generic: 0 }
|
||||
- { descr: 'iboc', graph: 1, value: 4, generic: 0 }
|
||||
-
|
||||
oid: pt3080OutputSynchronized
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.4.6.{{ $index }}'
|
||||
descr: Output Synchronized Status
|
||||
group: Output
|
||||
state_name: pt3080OutputSynchronized
|
||||
states:
|
||||
- { descr: 'not-synchronized', graph: 1, value: 0, generic: 2 }
|
||||
- { descr: 'synchronized', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080Gps1PPSStatus
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.1.{{ $index }}'
|
||||
descr: GPS Status
|
||||
group: GPS
|
||||
state_name: pt3080Gps1PPSStatus
|
||||
states:
|
||||
- { descr: 'locked', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'unlocked', graph: 1, value: 1, generic: 2 }
|
||||
-
|
||||
oid: pt3080GpsBias
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.4.{{ $index }}'
|
||||
descr: GPS Bias
|
||||
group: GPS
|
||||
state_name: pt3080GpsBias
|
||||
states:
|
||||
- { descr: 'off', graph: 1, value: 0, generic: 3 }
|
||||
- { descr: 'on', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080GpsbiasVoltage
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.15.{{ $index }}'
|
||||
descr: GPS Bias Voltage
|
||||
group: GPS
|
||||
state_name: pt3080GpsbiasVoltage
|
||||
states:
|
||||
- { descr: 'gpsant-5v', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'gpsant-33v', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080GpsSatelliteSystemGPS
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.16.{{ $index }}'
|
||||
descr: GPS Satellites Timing
|
||||
group: GPS
|
||||
state_name: pt3080GpsSatelliteSystemGPS
|
||||
states:
|
||||
- { descr: 'disable', graph: 1, value: 0, generic: 3 }
|
||||
- { descr: 'enable', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080GpsSatelliteSystemGLONASS
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.17.{{ $index }}'
|
||||
descr: GPS GLONASS Satellites Timing
|
||||
group: GPS
|
||||
state_name: pt3080GpsSatelliteSystemGLONASS
|
||||
states:
|
||||
- { descr: 'disable', graph: 1, value: 0, generic: 3 }
|
||||
- { descr: 'enable', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080GpsSatelliteSystemGALILEO
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.18.{{ $index }}'
|
||||
descr: GPS GALILEO Satellites Timing
|
||||
group: GPS
|
||||
state_name: pt3080GpsSatelliteSystemGALILEO
|
||||
states:
|
||||
- { descr: 'disable', graph: 1, value: 0, generic: 3 }
|
||||
- { descr: 'enable', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080GpsSatelliteSystemCOMPASS
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.7.19.{{ $index }}'
|
||||
descr: GPS COMPASS Satellites Timing
|
||||
group: GPS
|
||||
state_name: pt3080GpsSatelliteSystemCOMPASS
|
||||
states:
|
||||
- { descr: 'disable', graph: 1, value: 0, generic: 3 }
|
||||
- { descr: 'enable', graph: 1, value: 1, generic: 0 }
|
||||
-
|
||||
oid: pt3080SystemDateTimeSyncActual
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.1.31.{{ $index }}'
|
||||
descr: Time Sync
|
||||
group: System
|
||||
state_name: pt3080SystemDateTimeSyncActual
|
||||
states:
|
||||
- { descr: 'manual', graph: 1, value: 0, generic: 1 }
|
||||
- { descr: 'auto', graph: 1, value: 1, generic: 1 }
|
||||
- { descr: 'gps', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'ntp', graph: 1, value: 3, generic: 1 }
|
||||
-
|
||||
oid: pt3080ModeCodeRateHighPrio
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.2.4.{{ $index }}'
|
||||
descr: HP Code Rate
|
||||
group: Mode
|
||||
state_name: pt3080ModeCodeRateHighPrio
|
||||
states:
|
||||
- { descr: 'code-rate-1/2', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'code-rate-2/3', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'code-rate-3/4', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'code-rate-5/6', graph: 1, value: 3, generic: 0 }
|
||||
- { descr: 'code-rate-7/8', graph: 1, value: 4, generic: 0 }
|
||||
-
|
||||
oid: pt3080ModeCodeRateLowPrio
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.2.5.{{ $index }}'
|
||||
descr: LP Code Rate
|
||||
group: Mode
|
||||
state_name: pt3080ModeCodeRateLowPrio
|
||||
states:
|
||||
- { descr: 'code-rate-1/2', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'code-rate-2/3', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'code-rate-3/4', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'code-rate-5/6', graph: 1, value: 3, generic: 0 }
|
||||
- { descr: 'code-rate-7/8', graph: 1, value: 4, generic: 0 }
|
||||
-
|
||||
oid: pt3080ModeConstellation
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.2.6.{{ $index }}'
|
||||
descr: OFDM Constellation Mode
|
||||
group: Mode
|
||||
state_name: pt3080ModeConstellation
|
||||
states:
|
||||
- { descr: 'qpsk', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'qam16', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'qam64', graph: 1, value: 2, generic: 0 }
|
||||
-
|
||||
oid: pt3080OutputMode
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.4.1.{{ $index }}'
|
||||
descr: RF Output Mode
|
||||
group: Output
|
||||
state_name: pt3080OutputMode
|
||||
states:
|
||||
- { descr: 'normal', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'standby', graph: 1, value: 1, generic: 1 }
|
||||
-
|
||||
oid: pt3080TSoIPRx1Status
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.10.17.{{ $index }}'
|
||||
descr: TSoIP 1 Receiver Status
|
||||
group: TSoIP
|
||||
state_name: pt3080TSoIPRx1Status
|
||||
states:
|
||||
- { descr: 'locked', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'unlocked', graph: 1, value: 1, generic: 2 }
|
||||
- { descr: 'disabled', graph: 1, value: 2, generic: 3 }
|
||||
-
|
||||
oid: pt3080TSoIPRx2Status
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.10.47.{{ $index }}'
|
||||
descr: TSoIP 2 Receiver Status
|
||||
group: TSoIP
|
||||
state_name: pt3080TSoIPRx2Status
|
||||
states:
|
||||
- { descr: 'locked', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'unlocked', graph: 1, value: 1, generic: 2 }
|
||||
- { descr: 'disabled', graph: 1, value: 2, generic: 3 }
|
||||
-
|
||||
oid: pt3080ModeGuardInterval
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.2.7.{{ $index }}'
|
||||
descr: OFDM Guard Interval
|
||||
group: Mode
|
||||
state_name: pt3080ModeGuardInterval
|
||||
states:
|
||||
- { descr: 'guard-1/32', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'guard-1/16', graph: 1, value: 1, generic: 0 }
|
||||
- { descr: 'guard-1/8', graph: 1, value: 2, generic: 0 }
|
||||
- { descr: 'guard-1/4', graph: 1, value: 3, generic: 0 }
|
||||
-
|
||||
oid: pt3080Modeifft
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.2.3.{{ $index }}'
|
||||
descr: OFDM IFFT Mode
|
||||
group: Mode
|
||||
state_name: pt3080Modeifft
|
||||
states:
|
||||
- { descr: 'mode-2k', graph: 1, value: 0, generic: 0 }
|
||||
- { descr: 'mode-4k', graph: 1, value: 1, generic: 2 }
|
||||
- { descr: 'mode-8k', graph: 1, value: 2, generic: 0 }
|
||||
dbm:
|
||||
data:
|
||||
-
|
||||
oid: pt3080OutputEffectiveLevel
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.4.17.{{ $index }}'
|
||||
index: 0
|
||||
descr: 'Effective RF Output Level'
|
||||
divisor: 100
|
||||
-
|
||||
oid: pt3080OutputActualLevel
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.4.18.{{ $index }}'
|
||||
index: 1
|
||||
descr: 'Actual RF Output Level'
|
||||
divisor: 100
|
||||
-
|
||||
oid: pt3080OutputRfDetectedActualLevel
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.4.19.{{ $index }}'
|
||||
index: 2
|
||||
descr: 'Detected RF Output Level'
|
||||
divisor: 100
|
||||
delay:
|
||||
data:
|
||||
-
|
||||
oid: pt3080ModeNetworkDelayHP
|
||||
num_oid: '.1.3.6.1.4.1.18086.3080.2.20.{{ $index }}'
|
||||
descr: 'Network delay of HP TS'
|
13
includes/definitions/protelevision-t1.yaml
Normal file
13
includes/definitions/protelevision-t1.yaml
Normal file
@ -0,0 +1,13 @@
|
||||
os: protelevision-t1
|
||||
text: 'DVB-T Transmitter'
|
||||
type: network
|
||||
icon: protelevision
|
||||
group: protelevision
|
||||
mib_dir:
|
||||
- protelevision
|
||||
over:
|
||||
- { graph: device_dbm, text: 'dBm' }
|
||||
- { graph: device_wireless_rate, text: 'On Air TS Bitrate' }
|
||||
discovery:
|
||||
- sysObjectID:
|
||||
- .1.3.6.1.4.1.18086.8
|
5
includes/polling/os/protelevision-t1.inc.php
Normal file
5
includes/polling/os/protelevision-t1.inc.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
$protelevision_tmp = snmp_get_multi_oid($device, 'pt3080SystemInstrumentType.0 pt3080SystemInstrumentSWRev.0 pt3080SystemInstrumentKU.0', '-OUQs', 'PT3080-MIB');
|
||||
$hardware = $protelevision_tmp['pt3080SystemInstrumentType.0'];
|
||||
$version = $protelevision_tmp['pt3080SystemInstrumentSWRev.0'];
|
||||
$serial = $protelevision_tmp['pt3080SystemInstrumentKU.0'];
|
48
mibs/protelevision/PT-MIB
Normal file
48
mibs/protelevision/PT-MIB
Normal file
@ -0,0 +1,48 @@
|
||||
-- PT-MIB
|
||||
-- This is the root MIB file of PT.
|
||||
--
|
||||
|
||||
PT-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, enterprises
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
pt MODULE-IDENTITY
|
||||
LAST-UPDATED "201408081200Z"
|
||||
ORGANIZATION "Protelevision Technologies, Denmark"
|
||||
CONTACT-INFO
|
||||
"Contact:
|
||||
|
||||
Web: http://www.protelevision.com
|
||||
|
||||
Address: Valhoejs Alle 176, DK-2610 Roedovre, Denmark
|
||||
Telephone: +45 44700000
|
||||
Fax: +45 44700001"
|
||||
|
||||
DESCRIPTION
|
||||
"This is the root MIB module for PT with OID of
|
||||
{iso org dod internet private enterprises 18086}.
|
||||
|
||||
Copyright (c) 2004 Protelevision Technologies A/S. All rights reserved.
|
||||
Reproduction of this document is authorized on the condition
|
||||
that the foregoing copyright notice is included.
|
||||
|
||||
IANA allocated this enterprise OID (object identifier) for the
|
||||
exclusive use of Protelevision Technologies A/S (PT).
|
||||
Other than internet network equipment
|
||||
distributed or licensed by PT, no other party has any right
|
||||
what-so-ever to distribute or license internet network equipment
|
||||
which responds to the PT enterprise OID or its subsidiary
|
||||
branches. PT reserves the right to criminally prosecute and/or
|
||||
to seek civil damages from anyone fraudently using the PT
|
||||
enterprise OID to the full extent of the law."
|
||||
|
||||
REVISION
|
||||
"201408081200Z"
|
||||
|
||||
DESCRIPTION
|
||||
"PTT General Device MIB File"
|
||||
|
||||
::= {enterprises 18086}
|
||||
END
|
9498
mibs/protelevision/PT3080-MIB
Normal file
9498
mibs/protelevision/PT3080-MIB
Normal file
File diff suppressed because it is too large
Load Diff
2548
tests/data/protelevision-t1.json
Normal file
2548
tests/data/protelevision-t1.json
Normal file
File diff suppressed because it is too large
Load Diff
354
tests/snmpsim/protelevision-t1.snmprec
Normal file
354
tests/snmpsim/protelevision-t1.snmprec
Normal file
@ -0,0 +1,354 @@
|
||||
1.3.6.1.2.1.1.1.0|4|\"DVB-T transmitter\
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.18086.8
|
||||
1.3.6.1.2.1.1.3.0|67|775180793
|
||||
1.3.6.1.2.1.1.4.0|4|<private>
|
||||
1.3.6.1.2.1.1.5.0|4|<private>
|
||||
1.3.6.1.2.1.1.6.0|4|<private>
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|lo
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|eth4
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|eth0
|
||||
1.3.6.1.2.1.2.2.1.2.4|4|eth1
|
||||
1.3.6.1.2.1.2.2.1.2.5|4|eth2
|
||||
1.3.6.1.2.1.2.2.1.2.6|4|eth3
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|24
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.3|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.4|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.5|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.6|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|16436
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.3|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.4|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.5|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.6|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|0013590086BA
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|0013590086B6
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|0013590086B7
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|0013590086B8
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|0013590086B9
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.3|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.4|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.5|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.6|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.3|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.4|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.5|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.6|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.2|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.3|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.4|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.5|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.6|67|0
|
||||
1.3.6.1.2.1.2.2.1.13.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.2|65|1550196
|
||||
1.3.6.1.2.1.2.2.1.13.3|65|1550195
|
||||
1.3.6.1.2.1.2.2.1.13.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.5|65|1550196
|
||||
1.3.6.1.2.1.2.2.1.13.6|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.5|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.6|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.5|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.6|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.3|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.4|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.5|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.6|65|0
|
||||
1.3.6.1.2.1.4.3.0|65|4294967295
|
||||
1.3.6.1.2.1.4.4.0|65|0
|
||||
1.3.6.1.2.1.4.5.0|65|0
|
||||
1.3.6.1.2.1.4.6.0|65|0
|
||||
1.3.6.1.2.1.4.7.0|65|0
|
||||
1.3.6.1.2.1.4.8.0|65|0
|
||||
1.3.6.1.2.1.4.9.0|65|4294967295
|
||||
1.3.6.1.2.1.4.10.0|65|93080719
|
||||
1.3.6.1.2.1.4.11.0|65|0
|
||||
1.3.6.1.2.1.4.12.0|65|26
|
||||
1.3.6.1.2.1.4.14.0|65|0
|
||||
1.3.6.1.2.1.4.15.0|65|0
|
||||
1.3.6.1.2.1.4.16.0|65|0
|
||||
1.3.6.1.2.1.4.17.0|65|0
|
||||
1.3.6.1.2.1.4.18.0|65|0
|
||||
1.3.6.1.2.1.4.19.0|65|0
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.95.2|2|5
|
||||
1.3.6.1.2.1.4.20.1.2.10.0.98.12|2|2
|
||||
1.3.6.1.2.1.4.20.1.2.10.3.200.2|2|3
|
||||
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
|
||||
1.3.6.1.2.1.4.20.1.3.10.0.95.2|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.10.0.98.12|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.10.3.200.2|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
|
||||
1.3.6.1.2.1.4.22.1.2.5.10.0.95.1|4x|002EC7DFBBD6
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|88837172
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|17268706356
|
||||
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.8.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.1|65|88837172
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|17268706356
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|93079550
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|93079550
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|26
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.26.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.1|65|93079524
|
||||
1.3.6.1.2.1.4.31.1.1.31.1|70|93079524
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|4291137752
|
||||
1.3.6.1.2.1.4.31.1.1.35.1|70|17176039640
|
||||
1.3.6.1.2.1.4.31.1.1.38.1|65|129297
|
||||
1.3.6.1.2.1.4.31.1.1.39.1|70|129297
|
||||
1.3.6.1.2.1.4.31.1.1.42.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.43.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.44.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.45.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.1|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.1|66|60000
|
||||
1.3.6.1.2.1.5.1.0|65|889669
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|13
|
||||
1.3.6.1.2.1.5.4.0|65|0
|
||||
1.3.6.1.2.1.5.5.0|65|0
|
||||
1.3.6.1.2.1.5.6.0|65|0
|
||||
1.3.6.1.2.1.5.7.0|65|0
|
||||
1.3.6.1.2.1.5.8.0|65|889656
|
||||
1.3.6.1.2.1.5.9.0|65|0
|
||||
1.3.6.1.2.1.5.10.0|65|0
|
||||
1.3.6.1.2.1.5.11.0|65|0
|
||||
1.3.6.1.2.1.5.12.0|65|0
|
||||
1.3.6.1.2.1.5.13.0|65|0
|
||||
1.3.6.1.2.1.5.14.0|65|889671
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|15
|
||||
1.3.6.1.2.1.5.17.0|65|0
|
||||
1.3.6.1.2.1.5.18.0|65|0
|
||||
1.3.6.1.2.1.5.19.0|65|0
|
||||
1.3.6.1.2.1.5.20.0|65|0
|
||||
1.3.6.1.2.1.5.21.0|65|0
|
||||
1.3.6.1.2.1.5.22.0|65|889656
|
||||
1.3.6.1.2.1.5.23.0|65|0
|
||||
1.3.6.1.2.1.5.24.0|65|0
|
||||
1.3.6.1.2.1.5.25.0|65|0
|
||||
1.3.6.1.2.1.5.26.0|65|0
|
||||
1.3.6.1.2.1.5.29.1.2.1|65|889669
|
||||
1.3.6.1.2.1.5.29.1.2.2|65|0
|
||||
1.3.6.1.2.1.5.29.1.3.1|65|0
|
||||
1.3.6.1.2.1.5.29.1.3.2|65|0
|
||||
1.3.6.1.2.1.5.29.1.4.1|65|889671
|
||||
1.3.6.1.2.1.5.29.1.4.2|65|0
|
||||
1.3.6.1.2.1.5.29.1.5.1|65|0
|
||||
1.3.6.1.2.1.5.29.1.5.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.3|65|13
|
||||
1.3.6.1.2.1.5.30.1.3.1.8|65|889656
|
||||
1.3.6.1.2.1.5.30.1.4.1.0|65|889656
|
||||
1.3.6.1.2.1.5.30.1.4.1.3|65|15
|
||||
1.3.6.1.2.1.6.5.0|65|58803
|
||||
1.3.6.1.2.1.6.6.0|65|62955
|
||||
1.3.6.1.2.1.6.7.0|65|5
|
||||
1.3.6.1.2.1.6.8.0|65|83778
|
||||
1.3.6.1.2.1.6.9.0|66|6
|
||||
1.3.6.1.2.1.6.10.0|65|90488596
|
||||
1.3.6.1.2.1.6.11.0|65|90771809
|
||||
1.3.6.1.2.1.6.12.0|65|352
|
||||
1.3.6.1.2.1.6.14.0|65|0
|
||||
1.3.6.1.2.1.6.15.0|65|58832
|
||||
1.3.6.1.2.1.7.1.0|65|4292270398
|
||||
1.3.6.1.2.1.7.2.0|65|14
|
||||
1.3.6.1.2.1.7.3.0|65|0
|
||||
1.3.6.1.2.1.7.4.0|65|1289956
|
||||
1.3.6.1.2.1.11.1.0|65|1289506
|
||||
1.3.6.1.2.1.11.2.0|65|1289504
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
1.3.6.1.2.1.11.4.0|65|1
|
||||
1.3.6.1.2.1.11.5.0|65|0
|
||||
1.3.6.1.2.1.11.6.0|65|0
|
||||
1.3.6.1.2.1.11.8.0|65|0
|
||||
1.3.6.1.2.1.11.9.0|65|0
|
||||
1.3.6.1.2.1.11.10.0|65|0
|
||||
1.3.6.1.2.1.11.11.0|65|0
|
||||
1.3.6.1.2.1.11.12.0|65|0
|
||||
1.3.6.1.2.1.11.13.0|65|8588684
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|564776
|
||||
1.3.6.1.2.1.11.16.0|65|3429
|
||||
1.3.6.1.2.1.11.17.0|65|0
|
||||
1.3.6.1.2.1.11.18.0|65|0
|
||||
1.3.6.1.2.1.11.19.0|65|0
|
||||
1.3.6.1.2.1.11.20.0|65|0
|
||||
1.3.6.1.2.1.11.21.0|65|0
|
||||
1.3.6.1.2.1.11.22.0|65|0
|
||||
1.3.6.1.2.1.11.24.0|65|0
|
||||
1.3.6.1.2.1.11.25.0|65|0
|
||||
1.3.6.1.2.1.11.26.0|65|0
|
||||
1.3.6.1.2.1.11.27.0|65|0
|
||||
1.3.6.1.2.1.11.28.0|65|1289504
|
||||
1.3.6.1.2.1.11.29.0|65|2
|
||||
1.3.6.1.2.1.11.30.0|2|1
|
||||
1.3.6.1.2.1.11.31.0|65|0
|
||||
1.3.6.1.2.1.11.32.0|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|lo
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|eth4
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|eth0
|
||||
1.3.6.1.2.1.31.1.1.1.1.4|4|eth1
|
||||
1.3.6.1.2.1.31.1.1.1.1.5|4|eth2
|
||||
1.3.6.1.2.1.31.1.1.1.1.6|4|eth3
|
||||
1.3.6.1.2.1.31.1.1.1.2.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.6|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.6|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.6|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.3|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.4|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.5|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.6|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.1|70|21456818688
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|99217728
|
||||
1.3.6.1.2.1.31.1.1.1.6.3|70|3273252252
|
||||
1.3.6.1.2.1.31.1.1.1.6.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.5|70|506521478
|
||||
1.3.6.1.2.1.31.1.1.1.6.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|90036591
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|1550286
|
||||
1.3.6.1.2.1.31.1.1.1.7.3|70|4292658861
|
||||
1.3.6.1.2.1.31.1.1.1.7.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.5|70|4327048
|
||||
1.3.6.1.2.1.31.1.1.1.7.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|21456818688
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.3|70|7781160
|
||||
1.3.6.1.2.1.31.1.1.1.10.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.5|70|1047003118
|
||||
1.3.6.1.2.1.31.1.1.1.10.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|90036591
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.3|70|129686
|
||||
1.3.6.1.2.1.31.1.1.1.11.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.5|70|3060322
|
||||
1.3.6.1.2.1.31.1.1.1.11.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.3|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.4|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.5|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.6|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.1|66|10
|
||||
1.3.6.1.2.1.31.1.1.1.15.2|66|100
|
||||
1.3.6.1.2.1.31.1.1.1.15.3|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.4|66|10
|
||||
1.3.6.1.2.1.31.1.1.1.15.5|66|100
|
||||
1.3.6.1.2.1.31.1.1.1.15.6|66|10
|
||||
1.3.6.1.2.1.31.1.1.1.16.1|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.2|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.3|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.4|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.5|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.6|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.2|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.3|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.4|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.5|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.6|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.3|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.4|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.5|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.6|4|
|
||||
1.3.6.1.2.1.31.1.1.1.19.1|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.2|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.3|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.4|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.5|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.6|67|0
|
||||
1.3.6.1.4.1.18086.3080.1.1.0|4|3303302
|
||||
1.3.6.1.4.1.18086.3080.1.2.0|4|PT3080
|
||||
1.3.6.1.4.1.18086.3080.1.3.0|4|SWPTTDVBTT2_P3_1_02_157 build 1441109757
|
||||
1.3.6.1.4.1.18086.3080.1.31.0|2|2
|
||||
1.3.6.1.4.1.18086.3080.1.32.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.2.3.0|2|2
|
||||
1.3.6.1.4.1.18086.3080.2.4.0|2|2
|
||||
1.3.6.1.4.1.18086.3080.2.5.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.2.6.0|2|2
|
||||
1.3.6.1.4.1.18086.3080.2.7.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.2.20.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.3.36.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.3.37.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.3.38.0|2|4
|
||||
1.3.6.1.4.1.18086.3080.3.39.0|2|5
|
||||
1.3.6.1.4.1.18086.3080.3.41.0|2|22657
|
||||
1.3.6.1.4.1.18086.3080.4.1.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.4.2.0|2|530000000
|
||||
1.3.6.1.4.1.18086.3080.4.6.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.4.17.0|2|40
|
||||
1.3.6.1.4.1.18086.3080.4.18.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.4.19.0|2|70
|
||||
1.3.6.1.4.1.18086.3080.7.1.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.7.4.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.7.15.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.7.16.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.7.17.0|2|1
|
||||
1.3.6.1.4.1.18086.3080.7.18.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.7.19.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.10.17.0|2|0
|
||||
1.3.6.1.4.1.18086.3080.10.47.0|2|2
|
Reference in New Issue
Block a user