mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
ports ifPhysAddress use MAC helper (#15478)
* Ports min polled period of 1 Prevent divide by 0 Use Mac utility * fix bad snmprec for airos-af-ltu * Update a large amount of invalid mac addresses either the script is capturing them wrong or users are mangling them * More updated test data * Update test data with bad input * Fix ones using encoded <private> and attempt to fix capture * Update awplus data * restore missing data * update other DNOS * Fix ones using encoded <private> and attempt to fix capture * Fix ones using encoded <private> and attempt to fix capture * fix typo * Update some data * update data * update ruijie
This commit is contained in:
@@ -147,11 +147,11 @@ class ModuleTestHelper
|
||||
|
||||
$snmp_options = ['-OUneb', '-Ih', '-m', '+' . $oid_data['mib']];
|
||||
if ($oid_data['method'] == 'walk') {
|
||||
$data = \SnmpQuery::options($snmp_options)->context($context)->mibDir($oid_data['mibdir'])->walk($oid_data['oid']);
|
||||
$data = \SnmpQuery::options($snmp_options)->context($context)->mibDir($oid_data['mibdir'] ?? null)->walk($oid_data['oid']);
|
||||
} elseif ($oid_data['method'] == 'get') {
|
||||
$data = \SnmpQuery::options($snmp_options)->context($context)->mibDir($oid_data['mibdir'])->get($oid_data['oid']);
|
||||
$data = \SnmpQuery::options($snmp_options)->context($context)->mibDir($oid_data['mibdir'] ?? null)->get($oid_data['oid']);
|
||||
} elseif ($oid_data['method'] == 'getnext') {
|
||||
$data = \SnmpQuery::options($snmp_options)->context($context)->mibDir($oid_data['mibdir'])->next($oid_data['oid']);
|
||||
$data = \SnmpQuery::options($snmp_options)->context($context)->mibDir($oid_data['mibdir'] ?? null)->next($oid_data['oid']);
|
||||
}
|
||||
|
||||
if (isset($data) && $data->isValid()) {
|
||||
@@ -203,7 +203,7 @@ class ModuleTestHelper
|
||||
];
|
||||
foreach ($snmp_matches[0] as $index => $line) {
|
||||
preg_match("/'-m' '\+?([a-zA-Z0-9:\-]+)'/", $line, $mib_matches);
|
||||
$mib = $mib_matches[1];
|
||||
$mib = $mib_matches[1] ?? null;
|
||||
preg_match("/'-M' '\+?([a-zA-Z0-9:\-\/]+)'/", $line, $mibdir_matches);
|
||||
$mibdir = $mibdir_matches[1];
|
||||
$method = $snmp_matches[1][$index];
|
||||
@@ -512,6 +512,19 @@ class ModuleTestHelper
|
||||
$data[$oid] = implode('|', $parts);
|
||||
}
|
||||
}
|
||||
|
||||
// IF-MIB::ifPhysAddress, Make sure it is in hex format
|
||||
foreach ($data as $oid => $oid_data) {
|
||||
if (str_starts_with($oid, '1.3.6.1.2.1.2.2.1.6.')) {
|
||||
$parts = explode('|', $oid_data, 3);
|
||||
$mac = Mac::parse($parts[2])->hex();
|
||||
if ($mac) {
|
||||
$parts[2] = $mac;
|
||||
$parts[1] = '4x';
|
||||
$data[$oid] = implode('|', $parts);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -4,6 +4,7 @@ use LibreNMS\Config;
|
||||
use LibreNMS\Enum\PortAssociationMode;
|
||||
use LibreNMS\RRD\RrdDefinition;
|
||||
use LibreNMS\Util\Debug;
|
||||
use LibreNMS\Util\Mac;
|
||||
use LibreNMS\Util\Number;
|
||||
|
||||
// Build SNMP Cache Array
|
||||
@@ -589,9 +590,8 @@ foreach ($ports as $port) {
|
||||
}
|
||||
|
||||
// rewrite the ifPhysAddress
|
||||
if (strpos($this_port['ifPhysAddress'] ?? '', ':')) {
|
||||
$mac_split = explode(':', $this_port['ifPhysAddress']);
|
||||
$this_port['ifPhysAddress'] = zeropad($mac_split[0]) . zeropad($mac_split[1]) . zeropad($mac_split[2]) . zeropad($mac_split[3]) . zeropad($mac_split[4] ?? '') . zeropad($mac_split[5] ?? '');
|
||||
if (isset($this_port['ifPhysAddress'])) {
|
||||
$this_port['ifPhysAddress'] = Mac::parse($this_port['ifPhysAddress'])->hex();
|
||||
}
|
||||
|
||||
// use HC values if they are available
|
||||
|
||||
@@ -1237,8 +1237,8 @@
|
||||
"ifName": "br0",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -1337,8 +1337,8 @@
|
||||
"ifName": "br2",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1448,7 +1448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "37383a38613a",
|
||||
"ifPhysAddress": "788a205f1dd6",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "ath0",
|
||||
"ifPhysAddress": "37613a38613a",
|
||||
"ifPhysAddress": "7a8a205f1dd6",
|
||||
"ifLastChange": 1508,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1637,8 +1637,8 @@
|
||||
"ifName": "br0",
|
||||
"portName": null,
|
||||
"ifIndex": 10,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -1648,7 +1648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "br0",
|
||||
"ifPhysAddress": "37613a38613a",
|
||||
"ifPhysAddress": "7a8a205f1dd6",
|
||||
"ifLastChange": 1508,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1737,8 +1737,8 @@
|
||||
"ifName": "br2",
|
||||
"portName": null,
|
||||
"ifIndex": 11,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1748,7 +1748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "br2",
|
||||
"ifPhysAddress": "37383a38613a",
|
||||
"ifPhysAddress": "788a205f1dd6",
|
||||
"ifLastChange": 1508,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "AKCP",
|
||||
"ifPhysAddress": "303a623a6463",
|
||||
"ifPhysAddress": "000bdc34d106",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -23648,7 +23648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth1",
|
||||
"ifPhysAddress": "303a31623a36",
|
||||
"ifPhysAddress": "001b6e0136a7",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23748,7 +23748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "303a31623a36",
|
||||
"ifPhysAddress": "001b6e0136a6",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "lo",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -2948,7 +2948,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "trunk to switchname2",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd72",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3048,7 +3048,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet2",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd73",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3148,7 +3148,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet3",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd74",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3248,7 +3248,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet4",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd75",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3348,7 +3348,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet5",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd76",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3448,7 +3448,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet6",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd77",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3548,7 +3548,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet7",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd78",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3648,7 +3648,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet8",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd79",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3748,7 +3748,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet9",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd7a",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3848,7 +3848,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet10",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd7b",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet11",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd7c",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet12",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd7d",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4148,7 +4148,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet13",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd7e",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4248,7 +4248,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet14",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd7f",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4348,7 +4348,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet15",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd80",
|
||||
"ifLastChange": 8084,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4448,7 +4448,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet16",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd81",
|
||||
"ifLastChange": 7902,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4548,7 +4548,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet17",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd82",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4648,7 +4648,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet18",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd83",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4748,7 +4748,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet19",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd84",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4848,7 +4848,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet20",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd85",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4948,7 +4948,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet21",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd86",
|
||||
"ifLastChange": 8051,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5048,7 +5048,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "uplink",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd87",
|
||||
"ifLastChange": 7980,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5148,7 +5148,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "MLAG-SW1-SW2 #1of2",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd88",
|
||||
"ifLastChange": 8377,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5248,7 +5248,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "MLAG-SW1-SW2 #2of2",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd89",
|
||||
"ifLastChange": 8377,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5348,7 +5348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Management1",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd70",
|
||||
"ifLastChange": 28193,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5448,7 +5448,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "MLAG-SW1-SW2",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd88",
|
||||
"ifLastChange": 8580,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5548,7 +5548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "Uplink",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd87",
|
||||
"ifLastChange": 1145467,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5648,7 +5648,7 @@
|
||||
"ifMtu": 9214,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "trunk to switchname2",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd72",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5748,7 +5748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l3ipvlan",
|
||||
"ifAlias": "Vlan4094",
|
||||
"ifPhysAddress": "303a31633a37",
|
||||
"ifPhysAddress": "001c73b3bd71",
|
||||
"ifLastChange": 6488,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -448,7 +448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "303a65303a38",
|
||||
"ifPhysAddress": "00e08629a0f4",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -548,7 +548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth1",
|
||||
"ifPhysAddress": "303a65303a38",
|
||||
"ifPhysAddress": "00e08629a0f5",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+40
-40
@@ -4537,8 +4537,8 @@
|
||||
"ifName": "lo",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4737,8 +4737,8 @@
|
||||
"ifName": "vlan1",
|
||||
"portName": null,
|
||||
"ifIndex": 301,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4837,8 +4837,8 @@
|
||||
"ifName": "vlan2",
|
||||
"portName": null,
|
||||
"ifIndex": 302,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4937,8 +4937,8 @@
|
||||
"ifName": "vlan4",
|
||||
"portName": null,
|
||||
"ifIndex": 304,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5037,8 +5037,8 @@
|
||||
"ifName": "vlan20",
|
||||
"portName": null,
|
||||
"ifIndex": 320,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5137,8 +5137,8 @@
|
||||
"ifName": "vlan99",
|
||||
"portName": null,
|
||||
"ifIndex": 399,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5237,8 +5237,8 @@
|
||||
"ifName": "vlan100",
|
||||
"portName": null,
|
||||
"ifIndex": 400,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5337,8 +5337,8 @@
|
||||
"ifName": "vlan105",
|
||||
"portName": null,
|
||||
"ifIndex": 405,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5437,8 +5437,8 @@
|
||||
"ifName": "vlan3620",
|
||||
"portName": null,
|
||||
"ifIndex": 3920,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -6237,8 +6237,8 @@
|
||||
"ifName": "port1.1.5",
|
||||
"portName": null,
|
||||
"ifIndex": 5105,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -6337,8 +6337,8 @@
|
||||
"ifName": "port1.1.6",
|
||||
"portName": null,
|
||||
"ifIndex": 5106,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -6937,8 +6937,8 @@
|
||||
"ifName": "port1.1.12",
|
||||
"portName": null,
|
||||
"ifIndex": 5112,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -7137,8 +7137,8 @@
|
||||
"ifName": "port1.8.5",
|
||||
"portName": null,
|
||||
"ifIndex": 5805,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -7837,8 +7837,8 @@
|
||||
"ifName": "port2.1.5",
|
||||
"portName": null,
|
||||
"ifIndex": 6105,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -7937,8 +7937,8 @@
|
||||
"ifName": "port2.1.6",
|
||||
"portName": null,
|
||||
"ifIndex": 6106,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -8137,8 +8137,8 @@
|
||||
"ifName": "port2.1.8",
|
||||
"portName": null,
|
||||
"ifIndex": 6108,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -8237,8 +8237,8 @@
|
||||
"ifName": "port2.1.9",
|
||||
"portName": null,
|
||||
"ifIndex": 6109,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -8337,8 +8337,8 @@
|
||||
"ifName": "port2.1.10",
|
||||
"portName": null,
|
||||
"ifIndex": 6110,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -8537,8 +8537,8 @@
|
||||
"ifName": "port2.1.12",
|
||||
"portName": null,
|
||||
"ifIndex": 6112,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -8737,8 +8737,8 @@
|
||||
"ifName": "port2.8.5",
|
||||
"portName": null,
|
||||
"ifIndex": 6805,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
|
||||
@@ -8737,8 +8737,8 @@
|
||||
"ifName": "lo",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -8837,8 +8837,8 @@
|
||||
"ifName": "eth0",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -8848,7 +8848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "446174610000",
|
||||
"ifPhysAddress": "446107040601",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8937,8 +8937,8 @@
|
||||
"ifName": "of0",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9037,8 +9037,8 @@
|
||||
"ifName": "vlan1",
|
||||
"portName": null,
|
||||
"ifIndex": 301,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -9137,8 +9137,8 @@
|
||||
"ifName": "vlan5",
|
||||
"portName": null,
|
||||
"ifIndex": 305,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9237,8 +9237,8 @@
|
||||
"ifName": "vlan30",
|
||||
"portName": null,
|
||||
"ifIndex": 330,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9337,8 +9337,8 @@
|
||||
"ifName": "vlan3600",
|
||||
"portName": null,
|
||||
"ifIndex": 3900,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9437,8 +9437,8 @@
|
||||
"ifName": "vlan3603",
|
||||
"portName": null,
|
||||
"ifIndex": 3903,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9537,8 +9537,8 @@
|
||||
"ifName": "vlan3604",
|
||||
"portName": null,
|
||||
"ifIndex": 3904,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9637,8 +9637,8 @@
|
||||
"ifName": "vlan3610",
|
||||
"portName": null,
|
||||
"ifIndex": 3910,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9737,8 +9737,8 @@
|
||||
"ifName": "vlan3620",
|
||||
"portName": null,
|
||||
"ifIndex": 3920,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -9837,8 +9837,8 @@
|
||||
"ifName": "vlan3699",
|
||||
"portName": null,
|
||||
"ifIndex": 3999,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -12837,8 +12837,8 @@
|
||||
"ifName": "port1.0.15",
|
||||
"portName": null,
|
||||
"ifIndex": 5015,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -12937,8 +12937,8 @@
|
||||
"ifName": "port1.0.16",
|
||||
"portName": null,
|
||||
"ifIndex": 5016,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13037,8 +13037,8 @@
|
||||
"ifName": "port1.0.17",
|
||||
"portName": null,
|
||||
"ifIndex": 5017,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13137,8 +13137,8 @@
|
||||
"ifName": "port1.0.18",
|
||||
"portName": null,
|
||||
"ifIndex": 5018,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13237,8 +13237,8 @@
|
||||
"ifName": "port1.0.19",
|
||||
"portName": null,
|
||||
"ifIndex": 5019,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13337,8 +13337,8 @@
|
||||
"ifName": "port1.0.20",
|
||||
"portName": null,
|
||||
"ifIndex": 5020,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13437,8 +13437,8 @@
|
||||
"ifName": "port1.0.21",
|
||||
"portName": null,
|
||||
"ifIndex": 5021,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13537,8 +13537,8 @@
|
||||
"ifName": "port1.0.22",
|
||||
"portName": null,
|
||||
"ifIndex": 5022,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13837,8 +13837,8 @@
|
||||
"ifName": "port1.0.25",
|
||||
"portName": null,
|
||||
"ifIndex": 5025,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -13937,8 +13937,8 @@
|
||||
"ifName": "port1.0.26",
|
||||
"portName": null,
|
||||
"ifIndex": 5026,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -14037,8 +14037,8 @@
|
||||
"ifName": "port1.0.27",
|
||||
"portName": null,
|
||||
"ifIndex": 5027,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -14137,8 +14137,8 @@
|
||||
"ifName": "port1.0.28",
|
||||
"portName": null,
|
||||
"ifIndex": 5028,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -14248,7 +14248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "port1.1.1",
|
||||
"ifPhysAddress": "446174610000",
|
||||
"ifPhysAddress": "446107040601",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14348,7 +14348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "port1.1.5",
|
||||
"ifPhysAddress": "446174610000",
|
||||
"ifPhysAddress": "446107040601",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15837,8 +15837,8 @@
|
||||
"ifName": "port2.0.15",
|
||||
"portName": null,
|
||||
"ifIndex": 6015,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -15937,8 +15937,8 @@
|
||||
"ifName": "port2.0.16",
|
||||
"portName": null,
|
||||
"ifIndex": 6016,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16037,8 +16037,8 @@
|
||||
"ifName": "port2.0.17",
|
||||
"portName": null,
|
||||
"ifIndex": 6017,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16137,8 +16137,8 @@
|
||||
"ifName": "port2.0.18",
|
||||
"portName": null,
|
||||
"ifIndex": 6018,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16237,8 +16237,8 @@
|
||||
"ifName": "port2.0.19",
|
||||
"portName": null,
|
||||
"ifIndex": 6019,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16337,8 +16337,8 @@
|
||||
"ifName": "port2.0.20",
|
||||
"portName": null,
|
||||
"ifIndex": 6020,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16437,8 +16437,8 @@
|
||||
"ifName": "port2.0.21",
|
||||
"portName": null,
|
||||
"ifIndex": 6021,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16537,8 +16537,8 @@
|
||||
"ifName": "port2.0.22",
|
||||
"portName": null,
|
||||
"ifIndex": 6022,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16837,8 +16837,8 @@
|
||||
"ifName": "port2.0.25",
|
||||
"portName": null,
|
||||
"ifIndex": 6025,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -16937,8 +16937,8 @@
|
||||
"ifName": "port2.0.26",
|
||||
"portName": null,
|
||||
"ifIndex": 6026,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -17037,8 +17037,8 @@
|
||||
"ifName": "port2.0.27",
|
||||
"portName": null,
|
||||
"ifIndex": 6027,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -17137,8 +17137,8 @@
|
||||
"ifName": "port2.0.28",
|
||||
"portName": null,
|
||||
"ifIndex": 6028,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -17248,7 +17248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "port2.1.1",
|
||||
"ifPhysAddress": "446174610000",
|
||||
"ifPhysAddress": "446107040601",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17348,7 +17348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "port2.1.5",
|
||||
"ifPhysAddress": "446174610000",
|
||||
"ifPhysAddress": "446107040601",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+12
-12
@@ -1248,7 +1248,7 @@
|
||||
"ifMtu": 2000,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a672a",
|
||||
"ifLastChange": 646560,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1348,7 +1348,7 @@
|
||||
"ifMtu": 2000,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a672b",
|
||||
"ifLastChange": 643890,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1448,7 +1448,7 @@
|
||||
"ifMtu": 2000,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a672c",
|
||||
"ifLastChange": 646580,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 2000,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a672d",
|
||||
"ifLastChange": 629440,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1648,7 +1648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ibm370parChan",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 629450,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1748,7 +1748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "000631313f0d",
|
||||
"ifLastChange": 629440,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1848,7 +1848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a6727",
|
||||
"ifLastChange": 629450,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1948,7 +1948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a6728",
|
||||
"ifLastChange": 629450,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2048,7 +2048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a6729",
|
||||
"ifLastChange": 629450,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2148,7 +2148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a672a",
|
||||
"ifLastChange": 629450,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2248,7 +2248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a672b",
|
||||
"ifLastChange": 629450,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2348,7 +2348,7 @@
|
||||
"ifMtu": 2000,
|
||||
"ifType": "fastEtherFX",
|
||||
"ifAlias": "................................................................",
|
||||
"ifPhysAddress": "303a363a3331",
|
||||
"ifPhysAddress": "0006312a6726",
|
||||
"ifLastChange": 629550,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -3548,7 +3548,7 @@
|
||||
"ifMtu": 16004,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ciena Waveserver 100GigEthernet 1.1",
|
||||
"ifPhysAddress": "32633a33393a",
|
||||
"ifPhysAddress": "2c39c1080599",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3648,7 +3648,7 @@
|
||||
"ifMtu": 16004,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ciena Waveserver 100GigEthernet 1.2",
|
||||
"ifPhysAddress": "32633a33393a",
|
||||
"ifPhysAddress": "2c39c108059a",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3748,7 +3748,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ciena Waveserver 100GigEthernet 5",
|
||||
"ifPhysAddress": "32633a33393a",
|
||||
"ifPhysAddress": "2c39c10805a9",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3848,7 +3848,7 @@
|
||||
"ifMtu": 16004,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ciena Waveserver 100GigEthernet 12.1",
|
||||
"ifPhysAddress": "32633a33393a",
|
||||
"ifPhysAddress": "2c39c10805c5",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 16004,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ciena Waveserver 100GigEthernet 12.2",
|
||||
"ifPhysAddress": "32633a33393a",
|
||||
"ifPhysAddress": "2c39c10805c6",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+14
-14
@@ -1048,7 +1048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1148,7 +1148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth1",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1237,8 +1237,8 @@
|
||||
"ifName": "eth2",
|
||||
"portName": null,
|
||||
"ifIndex": 4,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1248,7 +1248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth2",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1337,8 +1337,8 @@
|
||||
"ifName": "eth3",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1348,7 +1348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth3",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1437,8 +1437,8 @@
|
||||
"ifName": "usb0",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -1448,7 +1448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "usb0",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "bond0",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1648,7 +1648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "bond0.102",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1748,7 +1748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "bond0.50",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+1
-1
@@ -448,7 +448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "None",
|
||||
"ifPhysAddress": "4c504241434b",
|
||||
"ifPhysAddress": "0a003ee0132b",
|
||||
"ifLastChange": 1120665,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+1
-1
@@ -148,7 +148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "management",
|
||||
"ifPhysAddress": "30303a35303a",
|
||||
"ifPhysAddress": "00505693d04f",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+232
-232
File diff suppressed because it is too large
Load Diff
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "33633a65663a",
|
||||
"ifPhysAddress": "3cef8c084e1e",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "303a32313a62",
|
||||
"ifPhysAddress": "0021b743f581",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -648,7 +648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "303a63303a66",
|
||||
"ifPhysAddress": "00c0ff658fac",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -848,7 +848,7 @@
|
||||
"ifMtu": 4096,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "mcmc",
|
||||
"ifPhysAddress": "323a63303a66",
|
||||
"ifPhysAddress": "02c0ff000000",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -948,7 +948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "bond0",
|
||||
"ifPhysAddress": "303a63303a66",
|
||||
"ifPhysAddress": "00c0ff658fac",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -3648,7 +3648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 1 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c1",
|
||||
"ifLastChange": 401515900,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3748,7 +3748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 2 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3848,7 +3848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 3 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c3",
|
||||
"ifLastChange": 38449343,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 4 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c4",
|
||||
"ifLastChange": 145808101,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 5 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c5",
|
||||
"ifLastChange": 402633615,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4148,7 +4148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 6 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c6",
|
||||
"ifLastChange": 400265991,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4248,7 +4248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 7 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c7",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4348,7 +4348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 8 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c8",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4448,7 +4448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 9 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c9",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4548,7 +4548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 10 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6ca",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4648,7 +4648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 11 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6cb",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4748,7 +4748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 12 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6cc",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4848,7 +4848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 13 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6cd",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -4948,7 +4948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 14 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6ce",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5048,7 +5048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 15 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6cf",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5148,7 +5148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 16 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d0",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5248,7 +5248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 17 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5348,7 +5348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 18 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5448,7 +5448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 19 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5548,7 +5548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 20 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d4",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5648,7 +5648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 21 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d5",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5748,7 +5748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 22 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d6",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5848,7 +5848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 23 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d7",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "430",
|
||||
"ifTrunk": null,
|
||||
@@ -5948,7 +5948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 24 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d8",
|
||||
"ifLastChange": 32105,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -6048,7 +6048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 25 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6d9",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -6148,7 +6148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 26 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6da",
|
||||
"ifLastChange": 415886206,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -6248,7 +6248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 27 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6db",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -6348,7 +6348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 Port 28 on Unit 1",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6dc",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7048,7 +7048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ipForward",
|
||||
"ifAlias": "D-Link Corporation DGS-1510-28 HW A1 firmware 1.50.021 rif0(10.20.11.5)",
|
||||
"ifPhysAddress": "31303a36323a",
|
||||
"ifPhysAddress": "1062ebd1a6c0",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+66
-66
@@ -16248,7 +16248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4164,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16348,7 +16348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16448,7 +16448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16548,7 +16548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16648,7 +16648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16748,7 +16748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16848,7 +16848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16948,7 +16948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17048,7 +17048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17148,7 +17148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17248,7 +17248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17348,7 +17348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17448,7 +17448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17548,7 +17548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17648,7 +17648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17748,7 +17748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17848,7 +17848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17948,7 +17948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18048,7 +18048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18148,7 +18148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18248,7 +18248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18348,7 +18348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18448,7 +18448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18548,7 +18548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18648,7 +18648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18748,7 +18748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18848,7 +18848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18948,7 +18948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19048,7 +19048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19148,7 +19148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 8220088,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19248,7 +19248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19348,7 +19348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19448,7 +19448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19548,7 +19548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19648,7 +19648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19748,7 +19748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19848,7 +19848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19948,7 +19948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20048,7 +20048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20148,7 +20148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20248,7 +20248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20348,7 +20348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20448,7 +20448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20548,7 +20548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20648,7 +20648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "01 NIC2",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20748,7 +20748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "02 NIC2",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20848,7 +20848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20948,7 +20948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21048,7 +21048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-cs2 Fo1/50-Po50 Uplink to Core",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 7576446,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21148,7 +21148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21248,7 +21248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4182,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21348,7 +21348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4182,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21448,7 +21448,7 @@
|
||||
"ifMtu": 9216,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-ag7 Fo1/53-Po53 VLTi",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6808,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21548,7 +21548,7 @@
|
||||
"ifMtu": 9216,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-ag7 Fo1/54-Po53 VLTi",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6810,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21748,7 +21748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-ag7 Ma1/1 VLT Backup Link",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6320,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21837,8 +21837,8 @@
|
||||
"ifName": "NULL 0",
|
||||
"portName": null,
|
||||
"ifIndex": 1233125376,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -23737,8 +23737,8 @@
|
||||
"ifName": "Port-channel 45",
|
||||
"portName": null,
|
||||
"ifIndex": 1258314240,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -23748,7 +23748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "01",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 5374,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23837,8 +23837,8 @@
|
||||
"ifName": "Port-channel 46",
|
||||
"portName": null,
|
||||
"ifIndex": 1258314752,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -23848,7 +23848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "02",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 5384,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23948,7 +23948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "abc-cs2 Po50 Uplink to Core",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 7576718,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24048,7 +24048,7 @@
|
||||
"ifMtu": 9216,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "abc-ag7 Po53 VLTi",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6808,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24248,7 +24248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "l3ipvlan",
|
||||
"ifAlias": "Management",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 7567976,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+10
-10
@@ -28937,8 +28937,8 @@
|
||||
"ifName": "ManagementEthernet 1/1",
|
||||
"portName": null,
|
||||
"ifIndex": 9437185,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -29037,8 +29037,8 @@
|
||||
"ifName": "ManagementEthernet 2/1",
|
||||
"portName": null,
|
||||
"ifIndex": 10485761,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -29137,8 +29137,8 @@
|
||||
"ifName": "NULL 0",
|
||||
"portName": null,
|
||||
"ifIndex": 1233125376,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -29237,8 +29237,8 @@
|
||||
"ifName": "Loopback 0",
|
||||
"portName": null,
|
||||
"ifIndex": 1241513984,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -30937,8 +30937,8 @@
|
||||
"ifName": "Vlan 1",
|
||||
"portName": null,
|
||||
"ifIndex": 1275068928,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
|
||||
+66
-66
@@ -21248,7 +21248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4164,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21448,7 +21448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21548,7 +21548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21648,7 +21648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21748,7 +21748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21948,7 +21948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22048,7 +22048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4166,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22148,7 +22148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22248,7 +22248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22448,7 +22448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22548,7 +22548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22648,7 +22648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4168,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22748,7 +22748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22948,7 +22948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23048,7 +23048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23148,7 +23148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23248,7 +23248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23448,7 +23448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4170,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23548,7 +23548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23648,7 +23648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23748,7 +23748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -23948,7 +23948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24048,7 +24048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24148,7 +24148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24248,7 +24248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4172,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24448,7 +24448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24548,7 +24548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24648,7 +24648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24748,7 +24748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -24948,7 +24948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 8220088,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25048,7 +25048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25148,7 +25148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4174,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25248,7 +25248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25448,7 +25448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25548,7 +25548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25648,7 +25648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25748,7 +25748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -25948,7 +25948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4176,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26048,7 +26048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26148,7 +26148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26248,7 +26248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26448,7 +26448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26548,7 +26548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26648,7 +26648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4178,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26748,7 +26748,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "01 NIC2",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -26948,7 +26948,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "02 NIC2",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -27048,7 +27048,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -27148,7 +27148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -27248,7 +27248,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-cs2 Fo1/50-Po50 Uplink to Core",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 7576446,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -27448,7 +27448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4180,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -27648,7 +27648,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4182,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -27848,7 +27848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "..",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 4182,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -28048,7 +28048,7 @@
|
||||
"ifMtu": 9216,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-ag7 Fo1/53-Po53 VLTi",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6808,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -28248,7 +28248,7 @@
|
||||
"ifMtu": 9216,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-ag7 Fo1/54-Po53 VLTi",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6810,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -30148,7 +30148,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "abc-ag7 Ma1/1 VLT Backup Link",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6320,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -30237,8 +30237,8 @@
|
||||
"ifName": "NULL 0",
|
||||
"portName": null,
|
||||
"ifIndex": 1233125376,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -32337,8 +32337,8 @@
|
||||
"ifName": "Port-channel 45",
|
||||
"portName": null,
|
||||
"ifIndex": 1258314240,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -32348,7 +32348,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "01",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 5374,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -32437,8 +32437,8 @@
|
||||
"ifName": "Port-channel 46",
|
||||
"portName": null,
|
||||
"ifIndex": 1258314752,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -32448,7 +32448,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "02",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 5384,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -32548,7 +32548,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "abc-cs2 Po50 Uplink to Core",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 7576718,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -32648,7 +32648,7 @@
|
||||
"ifMtu": 9216,
|
||||
"ifType": "ieee8023adLag",
|
||||
"ifAlias": "abc-ag7 Po53 VLTi",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 6808,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -32848,7 +32848,7 @@
|
||||
"ifMtu": 1554,
|
||||
"ifType": "l3ipvlan",
|
||||
"ifAlias": "Management",
|
||||
"ifPhysAddress": "65343a66303a",
|
||||
"ifPhysAddress": "e4f004e1671a",
|
||||
"ifLastChange": 7567976,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "lo",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 35,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "en",
|
||||
"ifPhysAddress": "34303a66353a",
|
||||
"ifPhysAddress": "40f520473823",
|
||||
"ifLastChange": 241,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -3037,8 +3037,8 @@
|
||||
"ifName": "Loopback",
|
||||
"portName": null,
|
||||
"ifIndex": 2013265920,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -3048,7 +3048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "Loopback",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3148,7 +3148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "fe80::901c:4dec:83e2:f9d4",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 21100,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3337,8 +3337,8 @@
|
||||
"ifName": "F2/2.1/1",
|
||||
"portName": null,
|
||||
"ifIndex": 2113143041,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "unknown",
|
||||
"ifOperStatus_prev": "unknown",
|
||||
@@ -3537,8 +3537,8 @@
|
||||
"ifName": "F2/1.1/1",
|
||||
"portName": null,
|
||||
"ifIndex": 2129920257,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "unknown",
|
||||
"ifOperStatus_prev": "unknown",
|
||||
@@ -3737,8 +3737,8 @@
|
||||
"ifName": "1/1/100",
|
||||
"portName": null,
|
||||
"ifIndex": 2132254948,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3837,8 +3837,8 @@
|
||||
"ifName": "1/1/101",
|
||||
"portName": null,
|
||||
"ifIndex": 2132254949,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3937,8 +3937,8 @@
|
||||
"ifName": "1/1/102",
|
||||
"portName": null,
|
||||
"ifIndex": 2132254950,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4137,8 +4137,8 @@
|
||||
"ifName": "1/1/104",
|
||||
"portName": null,
|
||||
"ifIndex": 2132254952,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4537,8 +4537,8 @@
|
||||
"ifName": "1/2/2",
|
||||
"portName": null,
|
||||
"ifIndex": 2134638850,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4637,8 +4637,8 @@
|
||||
"ifName": "1/3/2",
|
||||
"portName": null,
|
||||
"ifIndex": 2134638978,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5037,8 +5037,8 @@
|
||||
"ifName": "1/2.1/1",
|
||||
"portName": null,
|
||||
"ifIndex": 2146697473,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5137,8 +5137,8 @@
|
||||
"ifName": "1/3.1/1",
|
||||
"portName": null,
|
||||
"ifIndex": 2146697601,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5537,8 +5537,8 @@
|
||||
"ifName": "1/2+3/1 SC1",
|
||||
"portName": null,
|
||||
"ifIndex": 2147410305,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5548,7 +5548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "1/2+3/1 SC1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 21100,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5637,8 +5637,8 @@
|
||||
"ifName": "1/2+3/1 SC2",
|
||||
"portName": null,
|
||||
"ifIndex": 2147410306,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5648,7 +5648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "1/2+3/1 SC2",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 16800,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5748,7 +5748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "pppMultilinkBundle",
|
||||
"ifAlias": "10.4.47.65-10.4.49.66",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 21100,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5948,7 +5948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "usb",
|
||||
"ifAlias": "1/1/1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 18100,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+106
-106
@@ -10337,8 +10337,8 @@
|
||||
"ifName": "lo",
|
||||
"portName": null,
|
||||
"ifIndex": 805306370,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -10437,8 +10437,8 @@
|
||||
"ifName": "sit0",
|
||||
"portName": null,
|
||||
"ifIndex": 805306371,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -10537,8 +10537,8 @@
|
||||
"ifName": "ip6tnl0",
|
||||
"portName": null,
|
||||
"ifIndex": 805306372,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -10637,8 +10637,8 @@
|
||||
"ifName": "fc0",
|
||||
"portName": null,
|
||||
"ifIndex": 805306373,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -10737,8 +10737,8 @@
|
||||
"ifName": "port0",
|
||||
"portName": null,
|
||||
"ifIndex": 805306374,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -10848,7 +10848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port0",
|
||||
"ifPhysAddress": "363535333600",
|
||||
"ifPhysAddress": "0027f8d65536",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10948,7 +10948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port1",
|
||||
"ifPhysAddress": "363537393200",
|
||||
"ifPhysAddress": "0027f8d65792",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11048,7 +11048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port2",
|
||||
"ifPhysAddress": "363630343800",
|
||||
"ifPhysAddress": "0027f8d66048",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11148,7 +11148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-P17_FC0",
|
||||
"ifPhysAddress": "363633303400",
|
||||
"ifPhysAddress": "0027f8d66304",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11248,7 +11248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-P18_FC0",
|
||||
"ifPhysAddress": "363635363000",
|
||||
"ifPhysAddress": "0027f8d66560",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11348,7 +11348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port5",
|
||||
"ifPhysAddress": "363638313600",
|
||||
"ifPhysAddress": "0027f8d66816",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11448,7 +11448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port6",
|
||||
"ifPhysAddress": "363730373200",
|
||||
"ifPhysAddress": "0027f8d67072",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11548,7 +11548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port7",
|
||||
"ifPhysAddress": "363733323800",
|
||||
"ifPhysAddress": "0027f8d67328",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11648,7 +11648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port8",
|
||||
"ifPhysAddress": "363735383400",
|
||||
"ifPhysAddress": "0027f8d67584",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11748,7 +11748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port9",
|
||||
"ifPhysAddress": "363738343000",
|
||||
"ifPhysAddress": "0027f8d67840",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11848,7 +11848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port10",
|
||||
"ifPhysAddress": "363830393600",
|
||||
"ifPhysAddress": "0027f8d68096",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11948,7 +11948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port11",
|
||||
"ifPhysAddress": "363833353200",
|
||||
"ifPhysAddress": "0027f8d68352",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12048,7 +12048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-P51_FC0",
|
||||
"ifPhysAddress": "363836303800",
|
||||
"ifPhysAddress": "0027f8d68608",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12148,7 +12148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port13",
|
||||
"ifPhysAddress": "363838363400",
|
||||
"ifPhysAddress": "0027f8d68864",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12248,7 +12248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port14",
|
||||
"ifPhysAddress": "363931323000",
|
||||
"ifPhysAddress": "0027f8d69120",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12348,7 +12348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port15",
|
||||
"ifPhysAddress": "363933373600",
|
||||
"ifPhysAddress": "0027f8d69376",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12448,7 +12448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-P50_FC0",
|
||||
"ifPhysAddress": "363936333200",
|
||||
"ifPhysAddress": "0027f8d69632",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12548,7 +12548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port17",
|
||||
"ifPhysAddress": "363938383800",
|
||||
"ifPhysAddress": "0027f8d69888",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12648,7 +12648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port18",
|
||||
"ifPhysAddress": "373031343400",
|
||||
"ifPhysAddress": "0027f8d70144",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12748,7 +12748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port19",
|
||||
"ifPhysAddress": "373034303000",
|
||||
"ifPhysAddress": "0027f8d70400",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12848,7 +12848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port20",
|
||||
"ifPhysAddress": "373036353600",
|
||||
"ifPhysAddress": "0027f8d70656",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12948,7 +12948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port21",
|
||||
"ifPhysAddress": "373039313200",
|
||||
"ifPhysAddress": "0027f8d70912",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13048,7 +13048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port22",
|
||||
"ifPhysAddress": "373131363800",
|
||||
"ifPhysAddress": "0027f8d71168",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13148,7 +13148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port23",
|
||||
"ifPhysAddress": "373134323400",
|
||||
"ifPhysAddress": "0027f8d71424",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13248,7 +13248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port24",
|
||||
"ifPhysAddress": "373136383000",
|
||||
"ifPhysAddress": "0027f8d71680",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13348,7 +13348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-P16_FC0",
|
||||
"ifPhysAddress": "373139333600",
|
||||
"ifPhysAddress": "0027f8d71936",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13448,7 +13448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port26",
|
||||
"ifPhysAddress": "373231393200",
|
||||
"ifPhysAddress": "0027f8d72192",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13548,7 +13548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port27",
|
||||
"ifPhysAddress": "373234343800",
|
||||
"ifPhysAddress": "0027f8d72448",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13648,7 +13648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port28",
|
||||
"ifPhysAddress": "373237303400",
|
||||
"ifPhysAddress": "0027f8d72704",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13748,7 +13748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port29",
|
||||
"ifPhysAddress": "373239363000",
|
||||
"ifPhysAddress": "0027f8d72960",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13848,7 +13848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port30",
|
||||
"ifPhysAddress": "373332313600",
|
||||
"ifPhysAddress": "0027f8d73216",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13948,7 +13948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port31",
|
||||
"ifPhysAddress": "373334373200",
|
||||
"ifPhysAddress": "0027f8d73472",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14048,7 +14048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port32",
|
||||
"ifPhysAddress": "373337323800",
|
||||
"ifPhysAddress": "0027f8d73728",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14148,7 +14148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-P12_FC0",
|
||||
"ifPhysAddress": "373339383400",
|
||||
"ifPhysAddress": "0027f8d73984",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14248,7 +14248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port34",
|
||||
"ifPhysAddress": "373432343000",
|
||||
"ifPhysAddress": "0027f8d74240",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14348,7 +14348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port35",
|
||||
"ifPhysAddress": "373434393600",
|
||||
"ifPhysAddress": "0027f8d74496",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14448,7 +14448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port36",
|
||||
"ifPhysAddress": "373437353200",
|
||||
"ifPhysAddress": "0027f8d74752",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14548,7 +14548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port37",
|
||||
"ifPhysAddress": "373530303800",
|
||||
"ifPhysAddress": "0027f8d75008",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14648,7 +14648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port38",
|
||||
"ifPhysAddress": "373532363400",
|
||||
"ifPhysAddress": "0027f8d75264",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14748,7 +14748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port39",
|
||||
"ifPhysAddress": "373535323000",
|
||||
"ifPhysAddress": "0027f8d75520",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14848,7 +14848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port40",
|
||||
"ifPhysAddress": "373537373600",
|
||||
"ifPhysAddress": "0027f8d75776",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14948,7 +14948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port41",
|
||||
"ifPhysAddress": "373630333200",
|
||||
"ifPhysAddress": "0027f8d76032",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15048,7 +15048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port42",
|
||||
"ifPhysAddress": "373632383800",
|
||||
"ifPhysAddress": "0027f8d76288",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15148,7 +15148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port43",
|
||||
"ifPhysAddress": "373635343400",
|
||||
"ifPhysAddress": "0027f8d76544",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15248,7 +15248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port44",
|
||||
"ifPhysAddress": "373638303000",
|
||||
"ifPhysAddress": "0027f8d76800",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15348,7 +15348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port45",
|
||||
"ifPhysAddress": "373730353600",
|
||||
"ifPhysAddress": "0027f8d77056",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15448,7 +15448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port46",
|
||||
"ifPhysAddress": "373733313200",
|
||||
"ifPhysAddress": "0027f8d77312",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15548,7 +15548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port47",
|
||||
"ifPhysAddress": "373735363800",
|
||||
"ifPhysAddress": "0027f8d77568",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15648,7 +15648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "TAPE_FC0",
|
||||
"ifPhysAddress": "373738323400",
|
||||
"ifPhysAddress": "0027f8d77824",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15748,7 +15748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port49",
|
||||
"ifPhysAddress": "373830383000",
|
||||
"ifPhysAddress": "0027f8d78080",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15848,7 +15848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port50",
|
||||
"ifPhysAddress": "373833333600",
|
||||
"ifPhysAddress": "0027f8d78336",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15948,7 +15948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port51",
|
||||
"ifPhysAddress": "373835393200",
|
||||
"ifPhysAddress": "0027f8d78592",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16048,7 +16048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port52",
|
||||
"ifPhysAddress": "373838343800",
|
||||
"ifPhysAddress": "0027f8d78848",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16148,7 +16148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port53",
|
||||
"ifPhysAddress": "373931303400",
|
||||
"ifPhysAddress": "0027f8d79104",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16248,7 +16248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port54",
|
||||
"ifPhysAddress": "373933363000",
|
||||
"ifPhysAddress": "0027f8d79360",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16348,7 +16348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port55",
|
||||
"ifPhysAddress": "373936313600",
|
||||
"ifPhysAddress": "0027f8d79616",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16448,7 +16448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port56",
|
||||
"ifPhysAddress": "373938373200",
|
||||
"ifPhysAddress": "0027f8d79872",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16548,7 +16548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port57",
|
||||
"ifPhysAddress": "383031323800",
|
||||
"ifPhysAddress": "0027f8d80128",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16648,7 +16648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port58",
|
||||
"ifPhysAddress": "383033383400",
|
||||
"ifPhysAddress": "0027f8d80384",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16748,7 +16748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port59",
|
||||
"ifPhysAddress": "383036343000",
|
||||
"ifPhysAddress": "0027f8d80640",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16848,7 +16848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port60",
|
||||
"ifPhysAddress": "383038393600",
|
||||
"ifPhysAddress": "0027f8d80896",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16948,7 +16948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port61",
|
||||
"ifPhysAddress": "383131353200",
|
||||
"ifPhysAddress": "0027f8d81152",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17048,7 +17048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port62",
|
||||
"ifPhysAddress": "383134303800",
|
||||
"ifPhysAddress": "0027f8d81408",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17148,7 +17148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port63",
|
||||
"ifPhysAddress": "383136363400",
|
||||
"ifPhysAddress": "0027f8d81664",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17248,7 +17248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port64",
|
||||
"ifPhysAddress": "383139323000",
|
||||
"ifPhysAddress": "0027f8d81920",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17348,7 +17348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port65",
|
||||
"ifPhysAddress": "383231373600",
|
||||
"ifPhysAddress": "0027f8d82176",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17448,7 +17448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port66",
|
||||
"ifPhysAddress": "383234333200",
|
||||
"ifPhysAddress": "0027f8d82432",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17548,7 +17548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port67",
|
||||
"ifPhysAddress": "383236383800",
|
||||
"ifPhysAddress": "0027f8d82688",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17648,7 +17648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port68",
|
||||
"ifPhysAddress": "383239343400",
|
||||
"ifPhysAddress": "0027f8d82944",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17748,7 +17748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port69",
|
||||
"ifPhysAddress": "383332303000",
|
||||
"ifPhysAddress": "0027f8d83200",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17848,7 +17848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port70",
|
||||
"ifPhysAddress": "383334353600",
|
||||
"ifPhysAddress": "0027f8d83456",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17948,7 +17948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port71",
|
||||
"ifPhysAddress": "383337313200",
|
||||
"ifPhysAddress": "0027f8d83712",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18048,7 +18048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port72",
|
||||
"ifPhysAddress": "383339363800",
|
||||
"ifPhysAddress": "0027f8d83968",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18148,7 +18148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port73",
|
||||
"ifPhysAddress": "383432323400",
|
||||
"ifPhysAddress": "0027f8d84224",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18248,7 +18248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port74",
|
||||
"ifPhysAddress": "383434383000",
|
||||
"ifPhysAddress": "0027f8d84480",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18348,7 +18348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port75",
|
||||
"ifPhysAddress": "383437333600",
|
||||
"ifPhysAddress": "0027f8d84736",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18448,7 +18448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port76",
|
||||
"ifPhysAddress": "383439393200",
|
||||
"ifPhysAddress": "0027f8d84992",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18548,7 +18548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port77",
|
||||
"ifPhysAddress": "383532343800",
|
||||
"ifPhysAddress": "0027f8d85248",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18648,7 +18648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port78",
|
||||
"ifPhysAddress": "383535303400",
|
||||
"ifPhysAddress": "0027f8d85504",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18748,7 +18748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port79",
|
||||
"ifPhysAddress": "383537363000",
|
||||
"ifPhysAddress": "0027f8d85760",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18848,7 +18848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "InterSwitchLink_SAN-P1",
|
||||
"ifPhysAddress": "383630313600",
|
||||
"ifPhysAddress": "0027f8d86016",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18948,7 +18948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "InterSwitchLink_SAN-P1",
|
||||
"ifPhysAddress": "383632373200",
|
||||
"ifPhysAddress": "0027f8d86272",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19048,7 +19048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port82",
|
||||
"ifPhysAddress": "383635323800",
|
||||
"ifPhysAddress": "0027f8d86528",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19148,7 +19148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port83",
|
||||
"ifPhysAddress": "383637383400",
|
||||
"ifPhysAddress": "0027f8d86784",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19248,7 +19248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port84",
|
||||
"ifPhysAddress": "383730343000",
|
||||
"ifPhysAddress": "0027f8d87040",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19348,7 +19348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port85",
|
||||
"ifPhysAddress": "383732393600",
|
||||
"ifPhysAddress": "0027f8d87296",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19448,7 +19448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port86",
|
||||
"ifPhysAddress": "383735353200",
|
||||
"ifPhysAddress": "0027f8d87552",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19548,7 +19548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port87",
|
||||
"ifPhysAddress": "383738303800",
|
||||
"ifPhysAddress": "0027f8d87808",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19648,7 +19648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port88",
|
||||
"ifPhysAddress": "383830363400",
|
||||
"ifPhysAddress": "0027f8d88064",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19748,7 +19748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port89",
|
||||
"ifPhysAddress": "383833323000",
|
||||
"ifPhysAddress": "0027f8d88320",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19848,7 +19848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port90",
|
||||
"ifPhysAddress": "383835373600",
|
||||
"ifPhysAddress": "0027f8d88576",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19948,7 +19948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port91",
|
||||
"ifPhysAddress": "383838333200",
|
||||
"ifPhysAddress": "0027f8d88832",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20048,7 +20048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port92",
|
||||
"ifPhysAddress": "383930383800",
|
||||
"ifPhysAddress": "0027f8d89088",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20148,7 +20148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port93",
|
||||
"ifPhysAddress": "383933343400",
|
||||
"ifPhysAddress": "0027f8d89344",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20248,7 +20248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port94",
|
||||
"ifPhysAddress": "383936303000",
|
||||
"ifPhysAddress": "0027f8d89600",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20348,7 +20348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port95",
|
||||
"ifPhysAddress": "383938353600",
|
||||
"ifPhysAddress": "0027f8d89856",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+96
-96
@@ -10848,7 +10848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port0",
|
||||
"ifPhysAddress": "363535333600",
|
||||
"ifPhysAddress": "0027f8d65536",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10948,7 +10948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port1",
|
||||
"ifPhysAddress": "363537393200",
|
||||
"ifPhysAddress": "0027f8d65792",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11048,7 +11048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port2",
|
||||
"ifPhysAddress": "363630343800",
|
||||
"ifPhysAddress": "0027f8d66048",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11148,7 +11148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port3",
|
||||
"ifPhysAddress": "363633303400",
|
||||
"ifPhysAddress": "0027f8d66304",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11248,7 +11248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port4",
|
||||
"ifPhysAddress": "363635363000",
|
||||
"ifPhysAddress": "0027f8d66560",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11348,7 +11348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port5",
|
||||
"ifPhysAddress": "363638313600",
|
||||
"ifPhysAddress": "0027f8d66816",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11448,7 +11448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port6",
|
||||
"ifPhysAddress": "363730373200",
|
||||
"ifPhysAddress": "0027f8d67072",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11548,7 +11548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port7",
|
||||
"ifPhysAddress": "363733323800",
|
||||
"ifPhysAddress": "0027f8d67328",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11648,7 +11648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port8",
|
||||
"ifPhysAddress": "363735383400",
|
||||
"ifPhysAddress": "0027f8d67584",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11748,7 +11748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "NT-WZ-SAN-BU_FC0",
|
||||
"ifPhysAddress": "363738343000",
|
||||
"ifPhysAddress": "0027f8d67840",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11848,7 +11848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port10",
|
||||
"ifPhysAddress": "363830393600",
|
||||
"ifPhysAddress": "0027f8d68096",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11948,7 +11948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port11",
|
||||
"ifPhysAddress": "363833353200",
|
||||
"ifPhysAddress": "0027f8d68352",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12048,7 +12048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port12",
|
||||
"ifPhysAddress": "363836303800",
|
||||
"ifPhysAddress": "0027f8d68608",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12148,7 +12148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port13",
|
||||
"ifPhysAddress": "363838363400",
|
||||
"ifPhysAddress": "0027f8d68864",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12248,7 +12248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port14",
|
||||
"ifPhysAddress": "363931323000",
|
||||
"ifPhysAddress": "0027f8d69120",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12348,7 +12348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port15",
|
||||
"ifPhysAddress": "363933373600",
|
||||
"ifPhysAddress": "0027f8d69376",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12448,7 +12448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port16",
|
||||
"ifPhysAddress": "363936333200",
|
||||
"ifPhysAddress": "0027f8d69632",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12548,7 +12548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-AK-P17_FC0",
|
||||
"ifPhysAddress": "363938383800",
|
||||
"ifPhysAddress": "0027f8d69888",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12648,7 +12648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "ESX-AK-P18_FC0",
|
||||
"ifPhysAddress": "373031343400",
|
||||
"ifPhysAddress": "0027f8d70144",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12748,7 +12748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port19",
|
||||
"ifPhysAddress": "373034303000",
|
||||
"ifPhysAddress": "0027f8d70400",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12848,7 +12848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port20",
|
||||
"ifPhysAddress": "373036353600",
|
||||
"ifPhysAddress": "0027f8d70656",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12948,7 +12948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port21",
|
||||
"ifPhysAddress": "373039313200",
|
||||
"ifPhysAddress": "0027f8d70912",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13048,7 +13048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port22",
|
||||
"ifPhysAddress": "373131363800",
|
||||
"ifPhysAddress": "0027f8d71168",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13148,7 +13148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port23",
|
||||
"ifPhysAddress": "373134323400",
|
||||
"ifPhysAddress": "0027f8d71424",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13248,7 +13248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port24",
|
||||
"ifPhysAddress": "373136383000",
|
||||
"ifPhysAddress": "0027f8d71680",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13348,7 +13348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port16",
|
||||
"ifPhysAddress": "373139333600",
|
||||
"ifPhysAddress": "0027f8d71936",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13448,7 +13448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "WA-NB-P2_FC0",
|
||||
"ifPhysAddress": "373231393200",
|
||||
"ifPhysAddress": "0027f8d72192",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13548,7 +13548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port27",
|
||||
"ifPhysAddress": "373234343800",
|
||||
"ifPhysAddress": "0027f8d72448",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13648,7 +13648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port28",
|
||||
"ifPhysAddress": "373237303400",
|
||||
"ifPhysAddress": "0027f8d72704",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13748,7 +13748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port29",
|
||||
"ifPhysAddress": "373239363000",
|
||||
"ifPhysAddress": "0027f8d72960",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13848,7 +13848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port30",
|
||||
"ifPhysAddress": "373332313600",
|
||||
"ifPhysAddress": "0027f8d73216",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13948,7 +13948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port31",
|
||||
"ifPhysAddress": "373334373200",
|
||||
"ifPhysAddress": "0027f8d73472",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14048,7 +14048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port32",
|
||||
"ifPhysAddress": "373337323800",
|
||||
"ifPhysAddress": "0027f8d73728",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14148,7 +14148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port33",
|
||||
"ifPhysAddress": "373339383400",
|
||||
"ifPhysAddress": "0027f8d73984",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14248,7 +14248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port34",
|
||||
"ifPhysAddress": "373432343000",
|
||||
"ifPhysAddress": "0027f8d74240",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14348,7 +14348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port35",
|
||||
"ifPhysAddress": "373434393600",
|
||||
"ifPhysAddress": "0027f8d74496",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14448,7 +14448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port36",
|
||||
"ifPhysAddress": "373437353200",
|
||||
"ifPhysAddress": "0027f8d74752",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14548,7 +14548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port37",
|
||||
"ifPhysAddress": "373530303800",
|
||||
"ifPhysAddress": "0027f8d75008",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14648,7 +14648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port38",
|
||||
"ifPhysAddress": "373532363400",
|
||||
"ifPhysAddress": "0027f8d75264",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14748,7 +14748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "WD-NB-P1_FC0",
|
||||
"ifPhysAddress": "373535323000",
|
||||
"ifPhysAddress": "0027f8d75520",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14848,7 +14848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port40",
|
||||
"ifPhysAddress": "373537373600",
|
||||
"ifPhysAddress": "0027f8d75776",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14948,7 +14948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port41",
|
||||
"ifPhysAddress": "373630333200",
|
||||
"ifPhysAddress": "0027f8d76032",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15048,7 +15048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port42",
|
||||
"ifPhysAddress": "373632383800",
|
||||
"ifPhysAddress": "0027f8d76288",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15148,7 +15148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port43",
|
||||
"ifPhysAddress": "373635343400",
|
||||
"ifPhysAddress": "0027f8d76544",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15248,7 +15248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port44",
|
||||
"ifPhysAddress": "373638303000",
|
||||
"ifPhysAddress": "0027f8d76800",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15348,7 +15348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port45",
|
||||
"ifPhysAddress": "373730353600",
|
||||
"ifPhysAddress": "0027f8d77056",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15448,7 +15448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port46",
|
||||
"ifPhysAddress": "373733313200",
|
||||
"ifPhysAddress": "0027f8d77312",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15548,7 +15548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port47",
|
||||
"ifPhysAddress": "373735363800",
|
||||
"ifPhysAddress": "0027f8d77568",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15648,7 +15648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "TAPE-AK-01_FC0",
|
||||
"ifPhysAddress": "373738323400",
|
||||
"ifPhysAddress": "0027f8d77824",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15748,7 +15748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port49",
|
||||
"ifPhysAddress": "373830383000",
|
||||
"ifPhysAddress": "0027f8d78080",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15848,7 +15848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port50",
|
||||
"ifPhysAddress": "373833333600",
|
||||
"ifPhysAddress": "0027f8d78336",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15948,7 +15948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port51",
|
||||
"ifPhysAddress": "373835393200",
|
||||
"ifPhysAddress": "0027f8d78592",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16048,7 +16048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port52",
|
||||
"ifPhysAddress": "373838343800",
|
||||
"ifPhysAddress": "0027f8d78848",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16148,7 +16148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port53",
|
||||
"ifPhysAddress": "373931303400",
|
||||
"ifPhysAddress": "0027f8d79104",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16248,7 +16248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port54",
|
||||
"ifPhysAddress": "373933363000",
|
||||
"ifPhysAddress": "0027f8d79360",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16348,7 +16348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port55",
|
||||
"ifPhysAddress": "373936313600",
|
||||
"ifPhysAddress": "0027f8d79616",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16448,7 +16448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port56",
|
||||
"ifPhysAddress": "373938373200",
|
||||
"ifPhysAddress": "0027f8d79872",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16548,7 +16548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port57",
|
||||
"ifPhysAddress": "383031323800",
|
||||
"ifPhysAddress": "0027f8d80128",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16648,7 +16648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port58",
|
||||
"ifPhysAddress": "383033383400",
|
||||
"ifPhysAddress": "0027f8d80384",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16748,7 +16748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port59",
|
||||
"ifPhysAddress": "383036343000",
|
||||
"ifPhysAddress": "0027f8d80640",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16848,7 +16848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port60",
|
||||
"ifPhysAddress": "383038393600",
|
||||
"ifPhysAddress": "0027f8d80896",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16948,7 +16948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port61",
|
||||
"ifPhysAddress": "383131353200",
|
||||
"ifPhysAddress": "0027f8d81152",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17048,7 +17048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port62",
|
||||
"ifPhysAddress": "383134303800",
|
||||
"ifPhysAddress": "0027f8d81408",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17148,7 +17148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port63",
|
||||
"ifPhysAddress": "383136363400",
|
||||
"ifPhysAddress": "0027f8d81664",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17248,7 +17248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port64",
|
||||
"ifPhysAddress": "383139323000",
|
||||
"ifPhysAddress": "0027f8d81920",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17348,7 +17348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port65",
|
||||
"ifPhysAddress": "383231373600",
|
||||
"ifPhysAddress": "0027f8d82176",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17448,7 +17448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port66",
|
||||
"ifPhysAddress": "383234333200",
|
||||
"ifPhysAddress": "0027f8d82432",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17548,7 +17548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port67",
|
||||
"ifPhysAddress": "383236383800",
|
||||
"ifPhysAddress": "0027f8d82688",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17648,7 +17648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port68",
|
||||
"ifPhysAddress": "383239343400",
|
||||
"ifPhysAddress": "0027f8d82944",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17748,7 +17748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port69",
|
||||
"ifPhysAddress": "383332303000",
|
||||
"ifPhysAddress": "0027f8d83200",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17848,7 +17848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port70",
|
||||
"ifPhysAddress": "383334353600",
|
||||
"ifPhysAddress": "0027f8d83456",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17948,7 +17948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port71",
|
||||
"ifPhysAddress": "383337313200",
|
||||
"ifPhysAddress": "0027f8d83712",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18048,7 +18048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port72",
|
||||
"ifPhysAddress": "383339363800",
|
||||
"ifPhysAddress": "0027f8d83968",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18148,7 +18148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port73",
|
||||
"ifPhysAddress": "383432323400",
|
||||
"ifPhysAddress": "0027f8d84224",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18248,7 +18248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port74",
|
||||
"ifPhysAddress": "383434383000",
|
||||
"ifPhysAddress": "0027f8d84480",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18348,7 +18348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port75",
|
||||
"ifPhysAddress": "383437333600",
|
||||
"ifPhysAddress": "0027f8d84736",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18448,7 +18448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port76",
|
||||
"ifPhysAddress": "383439393200",
|
||||
"ifPhysAddress": "0027f8d84992",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18548,7 +18548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port77",
|
||||
"ifPhysAddress": "383532343800",
|
||||
"ifPhysAddress": "0027f8d85248",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18648,7 +18648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port78",
|
||||
"ifPhysAddress": "383535303400",
|
||||
"ifPhysAddress": "0027f8d85504",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18748,7 +18748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port79",
|
||||
"ifPhysAddress": "383537363000",
|
||||
"ifPhysAddress": "0027f8d85760",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18848,7 +18848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "InterSwitchLink_SAN-WD-P1",
|
||||
"ifPhysAddress": "383630313600",
|
||||
"ifPhysAddress": "0027f8d86016",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18948,7 +18948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "InterSwitchLink_SAN-WD-P1",
|
||||
"ifPhysAddress": "383632373200",
|
||||
"ifPhysAddress": "0027f8d86272",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19048,7 +19048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port82",
|
||||
"ifPhysAddress": "383635323800",
|
||||
"ifPhysAddress": "0027f8d86528",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19148,7 +19148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port83",
|
||||
"ifPhysAddress": "383637383400",
|
||||
"ifPhysAddress": "0027f8d86784",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19248,7 +19248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port84",
|
||||
"ifPhysAddress": "383730343000",
|
||||
"ifPhysAddress": "0027f8d87040",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19348,7 +19348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port85",
|
||||
"ifPhysAddress": "383732393600",
|
||||
"ifPhysAddress": "0027f8d87296",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19448,7 +19448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port86",
|
||||
"ifPhysAddress": "383735353200",
|
||||
"ifPhysAddress": "0027f8d87552",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19548,7 +19548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port87",
|
||||
"ifPhysAddress": "383738303800",
|
||||
"ifPhysAddress": "0027f8d87808",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19648,7 +19648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port88",
|
||||
"ifPhysAddress": "383830363400",
|
||||
"ifPhysAddress": "0027f8d88064",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19748,7 +19748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port89",
|
||||
"ifPhysAddress": "383833323000",
|
||||
"ifPhysAddress": "0027f8d88320",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19848,7 +19848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port90",
|
||||
"ifPhysAddress": "383835373600",
|
||||
"ifPhysAddress": "0027f8d88576",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19948,7 +19948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port91",
|
||||
"ifPhysAddress": "383838333200",
|
||||
"ifPhysAddress": "0027f8d88832",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20048,7 +20048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port92",
|
||||
"ifPhysAddress": "383930383800",
|
||||
"ifPhysAddress": "0027f8d89088",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20148,7 +20148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "port93",
|
||||
"ifPhysAddress": "383933343400",
|
||||
"ifPhysAddress": "0027f8d89344",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20248,7 +20248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port94",
|
||||
"ifPhysAddress": "383936303000",
|
||||
"ifPhysAddress": "0027f8d89600",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20348,7 +20348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fibreChannel",
|
||||
"ifAlias": "Port95",
|
||||
"ifPhysAddress": "383938353600",
|
||||
"ifPhysAddress": "0027f8d89856",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -448,7 +448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "MCF Fast Ethernet Controller",
|
||||
"ifPhysAddress": "303a38303a61",
|
||||
"ifPhysAddress": "0080a3909d9a",
|
||||
"ifLastChange": 8,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -548,7 +548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "Software Loopback",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 8,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -648,7 +648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "HDLC",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 8,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -748,7 +748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "HDLC",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 8,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+29
-29
@@ -2948,7 +2948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Router 2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 645817669,
|
||||
"ifVlan": "100",
|
||||
"ifTrunk": null,
|
||||
@@ -3048,7 +3048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "OOB Router",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 85618,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3148,7 +3148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Server 1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 554543484,
|
||||
"ifVlan": "100",
|
||||
"ifTrunk": null,
|
||||
@@ -3248,7 +3248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Server 2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 674275465,
|
||||
"ifVlan": "100",
|
||||
"ifTrunk": null,
|
||||
@@ -3348,7 +3348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Server 3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 559683064,
|
||||
"ifVlan": "100",
|
||||
"ifTrunk": null,
|
||||
@@ -3448,7 +3448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Server 4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 555171665,
|
||||
"ifVlan": "100",
|
||||
"ifTrunk": null,
|
||||
@@ -3548,7 +3548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Server 5",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 562896316,
|
||||
"ifVlan": "100",
|
||||
"ifTrunk": null,
|
||||
@@ -3648,7 +3648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/8",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3748,7 +3748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/9",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3848,7 +3848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/10",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/11",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/12",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4148,7 +4148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/13",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4248,7 +4248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/14",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4348,7 +4348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/15",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4448,7 +4448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/16",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4548,7 +4548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/17",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4648,7 +4648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/18",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4748,7 +4748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/19",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4848,7 +4848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/20",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -4948,7 +4948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/21",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5048,7 +5048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Switch Crosslink",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 629014322,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5148,7 +5148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Spare",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 629010005,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5248,7 +5248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "Spare",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 629010257,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5348,7 +5348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/1/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5448,7 +5448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/1/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5548,7 +5548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/1/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5648,7 +5648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/1/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5748,7 +5748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "system",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a9417e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+111
-111
@@ -11148,7 +11148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 29271,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11248,7 +11248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11348,7 +11348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11448,7 +11448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11548,7 +11548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/5",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11648,7 +11648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/6",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11748,7 +11748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/7",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11848,7 +11848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/8",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 87578493,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11948,7 +11948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/9",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 14671,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12048,7 +12048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/10",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12148,7 +12148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/11",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12248,7 +12248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/12",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12348,7 +12348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/13",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12448,7 +12448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/14",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12548,7 +12548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/15",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12648,7 +12648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/16",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12748,7 +12748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/17",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12848,7 +12848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/18",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 14674,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12948,7 +12948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/19",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13048,7 +13048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/20",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13148,7 +13148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/21",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13248,7 +13248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/22",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13348,7 +13348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/23",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13448,7 +13448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "gigabitEthernet",
|
||||
"ifAlias": "e0/0/24",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13548,7 +13548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "e0/1/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13648,7 +13648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "e0/1/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 29271,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13748,7 +13748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13848,7 +13848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13948,7 +13948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14048,7 +14048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14148,7 +14148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/5",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 8697,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14248,7 +14248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/6",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14348,7 +14348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/7",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14448,7 +14448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/8",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14548,7 +14548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/9",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14648,7 +14648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/10",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14748,7 +14748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/11",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14848,7 +14848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/12",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -14948,7 +14948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/13",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15048,7 +15048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/14",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15148,7 +15148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/15",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15248,7 +15248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/16",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15348,7 +15348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/17",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15448,7 +15448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/18",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 87326860,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15548,7 +15548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/19",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15648,7 +15648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/20",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15748,7 +15748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/21",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15848,7 +15848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/22",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -15948,7 +15948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/23",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16048,7 +16048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/0/24",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16148,7 +16148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/1/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16248,7 +16248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/1/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16348,7 +16348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/1/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16448,7 +16448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e1/1/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 29443,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16548,7 +16548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16648,7 +16648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16748,7 +16748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16848,7 +16848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -16948,7 +16948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/5",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17048,7 +17048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/6",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17148,7 +17148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/7",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17248,7 +17248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/8",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17348,7 +17348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/9",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17448,7 +17448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/10",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17548,7 +17548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/11",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17648,7 +17648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/12",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17748,7 +17748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/13",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17848,7 +17848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/14",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -17948,7 +17948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/15",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18048,7 +18048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/16",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18148,7 +18148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/17",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18248,7 +18248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/18",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18348,7 +18348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/19",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18448,7 +18448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/20",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18548,7 +18548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/21",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18648,7 +18648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/22",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18748,7 +18748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/23",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18848,7 +18848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/0/24",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -18948,7 +18948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/1/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19048,7 +19048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/1/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19148,7 +19148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/1/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19248,7 +19248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e2/1/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19348,7 +19348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19448,7 +19448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19548,7 +19548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19648,7 +19648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19748,7 +19748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/5",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19848,7 +19848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/6",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -19948,7 +19948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/7",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20048,7 +20048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/8",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20148,7 +20148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/9",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20248,7 +20248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/10",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20348,7 +20348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/11",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20448,7 +20448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/12",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20548,7 +20548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/13",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20648,7 +20648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/14",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20748,7 +20748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/15",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20848,7 +20848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/16",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -20948,7 +20948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/17",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21048,7 +21048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/18",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21148,7 +21148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/19",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21248,7 +21248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/20",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21348,7 +21348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/21",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21448,7 +21448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/22",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21548,7 +21548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/23",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21648,7 +21648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/0/24",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21748,7 +21748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/1/1",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21848,7 +21848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/1/2",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -21948,7 +21948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/1/3",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22048,7 +22048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "fastEther",
|
||||
"ifAlias": "e3/1/4",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -22148,7 +22148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "VLAN-IF82",
|
||||
"ifPhysAddress": "303a613a3561",
|
||||
"ifPhysAddress": "000a5a64def2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+15
-15
@@ -3548,7 +3548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'dmz3' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0cd",
|
||||
"ifLastChange": 33409600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3648,7 +3648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'dmz2' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0cd",
|
||||
"ifLastChange": 33409600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3748,7 +3748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'dmz2tier' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0cd",
|
||||
"ifLastChange": 33409600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3848,7 +3848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'farecollection' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0bd",
|
||||
"ifLastChange": 34174900,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/2' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0ed",
|
||||
"ifLastChange": 1400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/3' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0dd",
|
||||
"ifLastChange": 1400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4148,7 +4148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/4' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0fd",
|
||||
"ifLastChange": 1400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4248,7 +4248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/5' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0ae",
|
||||
"ifLastChange": 1400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4348,7 +4348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/6' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0ce",
|
||||
"ifLastChange": 1400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4448,7 +4448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/7' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0be",
|
||||
"ifLastChange": 1500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4548,7 +4548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/8' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0ee",
|
||||
"ifLastChange": 1500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4648,7 +4648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/9' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0de",
|
||||
"ifLastChange": 1500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4748,7 +4748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Adaptive Security Appliance 'Ethernet1/10' interface",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0fe",
|
||||
"ifLastChange": 1500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4848,7 +4848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Inside_Networks",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0af",
|
||||
"ifLastChange": 1500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4948,7 +4948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "External_Networks",
|
||||
"ifPhysAddress": "37303a37393a",
|
||||
"ifPhysAddress": "7079b30fc0cf",
|
||||
"ifLastChange": 1500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+32
-32
@@ -2948,7 +2948,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Level3ToEQCH1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1122874590,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3048,7 +3048,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Level3FromEQCH1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1122875100,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3148,7 +3148,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "XOToEQCH1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1129580215,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3248,7 +3248,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "XOFromEQCH1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1129580572,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3337,8 +3337,8 @@
|
||||
"ifName": "GigaVUE-2404 Port 5 (Network Port)",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3348,7 +3348,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 5 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2952,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3448,7 +3448,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "NTSDC3TAP1Port1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 241497042,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3548,7 +3548,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "NTSDC3TAP1Port2",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2952,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3648,7 +3648,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 8 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2952,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3748,7 +3748,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "CMEGLinkToCMEAFeed",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1099354994,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3848,7 +3848,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "CMEGLinkFromCMEAFeed",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1695320948,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "ZayoFromInternet",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1812718161,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "ZayoToInternet",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1812718365,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4148,7 +4148,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 13 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2953,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4248,7 +4248,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 14 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2953,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4348,7 +4348,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "CMEGLinkFromCMEBFeed",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1634670624,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4448,7 +4448,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "CMEGLinkToCMEBFeed",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1634670420,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4548,7 +4548,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Valkyrie-ASide",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 124190725,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4648,7 +4648,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Valkyrie-BSide",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 124190623,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4748,7 +4748,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 19 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1020454979,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4848,7 +4848,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 20 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 995706331,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4948,7 +4948,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 21 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2954,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5048,7 +5048,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 22 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2955,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5148,7 +5148,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 23 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2955,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5248,7 +5248,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port 24 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2955,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5348,7 +5348,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port g1 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2955,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5437,8 +5437,8 @@
|
||||
"ifName": "GigaVUE-2404 Port g2 (Network Port)",
|
||||
"portName": null,
|
||||
"ifIndex": 26,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5448,7 +5448,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigaVUE-2404 Port g2 (Network Port)",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2979,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5548,7 +5548,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Level3ToEQNY4",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1063975227,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5648,7 +5648,7 @@
|
||||
"ifMtu": 9600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Level3FromEQNY4",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1194129188,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Internet Adapter",
|
||||
"ifPhysAddress": "38432d31462d",
|
||||
"ifPhysAddress": "8c1fb400f205",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+19
-19
@@ -1993,7 +1993,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 1 - 1 Gbit",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071de",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2093,7 +2093,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 2 - 1 Gbit",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071df",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2193,7 +2193,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 3 - 100 MBit FX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e0",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2293,7 +2293,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 4 - 100 MBit FX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2393,7 +2393,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 5 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e2",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2493,7 +2493,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 6 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e3",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2593,7 +2593,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 7 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e4",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2693,7 +2693,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 8 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e5",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2793,7 +2793,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 9 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e6",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2893,7 +2893,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 10 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e7",
|
||||
"ifLastChange": 622356000,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2993,7 +2993,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 11 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e8",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3093,7 +3093,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 12 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071e9",
|
||||
"ifLastChange": 568011500,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3193,7 +3193,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 13 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071ea",
|
||||
"ifLastChange": 611882300,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3293,7 +3293,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 14 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071eb",
|
||||
"ifLastChange": 429992700,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3393,7 +3393,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 15 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071ec",
|
||||
"ifLastChange": 611276700,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3493,7 +3493,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 16 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071ed",
|
||||
"ifLastChange": 628923000,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3593,7 +3593,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 17 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071ee",
|
||||
"ifLastChange": 611781900,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3693,7 +3693,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Module: 1 Port: 18 - 10/100 Mbit TX",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071ef",
|
||||
"ifLastChange": 8800,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -3793,7 +3793,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "CPU Interface for Module: 4 Port: 1",
|
||||
"ifPhysAddress": "65633a65353a",
|
||||
"ifPhysAddress": "ece5554071d6",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "lo",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "63383a66643a",
|
||||
"ifPhysAddress": "c8fd19ec56e0",
|
||||
"ifLastChange": 303,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+14
-14
@@ -648,7 +648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "Management port",
|
||||
"ifPhysAddress": "9167",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 127,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -748,7 +748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "WAN port",
|
||||
"ifPhysAddress": "8918",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 129,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -837,8 +837,8 @@
|
||||
"ifName": "LAN port 1",
|
||||
"portName": null,
|
||||
"ifIndex": 3,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -848,7 +848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "LAN port 1",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -937,8 +937,8 @@
|
||||
"ifName": "LAN port 2",
|
||||
"portName": null,
|
||||
"ifIndex": 4,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -948,7 +948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "LAN port 2",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1037,8 +1037,8 @@
|
||||
"ifName": "LAN port 3",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1048,7 +1048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "LAN port 3",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1137,8 +1137,8 @@
|
||||
"ifName": "LAN port 4",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1148,7 +1148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "LAN port 4",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
"ifMtu": 1512,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Local Area Connection - eth0",
|
||||
"ifPhysAddress": "30302d32322d",
|
||||
"ifPhysAddress": "0022cb008b86",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+55
-55
@@ -5566,7 +5566,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Vlan-interface10",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 742786,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5666,7 +5666,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "port-channel 1",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 693846,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5766,7 +5766,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "port-channel 2",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 9091277,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5866,7 +5866,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/1 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 774632,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5966,7 +5966,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/2 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 1437053,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6066,7 +6066,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/3 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 750832,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6166,7 +6166,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/4 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 160710,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6266,7 +6266,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/5 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 21617,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6366,7 +6366,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/6 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 9090889,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6466,7 +6466,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/7 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 22421,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6566,7 +6566,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/8 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 9090889,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6666,7 +6666,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/9 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 26642,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6766,7 +6766,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/10 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 25637,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6866,7 +6866,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/11 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6966,7 +6966,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/12 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 29657,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7066,7 +7066,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/13 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 12811413,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7166,7 +7166,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/14 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 32471,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7266,7 +7266,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/15 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 36491,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7366,7 +7366,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/16 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 34079,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7466,7 +7466,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/17 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7566,7 +7566,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/18 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 39707,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7666,7 +7666,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/19 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7766,7 +7766,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/20 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 1491457,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7866,7 +7866,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/21 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7966,7 +7966,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/22 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 1493057,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8066,7 +8066,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/23 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8166,7 +8166,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/24 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 1490857,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8266,7 +8266,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/25 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8366,7 +8366,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/26 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8466,7 +8466,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/27 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8566,7 +8566,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/28 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 1382453,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8666,7 +8666,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/29 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8766,7 +8766,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/30 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 36759364,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8866,7 +8866,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/31 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8966,7 +8966,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/32 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 57797,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9066,7 +9066,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/33 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 37120976,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9166,7 +9166,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/34 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9266,7 +9266,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/35 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9366,7 +9366,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/36 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9466,7 +9466,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/37 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 67244,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9566,7 +9566,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/38 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9666,7 +9666,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/39 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9766,7 +9766,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/40 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 66641,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9866,7 +9866,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/41 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9966,7 +9966,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/42 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10066,7 +10066,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/43 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10166,7 +10166,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/44 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10266,7 +10266,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/45 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 668367,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10366,7 +10366,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/46 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10466,7 +10466,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/47 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10566,7 +10566,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/48 : copper",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10666,7 +10666,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/49 : fiber",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10766,7 +10766,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/50 : fiber",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10866,7 +10866,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/51 : fiber",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 676417,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10966,7 +10966,7 @@
|
||||
"ifMtu": 1518,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "gigabitEthernet 1/0/52 : fiber",
|
||||
"ifPhysAddress": "62303a62653a",
|
||||
"ifPhysAddress": "b0be763b5de1",
|
||||
"ifLastChange": 691030,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+142
-142
File diff suppressed because it is too large
Load Diff
+10
-10
@@ -1537,8 +1537,8 @@
|
||||
"ifName": "bond0",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1637,8 +1637,8 @@
|
||||
"ifName": "bond1",
|
||||
"portName": null,
|
||||
"ifIndex": 7,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1737,8 +1737,8 @@
|
||||
"ifName": "bond2",
|
||||
"portName": null,
|
||||
"ifIndex": 8,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1837,8 +1837,8 @@
|
||||
"ifName": "bond3",
|
||||
"portName": null,
|
||||
"ifIndex": 9,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1937,8 +1937,8 @@
|
||||
"ifName": "bond4",
|
||||
"portName": null,
|
||||
"ifIndex": 10,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Interface",
|
||||
"ifPhysAddress": "303a353a3561",
|
||||
"ifPhysAddress": "00055a03eb92",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -337,8 +337,8 @@
|
||||
"ifName": "lo",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -437,8 +437,8 @@
|
||||
"ifName": "eth0",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -448,7 +448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -537,8 +537,8 @@
|
||||
"ifName": "sit0",
|
||||
"portName": null,
|
||||
"ifIndex": 3,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "RPS Wired Network",
|
||||
"ifPhysAddress": "303a323a3633",
|
||||
"ifPhysAddress": "0002630665d8",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -5848,7 +5848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 5/1",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a30323a",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5948,7 +5948,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 5/2",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a30323b",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6048,7 +6048,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 5/3",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a30323c",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6148,7 +6148,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 5/4",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a30323d",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6248,7 +6248,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 5/5",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a30323e",
|
||||
"ifLastChange": 3857224855,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6348,7 +6348,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 5/6",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a30323f",
|
||||
"ifLastChange": 2843265946,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6448,7 +6448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 5/3",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a303230",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6548,7 +6548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 5/4",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a303231",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6648,7 +6648,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 5/1",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a303232",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6748,7 +6748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 5/2",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30303a303233",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -5348,7 +5348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/48",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "3a32653a3530",
|
||||
"ifLastChange": 2935850466,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5448,7 +5448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/47",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "3a32653a3531",
|
||||
"ifLastChange": 2935840586,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5548,7 +5548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/46",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935830952,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5648,7 +5648,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/45",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935819406,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5748,7 +5748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/44",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935811045,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5848,7 +5848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/43",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935801386,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5948,7 +5948,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/40",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935770568,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6048,7 +6048,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/39",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935762137,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6148,7 +6148,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/38",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935753674,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6248,7 +6248,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/37",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935744032,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6348,7 +6348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/36",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935735566,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6448,7 +6448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/35",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935724962,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6548,7 +6548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/32",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935697662,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6648,7 +6648,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/31",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 3754269482,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6748,7 +6748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/30",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935677702,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6848,7 +6848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/29",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935667182,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6948,7 +6948,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/42",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935788710,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7048,7 +7048,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/41",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2899779607,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7148,7 +7148,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/34",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935715397,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7248,7 +7248,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/33",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935706069,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7348,7 +7348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/28",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 3146303847,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7448,7 +7448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/27",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935650497,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7548,7 +7548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/26",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935641091,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7648,7 +7648,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/25",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935631837,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7748,7 +7748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/20",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2754149918,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7848,7 +7848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/4",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7948,7 +7948,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 1/1",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935442590,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8048,7 +8048,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 1/2",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1598205098,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8148,7 +8148,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 1/4",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935447746,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8248,7 +8248,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10GigabitEthernet 1/3",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935444694,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8348,7 +8348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/19",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935577622,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8448,7 +8448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/18",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935569270,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8548,7 +8548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/17",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935561941,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8648,7 +8648,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/8",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935488661,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8748,7 +8748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/7",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935480574,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8848,7 +8848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/24",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935622482,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8948,7 +8948,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/23",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2911956119,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9048,7 +9048,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/22",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935602592,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9148,7 +9148,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/21",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9248,7 +9248,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/16",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935553637,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9348,7 +9348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/15",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2116486579,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9448,7 +9448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/3",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9548,7 +9548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/2",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9648,7 +9648,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/1",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9748,7 +9748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/6",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935476521,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9848,7 +9848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/5",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9948,7 +9948,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/14",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2751209515,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10048,7 +10048,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/13",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 48837378,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10148,7 +10148,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/12",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935520634,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10248,7 +10248,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/11",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 3107131499,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10348,7 +10348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/10",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 2935503097,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10448,7 +10448,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/9",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 410583207,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10548,7 +10548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "lag 1/1",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -5848,7 +5848,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/9",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383630",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5948,7 +5948,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/10",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383631",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6048,7 +6048,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/7",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383632",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6148,7 +6148,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/8",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383633",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6248,7 +6248,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/1",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383634",
|
||||
"ifLastChange": 2724567254,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6348,7 +6348,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/2",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383635",
|
||||
"ifLastChange": 2724566245,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6448,7 +6448,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/4",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383636",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6548,7 +6548,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/6",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383637",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6648,7 +6648,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/3",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383638",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6748,7 +6748,7 @@
|
||||
"ifMtu": 1600,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "GigabitEthernet 1/5",
|
||||
"ifPhysAddress": "33303a33303a",
|
||||
"ifPhysAddress": "30323a383639",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -1537,8 +1537,8 @@
|
||||
"ifName": "SFP Interface 1",
|
||||
"portName": null,
|
||||
"ifIndex": 115712,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1637,8 +1637,8 @@
|
||||
"ifName": "SFP Interface 2",
|
||||
"portName": null,
|
||||
"ifIndex": 181248,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1737,8 +1737,8 @@
|
||||
"ifName": "SFP Interface 3",
|
||||
"portName": null,
|
||||
"ifIndex": 246784,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1837,8 +1837,8 @@
|
||||
"ifName": "SFP Interface 4",
|
||||
"portName": null,
|
||||
"ifIndex": 312320,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1937,8 +1937,8 @@
|
||||
"ifName": "SFP Interface 5",
|
||||
"portName": null,
|
||||
"ifIndex": 377856,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2037,8 +2037,8 @@
|
||||
"ifName": "SFP Interface 6",
|
||||
"portName": null,
|
||||
"ifIndex": 443392,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2137,8 +2137,8 @@
|
||||
"ifName": "SFP Interface 7",
|
||||
"portName": null,
|
||||
"ifIndex": 508928,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2237,8 +2237,8 @@
|
||||
"ifName": "SFP Interface 8",
|
||||
"portName": null,
|
||||
"ifIndex": 574464,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2337,8 +2337,8 @@
|
||||
"ifName": "MNG Interface 1",
|
||||
"portName": null,
|
||||
"ifIndex": 1164288,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2437,8 +2437,8 @@
|
||||
"ifName": "MNG Interface 2",
|
||||
"portName": null,
|
||||
"ifIndex": 1229824,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2648,7 +2648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "LAN-INTERNAL",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2737,8 +2737,8 @@
|
||||
"ifName": "RS232",
|
||||
"portName": null,
|
||||
"ifIndex": 6693120,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -2937,8 +2937,8 @@
|
||||
"ifName": "EDFA 1",
|
||||
"portName": null,
|
||||
"ifIndex": 13681408,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
|
||||
@@ -3637,8 +3637,8 @@
|
||||
"ifName": "SFP Interface 1",
|
||||
"portName": null,
|
||||
"ifIndex": 115712,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3937,8 +3937,8 @@
|
||||
"ifName": "SFP Interface 2",
|
||||
"portName": null,
|
||||
"ifIndex": 181248,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4237,8 +4237,8 @@
|
||||
"ifName": "SFP Interface 3",
|
||||
"portName": null,
|
||||
"ifIndex": 246784,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4537,8 +4537,8 @@
|
||||
"ifName": "SFP Interface 4",
|
||||
"portName": null,
|
||||
"ifIndex": 312320,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4737,8 +4737,8 @@
|
||||
"ifName": "SFP Interface 15",
|
||||
"portName": null,
|
||||
"ifIndex": 1033216,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4937,8 +4937,8 @@
|
||||
"ifName": "SFP Interface 16",
|
||||
"portName": null,
|
||||
"ifIndex": 1098752,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5037,8 +5037,8 @@
|
||||
"ifName": "MNG Interface 1",
|
||||
"portName": null,
|
||||
"ifIndex": 1164288,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5137,8 +5137,8 @@
|
||||
"ifName": "MNG Interface 2",
|
||||
"portName": null,
|
||||
"ifIndex": 1229824,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -6237,8 +6237,8 @@
|
||||
"ifName": "SFP Interface 21",
|
||||
"portName": null,
|
||||
"ifIndex": 1426432,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -6448,7 +6448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "LAN-INTERNAL",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -6537,8 +6537,8 @@
|
||||
"ifName": "RS232",
|
||||
"portName": null,
|
||||
"ifIndex": 6693120,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -6737,8 +6737,8 @@
|
||||
"ifName": "SFP Interface 200",
|
||||
"portName": null,
|
||||
"ifIndex": 13157376,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "lo",
|
||||
"ifPhysAddress": "0",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "ethernet 0 0 0",
|
||||
"ifPhysAddress": "303061306261",
|
||||
"ifPhysAddress": "00a0ba0bd1ec",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+69
-69
@@ -6948,7 +6948,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/1",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7048,7 +7048,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/2",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7148,7 +7148,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/3",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7248,7 +7248,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/4",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7348,7 +7348,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/5",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7448,7 +7448,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/6",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7548,7 +7548,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/7",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7648,7 +7648,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/8",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7748,7 +7748,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/9",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7848,7 +7848,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/10",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -7948,7 +7948,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/11",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8048,7 +8048,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/12",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8148,7 +8148,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/13",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8248,7 +8248,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/14",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8348,7 +8348,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/15",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8448,7 +8448,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/16",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8548,7 +8548,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/17",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8648,7 +8648,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/18",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8748,7 +8748,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/19",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8848,7 +8848,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/20",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -8948,7 +8948,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/21",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9048,7 +9048,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/22",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9148,7 +9148,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/23",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9248,7 +9248,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/24",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9348,7 +9348,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/25",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9448,7 +9448,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/26",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9548,7 +9548,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/27",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9648,7 +9648,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/28",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9748,7 +9748,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/29",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9848,7 +9848,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/30",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -9948,7 +9948,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/31",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10048,7 +10048,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/32",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10148,7 +10148,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/33",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10248,7 +10248,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/34",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10348,7 +10348,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/35",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10448,7 +10448,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/36",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10548,7 +10548,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/37",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10648,7 +10648,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/38",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10748,7 +10748,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/39",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10848,7 +10848,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/40",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10948,7 +10948,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/41",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11048,7 +11048,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/42",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11148,7 +11148,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/43",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11248,7 +11248,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/44",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11348,7 +11348,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/45",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11448,7 +11448,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/46",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11548,7 +11548,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/47",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11648,7 +11648,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "te-1/1/48",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11748,7 +11748,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "qe-1/1/49",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11848,7 +11848,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "qe-1/1/50",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11948,7 +11948,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "qe-1/1/51",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -12048,7 +12048,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "qe-1/1/52",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -12148,7 +12148,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "qe-1/1/53",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -12248,7 +12248,7 @@
|
||||
"ifMtu": 1514,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "qe-1/1/54",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -12348,7 +12348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3001",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12448,7 +12448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3002",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12548,7 +12548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3003",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12648,7 +12648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3004",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12748,7 +12748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3351",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12848,7 +12848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3404",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12948,7 +12948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3406",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13048,7 +13048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3408",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13148,7 +13148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3410",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13248,7 +13248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3412",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13348,7 +13348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3414",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13448,7 +13448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3416",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13548,7 +13548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan3500",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13648,7 +13648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "vlan4088",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13748,7 +13748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "loopback",
|
||||
"ifPhysAddress": "38303a61323a",
|
||||
"ifPhysAddress": "80a235a8f758",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -748,7 +748,7 @@
|
||||
"ifMtu": 65536,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "lo",
|
||||
"ifPhysAddress": "30303a30303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -848,7 +848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "bond0",
|
||||
"ifPhysAddress": "36363a38393a",
|
||||
"ifPhysAddress": "6689078ad915",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -948,7 +948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "dummy0",
|
||||
"ifPhysAddress": "33453a31303a",
|
||||
"ifPhysAddress": "3e10f9467251",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1048,7 +1048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "30303a45303a",
|
||||
"ifPhysAddress": "00e0db607724",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1148,7 +1148,7 @@
|
||||
"ifMtu": 1480,
|
||||
"ifType": "0",
|
||||
"ifAlias": "sit0",
|
||||
"ifPhysAddress": "30303a30303a",
|
||||
"ifPhysAddress": "000000002813",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1248,7 +1248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "wlan0",
|
||||
"ifPhysAddress": "30303a45303a",
|
||||
"ifPhysAddress": "00e0db607725",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1348,7 +1348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "p2p0",
|
||||
"ifPhysAddress": "30323a45303a",
|
||||
"ifPhysAddress": "02e0dbe77725",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+55
-55
@@ -5748,7 +5748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/1",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3538,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5848,7 +5848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/2",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3538,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -5948,7 +5948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/3",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6048,7 +6048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/4",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3539,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -6148,7 +6148,7 @@
|
||||
"ifMtu": 9000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/5",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 352274093,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6248,7 +6248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/6",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2910287853,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6348,7 +6348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/7",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -6448,7 +6448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/8",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 317682152,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6548,7 +6548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/9",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2907239572,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6648,7 +6648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/10",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2358788346,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6748,7 +6748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/11",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2358763561,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6848,7 +6848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/12",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2349819448,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -6948,7 +6948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/13",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3544,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7048,7 +7048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/14",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3544,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7148,7 +7148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/15",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2359059255,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7248,7 +7248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/16",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 1164644970,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7348,7 +7348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/17",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2358843519,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7448,7 +7448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/18",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 1957806737,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7548,7 +7548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/19",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3634376272,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7648,7 +7648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/20",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7748,7 +7748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/21",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 1762405987,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7848,7 +7848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/22",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2350194154,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -7948,7 +7948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/23",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3529341544,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8048,7 +8048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/24",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2358771465,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8148,7 +8148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/25",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3529394538,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8248,7 +8248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/26",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3495150960,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8348,7 +8348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/27",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3503180747,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8448,7 +8448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/28",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3513349490,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8548,7 +8548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/29",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3513590567,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8648,7 +8648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/30",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 1957950112,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8748,7 +8748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/31",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2610492176,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8848,7 +8848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/32",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 1388549907,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -8948,7 +8948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/33",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 1957950122,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9048,7 +9048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/34",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3527446286,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9148,7 +9148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/35",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2668493483,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9248,7 +9248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/36",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3158171566,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9348,7 +9348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/37",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3550,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9448,7 +9448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/38",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2353848590,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9548,7 +9548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/39",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2359047988,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9648,7 +9648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/40",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3634376138,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9748,7 +9748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/41",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2500631154,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9848,7 +9848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/42",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3464413823,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -9948,7 +9948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/43",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3038552783,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -10048,7 +10048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/44",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 3634376196,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -10148,7 +10148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/45",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 2361255825,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -10248,7 +10248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/46",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 352396708,
|
||||
"ifVlan": "0",
|
||||
"ifTrunk": null,
|
||||
@@ -10348,7 +10348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/47",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3552,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10448,7 +10448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGigabitEthernet 0/48",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3552,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10548,7 +10548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "FortyGigabitEthernet 0/65",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3553,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10648,7 +10648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "FortyGigabitEthernet 0/66",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3553,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10748,7 +10748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "FortyGigabitEthernet 0/67",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3553,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10848,7 +10848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "FortyGigabitEthernet 0/68",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 3553,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -10948,7 +10948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "AggregatePort 1",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823b",
|
||||
"ifLastChange": 368953188,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -11048,7 +11048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "IP management Console",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11248,7 +11248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l3ipvlan",
|
||||
"ifAlias": "VLAN 1543",
|
||||
"ifPhysAddress": "35383a36393a",
|
||||
"ifPhysAddress": "58696c06823c",
|
||||
"ifLastChange": 5260,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -2937,8 +2937,8 @@
|
||||
"ifName": "eth1",
|
||||
"portName": null,
|
||||
"ifIndex": 3,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3037,8 +3037,8 @@
|
||||
"ifName": "ip6tnl0",
|
||||
"portName": null,
|
||||
"ifIndex": 4,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3137,8 +3137,8 @@
|
||||
"ifName": "sit0",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3237,8 +3237,8 @@
|
||||
"ifName": "ifb0",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3337,8 +3337,8 @@
|
||||
"ifName": "ifb1",
|
||||
"portName": null,
|
||||
"ifIndex": 7,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3437,8 +3437,8 @@
|
||||
"ifName": "gre0",
|
||||
"portName": null,
|
||||
"ifIndex": 8,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3537,8 +3537,8 @@
|
||||
"ifName": "gretap0",
|
||||
"portName": null,
|
||||
"ifIndex": 9,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3637,8 +3637,8 @@
|
||||
"ifName": "erspan0",
|
||||
"portName": null,
|
||||
"ifIndex": 10,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3737,8 +3737,8 @@
|
||||
"ifName": "ip6gre0",
|
||||
"portName": null,
|
||||
"ifIndex": 11,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3837,8 +3837,8 @@
|
||||
"ifName": "wwan0",
|
||||
"portName": null,
|
||||
"ifIndex": 12,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -3937,8 +3937,8 @@
|
||||
"ifName": "wwan0",
|
||||
"portName": null,
|
||||
"ifIndex": 13,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4037,8 +4037,8 @@
|
||||
"ifName": "br-lan",
|
||||
"portName": null,
|
||||
"ifIndex": 14,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4137,8 +4137,8 @@
|
||||
"ifName": "br-lan",
|
||||
"portName": null,
|
||||
"ifIndex": 16,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4237,8 +4237,8 @@
|
||||
"ifName": "br-lan",
|
||||
"portName": null,
|
||||
"ifIndex": 19,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4337,8 +4337,8 @@
|
||||
"ifName": "br-lan",
|
||||
"portName": null,
|
||||
"ifIndex": 20,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4437,8 +4437,8 @@
|
||||
"ifName": "qmimux0",
|
||||
"portName": null,
|
||||
"ifIndex": 21,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -4537,8 +4537,8 @@
|
||||
"ifName": "qmimux1",
|
||||
"portName": null,
|
||||
"ifIndex": 22,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4637,8 +4637,8 @@
|
||||
"ifName": "qmimux2",
|
||||
"portName": null,
|
||||
"ifIndex": 23,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4737,8 +4737,8 @@
|
||||
"ifName": "qmimux3",
|
||||
"portName": null,
|
||||
"ifIndex": 24,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4837,8 +4837,8 @@
|
||||
"ifName": "qmimux4",
|
||||
"portName": null,
|
||||
"ifIndex": 25,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4937,8 +4937,8 @@
|
||||
"ifName": "qmimux5",
|
||||
"portName": null,
|
||||
"ifIndex": 26,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5037,8 +5037,8 @@
|
||||
"ifName": "qmimux6",
|
||||
"portName": null,
|
||||
"ifIndex": 27,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5137,8 +5137,8 @@
|
||||
"ifName": "qmimux7",
|
||||
"portName": null,
|
||||
"ifIndex": 28,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5237,8 +5237,8 @@
|
||||
"ifName": "qmimux8",
|
||||
"portName": null,
|
||||
"ifIndex": 29,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5337,8 +5337,8 @@
|
||||
"ifName": "qmimux8",
|
||||
"portName": null,
|
||||
"ifIndex": 30,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
|
||||
@@ -1148,7 +1148,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/4",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac105659",
|
||||
"ifLastChange": 3702,
|
||||
"ifVlan": "101",
|
||||
"ifTrunk": null,
|
||||
@@ -1248,7 +1248,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/2",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac10565a",
|
||||
"ifLastChange": 967,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1348,7 +1348,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/3",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac10565b",
|
||||
"ifLastChange": 378580864,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1448,7 +1448,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/1",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac10565c",
|
||||
"ifLastChange": 967,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/5",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac10565d",
|
||||
"ifLastChange": 1727141963,
|
||||
"ifVlan": "200",
|
||||
"ifTrunk": null,
|
||||
@@ -1648,7 +1648,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/6",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac10565e",
|
||||
"ifLastChange": 3706,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1748,7 +1748,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/7",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac10565f",
|
||||
"ifLastChange": 968,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1848,7 +1848,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/8",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac105660",
|
||||
"ifLastChange": 4632,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1948,7 +1948,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/9",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac105661",
|
||||
"ifLastChange": 968,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2048,7 +2048,7 @@
|
||||
"ifMtu": 12266,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Slot0/10",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac105662",
|
||||
"ifLastChange": 968,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2148,7 +2148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l3ipvlan",
|
||||
"ifAlias": "vlan101",
|
||||
"ifPhysAddress": "303a62303a61",
|
||||
"ifPhysAddress": "00b0ac105658",
|
||||
"ifLastChange": 3979,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -848,7 +848,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "1",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d07232a",
|
||||
"ifLastChange": 226600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -948,7 +948,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "2",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d07232b",
|
||||
"ifLastChange": 226600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1048,7 +1048,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "3",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d07232c",
|
||||
"ifLastChange": 226600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1148,7 +1148,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "4",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d07232d",
|
||||
"ifLastChange": 223500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1248,7 +1248,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "5",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d07232e",
|
||||
"ifLastChange": 178200,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1348,7 +1348,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "6",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d07232f",
|
||||
"ifLastChange": 477089900,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1448,7 +1448,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "7",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d072330",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 10000,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "8",
|
||||
"ifPhysAddress": "30303a31353a",
|
||||
"ifPhysAddress": "00154d072331",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
+26
-26
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "ethernet0/0",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1878",
|
||||
"ifLastChange": 278,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1648,7 +1648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "ethernet0/1",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1879",
|
||||
"ifLastChange": 278,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1737,8 +1737,8 @@
|
||||
"ifName": "cellular1/0",
|
||||
"portName": null,
|
||||
"ifIndex": 3,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1837,8 +1837,8 @@
|
||||
"ifName": "cellular1/1",
|
||||
"portName": null,
|
||||
"ifIndex": 4,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1848,7 +1848,7 @@
|
||||
"ifMtu": 2048,
|
||||
"ifType": "ipForward",
|
||||
"ifAlias": "cellular1/1",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 78,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -1937,8 +1937,8 @@
|
||||
"ifName": "loopback600",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -2048,7 +2048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l2vlan",
|
||||
"ifAlias": "vlan PLATA 16-11-2018",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1878",
|
||||
"ifLastChange": 122671,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2148,7 +2148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l2vlan",
|
||||
"ifAlias": "vlan PLATA 16-11-2018",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1878",
|
||||
"ifLastChange": 122671,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2248,7 +2248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l2vlan",
|
||||
"ifAlias": "vlan PLATA 16-11-2018",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1878",
|
||||
"ifLastChange": 122671,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2348,7 +2348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l2vlan",
|
||||
"ifAlias": "vlan PLATA 16-11-2018",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1878",
|
||||
"ifLastChange": 122671,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2448,7 +2448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "l2vlan",
|
||||
"ifAlias": "ethernet0/1.7",
|
||||
"ifPhysAddress": "303a61303a32",
|
||||
"ifPhysAddress": "00a026ae1879",
|
||||
"ifLastChange": 278,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2637,8 +2637,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64537,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -2648,7 +2648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 122600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2737,8 +2737,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64538,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2748,7 +2748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2837,8 +2837,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64539,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2848,7 +2848,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2937,8 +2937,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64540,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2948,7 +2948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -2916,8 +2916,8 @@
|
||||
"ifName": "cellular0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 3,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3016,8 +3016,8 @@
|
||||
"ifName": "cellular0/1",
|
||||
"portName": null,
|
||||
"ifIndex": 4,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3116,8 +3116,8 @@
|
||||
"ifName": "cellular0/2",
|
||||
"portName": null,
|
||||
"ifIndex": 5,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3216,8 +3216,8 @@
|
||||
"ifName": "cellular1/0",
|
||||
"portName": null,
|
||||
"ifIndex": 6,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -3416,8 +3416,8 @@
|
||||
"ifName": "cellular1/2",
|
||||
"portName": null,
|
||||
"ifIndex": 8,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3516,8 +3516,8 @@
|
||||
"ifName": "wlan0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 9,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3616,8 +3616,8 @@
|
||||
"ifName": "ppp30",
|
||||
"portName": null,
|
||||
"ifIndex": 10,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "lowerLayerDown",
|
||||
"ifOperStatus_prev": "lowerLayerDown",
|
||||
@@ -3627,7 +3627,7 @@
|
||||
"ifMtu": 2048,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "ppp30",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3716,8 +3716,8 @@
|
||||
"ifName": "ppp40",
|
||||
"portName": null,
|
||||
"ifIndex": 11,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "lowerLayerDown",
|
||||
"ifOperStatus_prev": "lowerLayerDown",
|
||||
@@ -3727,7 +3727,7 @@
|
||||
"ifMtu": 2048,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "ppp40",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4116,8 +4116,8 @@
|
||||
"ifName": "l2tp30",
|
||||
"portName": null,
|
||||
"ifIndex": 15,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4216,8 +4216,8 @@
|
||||
"ifName": "l2tp40",
|
||||
"portName": null,
|
||||
"ifIndex": 16,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4716,8 +4716,8 @@
|
||||
"ifName": "l2tp30",
|
||||
"portName": null,
|
||||
"ifIndex": 21,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -4816,8 +4816,8 @@
|
||||
"ifName": "l2tp40",
|
||||
"portName": null,
|
||||
"ifIndex": 22,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5016,8 +5016,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64537,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -5027,7 +5027,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 500,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5116,8 +5116,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64538,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5127,7 +5127,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5216,8 +5216,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64539,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5227,7 +5227,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -5316,8 +5316,8 @@
|
||||
"ifName": "ethernet0/0",
|
||||
"portName": null,
|
||||
"ifIndex": 64540,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -5327,7 +5327,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -2448,7 +2448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2548,7 +2548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2648,7 +2648,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 33400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2748,7 +2748,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 200,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -2948,7 +2948,7 @@
|
||||
"ifMtu": 1524,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "ppp10",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 397921400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3048,7 +3048,7 @@
|
||||
"ifMtu": 1524,
|
||||
"ifType": "ppp",
|
||||
"ifAlias": "ppp20",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 397922000,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "adsl",
|
||||
"ifAlias": "ADSL Physical/0 Hardware: SOFTDSL_V2A2P",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fast",
|
||||
"ifAlias": "ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4148,7 +4148,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "interleave",
|
||||
"ifAlias": "ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4248,7 +4248,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4348,7 +4348,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1800,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4448,7 +4448,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1800,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -4548,7 +4548,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 263400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -2727,7 +2727,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "adsl",
|
||||
"ifAlias": "ADSL Physical/0 Hardware: SOFTDSL_V2A2P",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2827,7 +2827,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "fast",
|
||||
"ifAlias": "ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -2927,7 +2927,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "interleave",
|
||||
"ifAlias": "ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3027,7 +3027,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 414565400,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3127,7 +3127,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 373321000,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3227,7 +3227,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 1700,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3327,7 +3327,7 @@
|
||||
"ifMtu": 0,
|
||||
"ifType": "iso88023Csmacd",
|
||||
"ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifPhysAddress": null,
|
||||
"ifLastChange": 374721300,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -6948,7 +6948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7048,7 +7048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/2",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7148,7 +7148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7248,7 +7248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7348,7 +7348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7448,7 +7448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7548,7 +7548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7648,7 +7648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon1/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7748,7 +7748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7848,7 +7848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/2",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -7948,7 +7948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8048,7 +8048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8148,7 +8148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8248,7 +8248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8348,7 +8348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8448,7 +8448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon2/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8548,7 +8548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8648,7 +8648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/2",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8748,7 +8748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8848,7 +8848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -8948,7 +8948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9048,7 +9048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9148,7 +9148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9248,7 +9248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon3/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9348,7 +9348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9448,7 +9448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/2",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9548,7 +9548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9648,7 +9648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9748,7 +9748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Fiber 57-58",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9848,7 +9848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -9948,7 +9948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10048,7 +10048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon4/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10148,7 +10148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10248,7 +10248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/2",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10348,7 +10348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10448,7 +10448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10548,7 +10548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10648,7 +10648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10748,7 +10748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10848,7 +10848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon5/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -10948,7 +10948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10G Ingress Backbone Lag-A from Juniper Core XE-0/0/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 303670000,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11048,7 +11048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10G Backbone Lag-A to QUL1 te6/1-BXD",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 1486785900,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11148,7 +11148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi6/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11248,7 +11248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi6/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11348,7 +11348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi6/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 798028600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11448,7 +11448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi6/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11548,7 +11548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi6/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11648,7 +11648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "ELTEK 172.30.3.7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 2111400700,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11748,7 +11748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10G Ingress Backbone Lag-B from Juniper Core XE-1/0/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 2952768600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11848,7 +11848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "10G Backbone Lag-B to QUL1 te7/1-BXD",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 1486785900,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -11948,7 +11948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi7/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12048,7 +12048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi7/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12148,7 +12148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi7/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12248,7 +12248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi7/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12348,7 +12348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi7/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12448,7 +12448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "TenGi7/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12548,7 +12548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12648,7 +12648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/2",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12748,7 +12748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/3",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12848,7 +12848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/4",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -12948,7 +12948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/5",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13048,7 +13048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/6",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13148,7 +13148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/7",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13248,7 +13248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Tpon8/8",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13348,7 +13348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "PortChannel to Juniper Core LACP",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 2952768600,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13448,7 +13448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "PortChannel to Qualls LACP",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 1486785900,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13548,7 +13548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "propVirtual",
|
||||
"ifAlias": "Vlan1",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef27",
|
||||
"ifLastChange": 782623300,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -13648,7 +13648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "303a32343a34",
|
||||
"ifPhysAddress": "00244506ef38",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -327,7 +327,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "eth0",
|
||||
"ifPhysAddress": "303a323a6431",
|
||||
"ifPhysAddress": "0002d143a526",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "softwareLoopback",
|
||||
"ifAlias": "Nucleus NET Software Loopback Interface",
|
||||
"ifPhysAddress": "303a303a303a",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -348,7 +348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "MFC5272 Ethernet: Software revision 1.0",
|
||||
"ifPhysAddress": "303a32303a65",
|
||||
"ifPhysAddress": "0020e903486e",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -3148,7 +3148,7 @@
|
||||
"ifMtu": 1536,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "wds-iap3",
|
||||
"ifPhysAddress": "506028764a00",
|
||||
"ifPhysAddress": "50602876040a",
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
@@ -3437,8 +3437,8 @@
|
||||
"ifName": "gre0",
|
||||
"portName": null,
|
||||
"ifIndex": 14,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
@@ -3637,8 +3637,8 @@
|
||||
"ifName": "sit0",
|
||||
"portName": null,
|
||||
"ifIndex": 16,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -3737,8 +3737,8 @@
|
||||
"ifName": "cap0",
|
||||
"portName": null,
|
||||
"ifIndex": 17,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
|
||||
@@ -1348,7 +1348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 4400,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1437,8 +1437,8 @@
|
||||
"ifName": "1/02",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1448,7 +1448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 4400,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1537,8 +1537,8 @@
|
||||
"ifName": "1/03",
|
||||
"portName": null,
|
||||
"ifIndex": 3,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1548,7 +1548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "swp02",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 3476377800,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1637,8 +1637,8 @@
|
||||
"ifName": "1/04",
|
||||
"portName": null,
|
||||
"ifIndex": 4,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1648,7 +1648,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "swp03",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 3545688100,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1748,7 +1748,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 2678910900,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1848,7 +1848,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 4400,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -1937,8 +1937,8 @@
|
||||
"ifName": "1/07",
|
||||
"portName": null,
|
||||
"ifIndex": 7,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -1948,7 +1948,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "swp06",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 3475352800,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2037,8 +2037,8 @@
|
||||
"ifName": "1/08",
|
||||
"portName": null,
|
||||
"ifIndex": 8,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": 0,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
@@ -2048,7 +2048,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "swp07",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 3405622700,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2148,7 +2148,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 3383234400,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2248,7 +2248,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 630668600,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2348,7 +2348,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 3545462600,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2448,7 +2448,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "<private>",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 2906317300,
|
||||
"ifVlan": "1",
|
||||
"ifTrunk": null,
|
||||
@@ -2548,7 +2548,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "enet0",
|
||||
"ifPhysAddress": "3c7072697661",
|
||||
"ifPhysAddress": "010203040506",
|
||||
"ifLastChange": 900,
|
||||
"ifVlan": null,
|
||||
"ifTrunk": null,
|
||||
|
||||
@@ -36,10 +36,10 @@
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|18E8291E393B
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|18E8291E393B
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|1AE8291E393B
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|78:8a:20:5f:1d:d6
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|7a:8a:20:5f:1d:d6
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|7a:8a:20:5f:1d:d6
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|78:8a:20:5f:1d:d6
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|788a205f1dd6
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|7a8a205f1dd6
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|7a8a205f1dd6
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|788a205f1dd6
|
||||
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.4|2|1
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|1500
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:b:dc:34:d1:6
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|000bdc34d106
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||
|
||||
@@ -904,8 +904,8 @@
|
||||
1.3.6.1.2.1.2.2.1.6.46|4|
|
||||
1.3.6.1.2.1.2.2.1.6.47|4|
|
||||
1.3.6.1.2.1.2.2.1.6.48|4|
|
||||
1.3.6.1.2.1.2.2.1.6.998|4|0:1b:6e:1:36:a7
|
||||
1.3.6.1.2.1.2.2.1.6.999|4|0:1b:6e:1:36:a6
|
||||
1.3.6.1.2.1.2.2.1.6.998|4x|001b6e0136a7
|
||||
1.3.6.1.2.1.2.2.1.6.999|4x|001b6e0136a6
|
||||
1.3.6.1.2.1.2.2.1.6.9001|4|
|
||||
1.3.6.1.2.1.2.2.1.6.9002|4|
|
||||
1.3.6.1.2.1.2.2.1.6.9003|4|
|
||||
|
||||
@@ -156,35 +156,35 @@
|
||||
1.3.6.1.2.1.2.2.1.4.1000002|2|0
|
||||
1.3.6.1.2.1.2.2.1.4.1000101|2|9214
|
||||
1.3.6.1.2.1.2.2.1.4.2004094|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:1c:73:b3:bd:72
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:1c:73:b3:bd:73
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|0:1c:73:b3:bd:74
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|0:1c:73:b3:bd:75
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|0:1c:73:b3:bd:76
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|0:1c:73:b3:bd:77
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|0:1c:73:b3:bd:78
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|0:1c:73:b3:bd:79
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|0:1c:73:b3:bd:7a
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|0:1c:73:b3:bd:7b
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|0:1c:73:b3:bd:7c
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|0:1c:73:b3:bd:7d
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|0:1c:73:b3:bd:7e
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|0:1c:73:b3:bd:7f
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|0:1c:73:b3:bd:80
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|0:1c:73:b3:bd:81
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|0:1c:73:b3:bd:82
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|0:1c:73:b3:bd:83
|
||||
1.3.6.1.2.1.2.2.1.6.19|4|0:1c:73:b3:bd:84
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|0:1c:73:b3:bd:85
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|0:1c:73:b3:bd:86
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|0:1c:73:b3:bd:87
|
||||
1.3.6.1.2.1.2.2.1.6.23|4|0:1c:73:b3:bd:88
|
||||
1.3.6.1.2.1.2.2.1.6.24|4|0:1c:73:b3:bd:89
|
||||
1.3.6.1.2.1.2.2.1.6.999001|4|0:1c:73:b3:bd:70
|
||||
1.3.6.1.2.1.2.2.1.6.1000001|4|0:1c:73:b3:bd:88
|
||||
1.3.6.1.2.1.2.2.1.6.1000002|4|0:1c:73:b3:bd:87
|
||||
1.3.6.1.2.1.2.2.1.6.1000101|4|0:1c:73:b3:bd:72
|
||||
1.3.6.1.2.1.2.2.1.6.2004094|4|0:1c:73:b3:bd:71
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|001c73b3bd72
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|001c73b3bd73
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|001c73b3bd74
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|001c73b3bd75
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|001c73b3bd76
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|001c73b3bd77
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|001c73b3bd78
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|001c73b3bd79
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|001c73b3bd7a
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|001c73b3bd7b
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|001c73b3bd7c
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|001c73b3bd7d
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|001c73b3bd7e
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|001c73b3bd7f
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|001c73b3bd80
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|001c73b3bd81
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|001c73b3bd82
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|001c73b3bd83
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|001c73b3bd84
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|001c73b3bd85
|
||||
1.3.6.1.2.1.2.2.1.6.21|4x|001c73b3bd86
|
||||
1.3.6.1.2.1.2.2.1.6.22|4x|001c73b3bd87
|
||||
1.3.6.1.2.1.2.2.1.6.23|4x|001c73b3bd88
|
||||
1.3.6.1.2.1.2.2.1.6.24|4x|001c73b3bd89
|
||||
1.3.6.1.2.1.2.2.1.6.999001|4x|001c73b3bd70
|
||||
1.3.6.1.2.1.2.2.1.6.1000001|4x|001c73b3bd88
|
||||
1.3.6.1.2.1.2.2.1.6.1000002|4x|001c73b3bd87
|
||||
1.3.6.1.2.1.2.2.1.6.1000101|4x|001c73b3bd72
|
||||
1.3.6.1.2.1.2.2.1.6.2004094|4x|001c73b3bd71
|
||||
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
|
||||
|
||||
@@ -50,8 +50,8 @@
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|1000000000
|
||||
1.3.6.1.2.1.2.2.1.5.3|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:e0:86:29:a0:f4
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|0:e0:86:29:a0:f5
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|00e08629a0f4
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|00e08629a0f5
|
||||
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
|
||||
|
||||
@@ -40,18 +40,18 @@
|
||||
1.3.6.1.2.1.2.2.1.4.138|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.139|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.158|2|2000
|
||||
1.3.6.1.2.1.2.2.1.6.80|4|0:6:31:2a:67:2a
|
||||
1.3.6.1.2.1.2.2.1.6.81|4|0:6:31:2a:67:2b
|
||||
1.3.6.1.2.1.2.2.1.6.82|4|0:6:31:2a:67:2c
|
||||
1.3.6.1.2.1.2.2.1.6.83|4|0:6:31:2a:67:2d
|
||||
1.3.6.1.2.1.2.2.1.6.104|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.134|4|0:6:31:31:3f:d
|
||||
1.3.6.1.2.1.2.2.1.6.135|4|0:6:31:2a:67:27
|
||||
1.3.6.1.2.1.2.2.1.6.136|4|0:6:31:2a:67:28
|
||||
1.3.6.1.2.1.2.2.1.6.137|4|0:6:31:2a:67:29
|
||||
1.3.6.1.2.1.2.2.1.6.138|4|0:6:31:2a:67:2a
|
||||
1.3.6.1.2.1.2.2.1.6.139|4|0:6:31:2a:67:2b
|
||||
1.3.6.1.2.1.2.2.1.6.158|4|0:6:31:2a:67:26
|
||||
1.3.6.1.2.1.2.2.1.6.80|4x|0006312a672a
|
||||
1.3.6.1.2.1.2.2.1.6.81|4x|0006312a672b
|
||||
1.3.6.1.2.1.2.2.1.6.82|4x|0006312a672c
|
||||
1.3.6.1.2.1.2.2.1.6.83|4x|0006312a672d
|
||||
1.3.6.1.2.1.2.2.1.6.104|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.134|4x|000631313f0d
|
||||
1.3.6.1.2.1.2.2.1.6.135|4x|0006312a6727
|
||||
1.3.6.1.2.1.2.2.1.6.136|4x|0006312a6728
|
||||
1.3.6.1.2.1.2.2.1.6.137|4x|0006312a6729
|
||||
1.3.6.1.2.1.2.2.1.6.138|4x|0006312a672a
|
||||
1.3.6.1.2.1.2.2.1.6.139|4x|0006312a672b
|
||||
1.3.6.1.2.1.2.2.1.6.158|4x|0006312a6726
|
||||
1.3.6.1.2.1.2.2.1.7.80|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.81|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.82|2|1
|
||||
|
||||
@@ -136,11 +136,11 @@
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|2c:39:c1:8:5:99
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|2c:39:c1:8:5:9a
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|2c:39:c1:8:5:a9
|
||||
1.3.6.1.2.1.2.2.1.6.48|4|2c:39:c1:8:5:c5
|
||||
1.3.6.1.2.1.2.2.1.6.49|4|2c:39:c1:8:5:c6
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|2c39c1080599
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|2c39c108059a
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|2c39c10805a9
|
||||
1.3.6.1.2.1.2.2.1.6.48|4x|2c39c10805c5
|
||||
1.3.6.1.2.1.2.2.1.6.49|4x|2c39c10805c6
|
||||
1.3.6.1.2.1.2.2.1.6.16777728|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16777729|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16777730|4|
|
||||
|
||||
@@ -32,14 +32,14 @@
|
||||
1.3.6.1.2.1.2.2.1.4.8|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.9|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|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|3C707269766174653E
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|010203040506
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|010203040506
|
||||
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
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003EE0132A
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|LPBACK
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|0A003EE0132B
|
||||
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.8.1|2|1
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|management
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|00:50:56:93:d0:4f
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|00505693d04f
|
||||
1.3.6.1.2.1.2.2.1.7.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.2|67|0
|
||||
|
||||
+232
-232
@@ -700,238 +700,238 @@
|
||||
1.3.6.1.2.1.2.2.1.4.256|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.257|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.258|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.19|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.23|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.24|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.25|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.26|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.27|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.28|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.29|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.30|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.31|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.32|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.33|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.34|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.35|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.36|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.37|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.38|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.39|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.40|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.41|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.42|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.43|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.44|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.45|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.46|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.47|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.48|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.49|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.50|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.51|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.52|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.53|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.54|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.55|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.56|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.57|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.58|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.59|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.60|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.61|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.62|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.63|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.64|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.65|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.66|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.67|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.68|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.69|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.70|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.71|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.72|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.73|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.74|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.75|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.76|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.77|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.78|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.79|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.80|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.81|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.82|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.83|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.84|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.85|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.86|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.87|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.88|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.89|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.90|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.91|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.92|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.93|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.94|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.95|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.96|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.97|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.98|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.99|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.100|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.101|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.102|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.103|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.104|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.105|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.106|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.107|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.108|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.109|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.110|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.111|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.112|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.113|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.114|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.115|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.116|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.117|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.118|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.119|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.120|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.121|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.122|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.123|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.124|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.125|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.126|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.127|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.128|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.129|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.130|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.131|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.132|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.133|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.134|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.135|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.136|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.137|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.138|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.139|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.140|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.141|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.142|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.143|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.144|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.145|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.146|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.147|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.148|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.149|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.150|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.151|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.152|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.153|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.154|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.155|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.156|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.157|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.158|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.159|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.160|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.161|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.162|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.163|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.164|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.165|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.166|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.167|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.168|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.169|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.170|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.171|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.172|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.173|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.174|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.175|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.176|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.177|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.178|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.179|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.180|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.181|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.182|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.183|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.184|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.185|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.186|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.187|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.188|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.189|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.190|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.191|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.192|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.193|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.194|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.195|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.196|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.197|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.198|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.199|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.200|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.201|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.202|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.203|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.204|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.205|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.206|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.207|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.208|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.209|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.210|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.211|4|b8:af:67:63:e5:24
|
||||
1.3.6.1.2.1.2.2.1.6.213|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.214|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.221|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.222|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.223|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.224|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.225|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.226|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.227|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.228|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.229|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.230|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.232|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.233|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.234|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.235|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.236|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.237|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.256|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.257|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.258|4|b8:af:67:63:e5:23
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.21|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.22|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.23|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.24|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.25|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.26|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.27|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.28|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.29|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.30|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.31|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.32|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.33|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.34|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.35|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.36|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.37|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.38|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.39|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.40|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.41|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.42|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.43|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.44|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.45|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.46|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.47|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.48|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.49|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.50|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.51|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.52|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.53|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.54|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.55|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.56|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.57|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.58|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.59|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.60|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.61|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.62|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.63|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.64|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.65|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.66|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.67|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.68|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.69|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.70|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.71|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.72|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.73|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.74|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.75|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.76|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.77|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.78|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.79|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.80|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.81|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.82|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.83|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.84|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.85|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.86|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.87|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.88|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.89|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.90|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.91|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.92|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.93|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.94|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.95|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.96|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.97|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.98|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.99|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.100|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.101|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.102|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.103|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.104|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.105|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.106|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.107|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.108|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.109|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.110|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.111|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.112|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.113|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.114|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.115|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.116|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.117|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.118|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.119|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.120|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.121|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.122|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.123|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.124|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.125|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.126|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.127|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.128|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.129|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.130|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.131|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.132|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.133|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.134|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.135|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.136|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.137|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.138|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.139|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.140|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.141|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.142|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.143|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.144|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.145|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.146|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.147|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.148|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.149|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.150|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.151|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.152|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.153|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.154|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.155|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.156|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.157|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.158|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.159|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.160|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.161|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.162|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.163|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.164|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.165|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.166|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.167|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.168|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.169|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.170|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.171|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.172|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.173|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.174|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.175|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.176|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.177|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.178|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.179|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.180|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.181|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.182|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.183|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.184|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.185|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.186|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.187|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.188|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.189|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.190|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.191|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.192|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.193|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.194|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.195|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.196|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.197|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.198|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.199|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.200|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.201|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.202|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.203|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.204|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.205|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.206|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.207|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.208|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.209|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.210|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.211|4x|b8af6763e524
|
||||
1.3.6.1.2.1.2.2.1.6.213|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.214|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.221|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.222|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.223|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.224|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.225|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.226|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.227|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.228|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.229|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.230|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.232|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.233|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.234|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.235|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.236|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.237|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.256|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.257|4x|b8af6763e523
|
||||
1.3.6.1.2.1.2.2.1.6.258|4x|b8af6763e523
|
||||
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
|
||||
|
||||
@@ -146,8 +146,8 @@
|
||||
1.3.6.1.2.1.2.2.1.5.35|66|0
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|3AECD6B7E836
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|00000000
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|00000000000000000000000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|001517782EED
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|001517782EEC
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|001517782EEF
|
||||
@@ -155,7 +155,7 @@
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|80C16EEC060E
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|00000000
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|001517782EED
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|001517782EED
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|3c:ef:8c:8:4e:1e
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|3cef8c084e1e
|
||||
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.8.1|2|1
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:21:b7:43:f5:81
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|0021b743f581
|
||||
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.8.1|2|1
|
||||
|
||||
@@ -54,10 +54,10 @@
|
||||
1.3.6.1.2.1.2.2.1.5.7|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.71|66|0
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:c0:ff:65:8f:ac
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|00c0ff658fac
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|2:c0:ff:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|0:c0:ff:65:8f:ac
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|02c0ff000000
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|00c0ff658fac
|
||||
1.3.6.1.2.1.2.2.1.6.71|4|
|
||||
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
|
||||
|
||||
@@ -158,41 +158,41 @@
|
||||
1.3.6.1.2.1.2.2.1.4.3034|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.5121|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.40000|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|10:62:eb:d1:a6:c1
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|10:62:eb:d1:a6:c2
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|10:62:eb:d1:a6:c3
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|10:62:eb:d1:a6:c4
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|10:62:eb:d1:a6:c5
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|10:62:eb:d1:a6:c6
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|10:62:eb:d1:a6:c7
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|10:62:eb:d1:a6:c8
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|10:62:eb:d1:a6:c9
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|10:62:eb:d1:a6:ca
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|10:62:eb:d1:a6:cb
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|10:62:eb:d1:a6:cc
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|10:62:eb:d1:a6:cd
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|10:62:eb:d1:a6:ce
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|10:62:eb:d1:a6:cf
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|10:62:eb:d1:a6:d0
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|10:62:eb:d1:a6:d1
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|10:62:eb:d1:a6:d2
|
||||
1.3.6.1.2.1.2.2.1.6.19|4|10:62:eb:d1:a6:d3
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|10:62:eb:d1:a6:d4
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|10:62:eb:d1:a6:d5
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|10:62:eb:d1:a6:d6
|
||||
1.3.6.1.2.1.2.2.1.6.23|4|10:62:eb:d1:a6:d7
|
||||
1.3.6.1.2.1.2.2.1.6.24|4|10:62:eb:d1:a6:d8
|
||||
1.3.6.1.2.1.2.2.1.6.25|4|10:62:eb:d1:a6:d9
|
||||
1.3.6.1.2.1.2.2.1.6.26|4|10:62:eb:d1:a6:da
|
||||
1.3.6.1.2.1.2.2.1.6.27|4|10:62:eb:d1:a6:db
|
||||
1.3.6.1.2.1.2.2.1.6.28|4|10:62:eb:d1:a6:dc
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|1062ebd1a6c1
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|1062ebd1a6c2
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|1062ebd1a6c3
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|1062ebd1a6c4
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|1062ebd1a6c5
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|1062ebd1a6c6
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|1062ebd1a6c7
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|1062ebd1a6c8
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|1062ebd1a6c9
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|1062ebd1a6ca
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|1062ebd1a6cb
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|1062ebd1a6cc
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|1062ebd1a6cd
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|1062ebd1a6ce
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|1062ebd1a6cf
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|1062ebd1a6d0
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|1062ebd1a6d1
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|1062ebd1a6d2
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|1062ebd1a6d3
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|1062ebd1a6d4
|
||||
1.3.6.1.2.1.2.2.1.6.21|4x|1062ebd1a6d5
|
||||
1.3.6.1.2.1.2.2.1.6.22|4x|1062ebd1a6d6
|
||||
1.3.6.1.2.1.2.2.1.6.23|4x|1062ebd1a6d7
|
||||
1.3.6.1.2.1.2.2.1.6.24|4x|1062ebd1a6d8
|
||||
1.3.6.1.2.1.2.2.1.6.25|4x|1062ebd1a6d9
|
||||
1.3.6.1.2.1.2.2.1.6.26|4x|1062ebd1a6da
|
||||
1.3.6.1.2.1.2.2.1.6.27|4x|1062ebd1a6db
|
||||
1.3.6.1.2.1.2.2.1.6.28|4x|1062ebd1a6dc
|
||||
1.3.6.1.2.1.2.2.1.6.1024|4|
|
||||
1.3.6.1.2.1.2.2.1.6.1234|4|
|
||||
1.3.6.1.2.1.2.2.1.6.1453|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2013|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2014|4|
|
||||
1.3.6.1.2.1.2.2.1.6.3034|4|
|
||||
1.3.6.1.2.1.2.2.1.6.5121|4|10:62:eb:d1:a6:c0
|
||||
1.3.6.1.2.1.2.2.1.6.5121|4x|1062ebd1a6c0
|
||||
1.3.6.1.2.1.2.2.1.6.40000|4|
|
||||
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
|
||||
|
||||
+65
-65
@@ -528,67 +528,67 @@
|
||||
1.3.6.1.2.1.2.2.1.6.1054852|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1054980|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1055108|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.2097156|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097284|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097412|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097540|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097668|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097796|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097924|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098052|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098180|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098308|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098436|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098564|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098692|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098820|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098948|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099076|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099204|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099332|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099460|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099588|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099716|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099844|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099972|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100100|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100228|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100356|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100484|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100612|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100740|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100868|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100996|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101124|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101252|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101380|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101508|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101636|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101764|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101892|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102020|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102148|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102276|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102404|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102532|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102660|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102788|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102916|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103044|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103172|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103301|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103813|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2104325|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2104837|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2105349|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2105861|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097156|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097284|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097412|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097540|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097668|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097796|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097924|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098052|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098180|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098308|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098436|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098564|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098692|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098820|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098948|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099076|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099204|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099332|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099460|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099588|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099716|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099844|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099972|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100100|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100228|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100356|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100484|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100612|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100740|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100868|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100996|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101124|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101252|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101380|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101508|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101636|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101764|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101892|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102020|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102148|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102276|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102404|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102532|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102660|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102788|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102916|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103044|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103172|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103301|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103813|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2104325|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2104837|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2105349|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2105861|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.7340033|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.9437185|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.10485761|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.11534337|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.12582913|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.13631489|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.14680065|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.9437185|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.10485761|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.11534337|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.12582913|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.13631489|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.14680065|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.1233125376|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.1258291712|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258292224|4x|F48E38141241
|
||||
@@ -608,12 +608,12 @@
|
||||
1.3.6.1.2.1.2.2.1.6.1258299392|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258308096|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258310144|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258314240|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258314752|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258316288|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258318336|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258314240|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1258314752|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1258316288|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1258318336|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1275068928|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1275119104|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1275119104|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1275119616|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1275593728|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1275595264|4x|F48E38141241
|
||||
|
||||
@@ -678,77 +678,77 @@
|
||||
1.3.6.1.2.1.2.2.1.6.1054852|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1054980|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1055108|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.2097156|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097156|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097157|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2097284|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097412|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097540|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097668|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097284|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097412|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097540|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097668|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097669|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2097796|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097924|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098052|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098180|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2097796|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2097924|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098052|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098180|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098181|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2098308|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098436|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098564|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098692|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098308|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098436|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098564|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098692|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098693|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2098820|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098948|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099076|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099204|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2098820|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2098948|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099076|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099204|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099214|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2099332|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099460|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099588|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099716|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099332|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099460|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099588|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099716|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099726|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2099844|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099972|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100100|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100228|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2099844|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2099972|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100100|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100228|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100238|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2100356|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100484|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100612|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100740|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100356|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100484|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100612|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100740|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100750|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2100868|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100996|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101124|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101252|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2100868|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2100996|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101124|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101252|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101262|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2101380|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101508|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101636|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101764|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101380|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101508|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101636|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101764|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2101774|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2101892|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102020|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102148|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102276|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2101892|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102020|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102148|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102276|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102286|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2102404|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102532|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102660|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102788|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102404|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102532|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102660|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102788|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2102798|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2102916|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103044|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103172|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103301|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2102916|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103044|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103172|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103301|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103310|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2103813|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2103813|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2103822|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2104325|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2104325|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2104334|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2104837|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2104837|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2104846|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2105349|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2105349|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2105358|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2105861|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.2105861|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.2105870|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2106382|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2106894|4x|3C2C30033282
|
||||
@@ -767,12 +767,12 @@
|
||||
1.3.6.1.2.1.2.2.1.6.2113540|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.2113668|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.7340033|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.9437185|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.10485761|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.11534337|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.12582913|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.13631489|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.14680065|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.9437185|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.10485761|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.11534337|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.12582913|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.13631489|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.14680065|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.1233125376|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.1258291712|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258292224|4x|F48E38141241
|
||||
@@ -794,12 +794,12 @@
|
||||
1.3.6.1.2.1.2.2.1.6.1258302976|4x|3C2C30033282
|
||||
1.3.6.1.2.1.2.2.1.6.1258308096|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258310144|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1258314240|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258314752|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258316288|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258318336|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1258314240|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1258314752|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1258316288|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1258318336|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1275068928|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1275119104|4|e4:f0:4:e1:67:1a
|
||||
1.3.6.1.2.1.2.2.1.6.1275119104|4x|e4f004e1671a
|
||||
1.3.6.1.2.1.2.2.1.6.1275119616|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1275593728|4x|F48E38141241
|
||||
1.3.6.1.2.1.2.2.1.6.1275595264|4x|F48E38141241
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|0
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|40:f5:20:47:38:23
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|40f520473823
|
||||
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.8.1|2|1
|
||||
|
||||
+96
-96
@@ -316,102 +316,102 @@
|
||||
1.3.6.1.2.1.2.2.1.6.805306372|4|
|
||||
1.3.6.1.2.1.2.2.1.6.805306373|4x|0027F8D8FAE9
|
||||
1.3.6.1.2.1.2.2.1.6.805306374|4x|0027F8D8FAE9
|
||||
1.3.6.1.2.1.2.2.1.6.1073741824|4|65536
|
||||
1.3.6.1.2.1.2.2.1.6.1073741825|4|65792
|
||||
1.3.6.1.2.1.2.2.1.6.1073741826|4|66048
|
||||
1.3.6.1.2.1.2.2.1.6.1073741827|4|66304
|
||||
1.3.6.1.2.1.2.2.1.6.1073741828|4|66560
|
||||
1.3.6.1.2.1.2.2.1.6.1073741829|4|66816
|
||||
1.3.6.1.2.1.2.2.1.6.1073741830|4|67072
|
||||
1.3.6.1.2.1.2.2.1.6.1073741831|4|67328
|
||||
1.3.6.1.2.1.2.2.1.6.1073741832|4|67584
|
||||
1.3.6.1.2.1.2.2.1.6.1073741833|4|67840
|
||||
1.3.6.1.2.1.2.2.1.6.1073741834|4|68096
|
||||
1.3.6.1.2.1.2.2.1.6.1073741835|4|68352
|
||||
1.3.6.1.2.1.2.2.1.6.1073741836|4|68608
|
||||
1.3.6.1.2.1.2.2.1.6.1073741837|4|68864
|
||||
1.3.6.1.2.1.2.2.1.6.1073741838|4|69120
|
||||
1.3.6.1.2.1.2.2.1.6.1073741839|4|69376
|
||||
1.3.6.1.2.1.2.2.1.6.1073741840|4|69632
|
||||
1.3.6.1.2.1.2.2.1.6.1073741841|4|69888
|
||||
1.3.6.1.2.1.2.2.1.6.1073741842|4|70144
|
||||
1.3.6.1.2.1.2.2.1.6.1073741843|4|70400
|
||||
1.3.6.1.2.1.2.2.1.6.1073741844|4|70656
|
||||
1.3.6.1.2.1.2.2.1.6.1073741845|4|70912
|
||||
1.3.6.1.2.1.2.2.1.6.1073741846|4|71168
|
||||
1.3.6.1.2.1.2.2.1.6.1073741847|4|71424
|
||||
1.3.6.1.2.1.2.2.1.6.1073741848|4|71680
|
||||
1.3.6.1.2.1.2.2.1.6.1073741849|4|71936
|
||||
1.3.6.1.2.1.2.2.1.6.1073741850|4|72192
|
||||
1.3.6.1.2.1.2.2.1.6.1073741851|4|72448
|
||||
1.3.6.1.2.1.2.2.1.6.1073741852|4|72704
|
||||
1.3.6.1.2.1.2.2.1.6.1073741853|4|72960
|
||||
1.3.6.1.2.1.2.2.1.6.1073741854|4|73216
|
||||
1.3.6.1.2.1.2.2.1.6.1073741855|4|73472
|
||||
1.3.6.1.2.1.2.2.1.6.1073741856|4|73728
|
||||
1.3.6.1.2.1.2.2.1.6.1073741857|4|73984
|
||||
1.3.6.1.2.1.2.2.1.6.1073741858|4|74240
|
||||
1.3.6.1.2.1.2.2.1.6.1073741859|4|74496
|
||||
1.3.6.1.2.1.2.2.1.6.1073741860|4|74752
|
||||
1.3.6.1.2.1.2.2.1.6.1073741861|4|75008
|
||||
1.3.6.1.2.1.2.2.1.6.1073741862|4|75264
|
||||
1.3.6.1.2.1.2.2.1.6.1073741863|4|75520
|
||||
1.3.6.1.2.1.2.2.1.6.1073741864|4|75776
|
||||
1.3.6.1.2.1.2.2.1.6.1073741865|4|76032
|
||||
1.3.6.1.2.1.2.2.1.6.1073741866|4|76288
|
||||
1.3.6.1.2.1.2.2.1.6.1073741867|4|76544
|
||||
1.3.6.1.2.1.2.2.1.6.1073741868|4|76800
|
||||
1.3.6.1.2.1.2.2.1.6.1073741869|4|77056
|
||||
1.3.6.1.2.1.2.2.1.6.1073741870|4|77312
|
||||
1.3.6.1.2.1.2.2.1.6.1073741871|4|77568
|
||||
1.3.6.1.2.1.2.2.1.6.1073741872|4|77824
|
||||
1.3.6.1.2.1.2.2.1.6.1073741873|4|78080
|
||||
1.3.6.1.2.1.2.2.1.6.1073741874|4|78336
|
||||
1.3.6.1.2.1.2.2.1.6.1073741875|4|78592
|
||||
1.3.6.1.2.1.2.2.1.6.1073741876|4|78848
|
||||
1.3.6.1.2.1.2.2.1.6.1073741877|4|79104
|
||||
1.3.6.1.2.1.2.2.1.6.1073741878|4|79360
|
||||
1.3.6.1.2.1.2.2.1.6.1073741879|4|79616
|
||||
1.3.6.1.2.1.2.2.1.6.1073741880|4|79872
|
||||
1.3.6.1.2.1.2.2.1.6.1073741881|4|80128
|
||||
1.3.6.1.2.1.2.2.1.6.1073741882|4|80384
|
||||
1.3.6.1.2.1.2.2.1.6.1073741883|4|80640
|
||||
1.3.6.1.2.1.2.2.1.6.1073741884|4|80896
|
||||
1.3.6.1.2.1.2.2.1.6.1073741885|4|81152
|
||||
1.3.6.1.2.1.2.2.1.6.1073741886|4|81408
|
||||
1.3.6.1.2.1.2.2.1.6.1073741887|4|81664
|
||||
1.3.6.1.2.1.2.2.1.6.1073741888|4|81920
|
||||
1.3.6.1.2.1.2.2.1.6.1073741889|4|82176
|
||||
1.3.6.1.2.1.2.2.1.6.1073741890|4|82432
|
||||
1.3.6.1.2.1.2.2.1.6.1073741891|4|82688
|
||||
1.3.6.1.2.1.2.2.1.6.1073741892|4|82944
|
||||
1.3.6.1.2.1.2.2.1.6.1073741893|4|83200
|
||||
1.3.6.1.2.1.2.2.1.6.1073741894|4|83456
|
||||
1.3.6.1.2.1.2.2.1.6.1073741895|4|83712
|
||||
1.3.6.1.2.1.2.2.1.6.1073741896|4|83968
|
||||
1.3.6.1.2.1.2.2.1.6.1073741897|4|84224
|
||||
1.3.6.1.2.1.2.2.1.6.1073741898|4|84480
|
||||
1.3.6.1.2.1.2.2.1.6.1073741899|4|84736
|
||||
1.3.6.1.2.1.2.2.1.6.1073741900|4|84992
|
||||
1.3.6.1.2.1.2.2.1.6.1073741901|4|85248
|
||||
1.3.6.1.2.1.2.2.1.6.1073741902|4|85504
|
||||
1.3.6.1.2.1.2.2.1.6.1073741903|4|85760
|
||||
1.3.6.1.2.1.2.2.1.6.1073741904|4|86016
|
||||
1.3.6.1.2.1.2.2.1.6.1073741905|4|86272
|
||||
1.3.6.1.2.1.2.2.1.6.1073741906|4|86528
|
||||
1.3.6.1.2.1.2.2.1.6.1073741907|4|86784
|
||||
1.3.6.1.2.1.2.2.1.6.1073741908|4|87040
|
||||
1.3.6.1.2.1.2.2.1.6.1073741909|4|87296
|
||||
1.3.6.1.2.1.2.2.1.6.1073741910|4|87552
|
||||
1.3.6.1.2.1.2.2.1.6.1073741911|4|87808
|
||||
1.3.6.1.2.1.2.2.1.6.1073741912|4|88064
|
||||
1.3.6.1.2.1.2.2.1.6.1073741913|4|88320
|
||||
1.3.6.1.2.1.2.2.1.6.1073741914|4|88576
|
||||
1.3.6.1.2.1.2.2.1.6.1073741915|4|88832
|
||||
1.3.6.1.2.1.2.2.1.6.1073741916|4|89088
|
||||
1.3.6.1.2.1.2.2.1.6.1073741917|4|89344
|
||||
1.3.6.1.2.1.2.2.1.6.1073741918|4|89600
|
||||
1.3.6.1.2.1.2.2.1.6.1073741919|4|89856
|
||||
1.3.6.1.2.1.2.2.1.6.1073741824|4x|0027f8d65536
|
||||
1.3.6.1.2.1.2.2.1.6.1073741825|4x|0027f8d65792
|
||||
1.3.6.1.2.1.2.2.1.6.1073741826|4x|0027f8d66048
|
||||
1.3.6.1.2.1.2.2.1.6.1073741827|4x|0027f8d66304
|
||||
1.3.6.1.2.1.2.2.1.6.1073741828|4x|0027f8d66560
|
||||
1.3.6.1.2.1.2.2.1.6.1073741829|4x|0027f8d66816
|
||||
1.3.6.1.2.1.2.2.1.6.1073741830|4x|0027f8d67072
|
||||
1.3.6.1.2.1.2.2.1.6.1073741831|4x|0027f8d67328
|
||||
1.3.6.1.2.1.2.2.1.6.1073741832|4x|0027f8d67584
|
||||
1.3.6.1.2.1.2.2.1.6.1073741833|4x|0027f8d67840
|
||||
1.3.6.1.2.1.2.2.1.6.1073741834|4x|0027f8d68096
|
||||
1.3.6.1.2.1.2.2.1.6.1073741835|4x|0027f8d68352
|
||||
1.3.6.1.2.1.2.2.1.6.1073741836|4x|0027f8d68608
|
||||
1.3.6.1.2.1.2.2.1.6.1073741837|4x|0027f8d68864
|
||||
1.3.6.1.2.1.2.2.1.6.1073741838|4x|0027f8d69120
|
||||
1.3.6.1.2.1.2.2.1.6.1073741839|4x|0027f8d69376
|
||||
1.3.6.1.2.1.2.2.1.6.1073741840|4x|0027f8d69632
|
||||
1.3.6.1.2.1.2.2.1.6.1073741841|4x|0027f8d69888
|
||||
1.3.6.1.2.1.2.2.1.6.1073741842|4x|0027f8d70144
|
||||
1.3.6.1.2.1.2.2.1.6.1073741843|4x|0027f8d70400
|
||||
1.3.6.1.2.1.2.2.1.6.1073741844|4x|0027f8d70656
|
||||
1.3.6.1.2.1.2.2.1.6.1073741845|4x|0027f8d70912
|
||||
1.3.6.1.2.1.2.2.1.6.1073741846|4x|0027f8d71168
|
||||
1.3.6.1.2.1.2.2.1.6.1073741847|4x|0027f8d71424
|
||||
1.3.6.1.2.1.2.2.1.6.1073741848|4x|0027f8d71680
|
||||
1.3.6.1.2.1.2.2.1.6.1073741849|4x|0027f8d71936
|
||||
1.3.6.1.2.1.2.2.1.6.1073741850|4x|0027f8d72192
|
||||
1.3.6.1.2.1.2.2.1.6.1073741851|4x|0027f8d72448
|
||||
1.3.6.1.2.1.2.2.1.6.1073741852|4x|0027f8d72704
|
||||
1.3.6.1.2.1.2.2.1.6.1073741853|4x|0027f8d72960
|
||||
1.3.6.1.2.1.2.2.1.6.1073741854|4x|0027f8d73216
|
||||
1.3.6.1.2.1.2.2.1.6.1073741855|4x|0027f8d73472
|
||||
1.3.6.1.2.1.2.2.1.6.1073741856|4x|0027f8d73728
|
||||
1.3.6.1.2.1.2.2.1.6.1073741857|4x|0027f8d73984
|
||||
1.3.6.1.2.1.2.2.1.6.1073741858|4x|0027f8d74240
|
||||
1.3.6.1.2.1.2.2.1.6.1073741859|4x|0027f8d74496
|
||||
1.3.6.1.2.1.2.2.1.6.1073741860|4x|0027f8d74752
|
||||
1.3.6.1.2.1.2.2.1.6.1073741861|4x|0027f8d75008
|
||||
1.3.6.1.2.1.2.2.1.6.1073741862|4x|0027f8d75264
|
||||
1.3.6.1.2.1.2.2.1.6.1073741863|4x|0027f8d75520
|
||||
1.3.6.1.2.1.2.2.1.6.1073741864|4x|0027f8d75776
|
||||
1.3.6.1.2.1.2.2.1.6.1073741865|4x|0027f8d76032
|
||||
1.3.6.1.2.1.2.2.1.6.1073741866|4x|0027f8d76288
|
||||
1.3.6.1.2.1.2.2.1.6.1073741867|4x|0027f8d76544
|
||||
1.3.6.1.2.1.2.2.1.6.1073741868|4x|0027f8d76800
|
||||
1.3.6.1.2.1.2.2.1.6.1073741869|4x|0027f8d77056
|
||||
1.3.6.1.2.1.2.2.1.6.1073741870|4x|0027f8d77312
|
||||
1.3.6.1.2.1.2.2.1.6.1073741871|4x|0027f8d77568
|
||||
1.3.6.1.2.1.2.2.1.6.1073741872|4x|0027f8d77824
|
||||
1.3.6.1.2.1.2.2.1.6.1073741873|4x|0027f8d78080
|
||||
1.3.6.1.2.1.2.2.1.6.1073741874|4x|0027f8d78336
|
||||
1.3.6.1.2.1.2.2.1.6.1073741875|4x|0027f8d78592
|
||||
1.3.6.1.2.1.2.2.1.6.1073741876|4x|0027f8d78848
|
||||
1.3.6.1.2.1.2.2.1.6.1073741877|4x|0027f8d79104
|
||||
1.3.6.1.2.1.2.2.1.6.1073741878|4x|0027f8d79360
|
||||
1.3.6.1.2.1.2.2.1.6.1073741879|4x|0027f8d79616
|
||||
1.3.6.1.2.1.2.2.1.6.1073741880|4x|0027f8d79872
|
||||
1.3.6.1.2.1.2.2.1.6.1073741881|4x|0027f8d80128
|
||||
1.3.6.1.2.1.2.2.1.6.1073741882|4x|0027f8d80384
|
||||
1.3.6.1.2.1.2.2.1.6.1073741883|4x|0027f8d80640
|
||||
1.3.6.1.2.1.2.2.1.6.1073741884|4x|0027f8d80896
|
||||
1.3.6.1.2.1.2.2.1.6.1073741885|4x|0027f8d81152
|
||||
1.3.6.1.2.1.2.2.1.6.1073741886|4x|0027f8d81408
|
||||
1.3.6.1.2.1.2.2.1.6.1073741887|4x|0027f8d81664
|
||||
1.3.6.1.2.1.2.2.1.6.1073741888|4x|0027f8d81920
|
||||
1.3.6.1.2.1.2.2.1.6.1073741889|4x|0027f8d82176
|
||||
1.3.6.1.2.1.2.2.1.6.1073741890|4x|0027f8d82432
|
||||
1.3.6.1.2.1.2.2.1.6.1073741891|4x|0027f8d82688
|
||||
1.3.6.1.2.1.2.2.1.6.1073741892|4x|0027f8d82944
|
||||
1.3.6.1.2.1.2.2.1.6.1073741893|4x|0027f8d83200
|
||||
1.3.6.1.2.1.2.2.1.6.1073741894|4x|0027f8d83456
|
||||
1.3.6.1.2.1.2.2.1.6.1073741895|4x|0027f8d83712
|
||||
1.3.6.1.2.1.2.2.1.6.1073741896|4x|0027f8d83968
|
||||
1.3.6.1.2.1.2.2.1.6.1073741897|4x|0027f8d84224
|
||||
1.3.6.1.2.1.2.2.1.6.1073741898|4x|0027f8d84480
|
||||
1.3.6.1.2.1.2.2.1.6.1073741899|4x|0027f8d84736
|
||||
1.3.6.1.2.1.2.2.1.6.1073741900|4x|0027f8d84992
|
||||
1.3.6.1.2.1.2.2.1.6.1073741901|4x|0027f8d85248
|
||||
1.3.6.1.2.1.2.2.1.6.1073741902|4x|0027f8d85504
|
||||
1.3.6.1.2.1.2.2.1.6.1073741903|4x|0027f8d85760
|
||||
1.3.6.1.2.1.2.2.1.6.1073741904|4x|0027f8d86016
|
||||
1.3.6.1.2.1.2.2.1.6.1073741905|4x|0027f8d86272
|
||||
1.3.6.1.2.1.2.2.1.6.1073741906|4x|0027f8d86528
|
||||
1.3.6.1.2.1.2.2.1.6.1073741907|4x|0027f8d86784
|
||||
1.3.6.1.2.1.2.2.1.6.1073741908|4x|0027f8d87040
|
||||
1.3.6.1.2.1.2.2.1.6.1073741909|4x|0027f8d87296
|
||||
1.3.6.1.2.1.2.2.1.6.1073741910|4x|0027f8d87552
|
||||
1.3.6.1.2.1.2.2.1.6.1073741911|4x|0027f8d87808
|
||||
1.3.6.1.2.1.2.2.1.6.1073741912|4x|0027f8d88064
|
||||
1.3.6.1.2.1.2.2.1.6.1073741913|4x|0027f8d88320
|
||||
1.3.6.1.2.1.2.2.1.6.1073741914|4x|0027f8d88576
|
||||
1.3.6.1.2.1.2.2.1.6.1073741915|4x|0027f8d88832
|
||||
1.3.6.1.2.1.2.2.1.6.1073741916|4x|0027f8d89088
|
||||
1.3.6.1.2.1.2.2.1.6.1073741917|4x|0027f8d89344
|
||||
1.3.6.1.2.1.2.2.1.6.1073741918|4x|0027f8d89600
|
||||
1.3.6.1.2.1.2.2.1.6.1073741919|4x|0027f8d89856
|
||||
1.3.6.1.2.1.2.2.1.7.805306369|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.805306370|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.805306371|2|2
|
||||
|
||||
@@ -316,102 +316,102 @@
|
||||
1.3.6.1.2.1.2.2.1.6.805306372|4|
|
||||
1.3.6.1.2.1.2.2.1.6.805306373|4x|0027F8D8FAE9
|
||||
1.3.6.1.2.1.2.2.1.6.805306374|4x|0027F8D8FAE9
|
||||
1.3.6.1.2.1.2.2.1.6.1073741824|4|65536
|
||||
1.3.6.1.2.1.2.2.1.6.1073741825|4|65792
|
||||
1.3.6.1.2.1.2.2.1.6.1073741826|4|66048
|
||||
1.3.6.1.2.1.2.2.1.6.1073741827|4|66304
|
||||
1.3.6.1.2.1.2.2.1.6.1073741828|4|66560
|
||||
1.3.6.1.2.1.2.2.1.6.1073741829|4|66816
|
||||
1.3.6.1.2.1.2.2.1.6.1073741830|4|67072
|
||||
1.3.6.1.2.1.2.2.1.6.1073741831|4|67328
|
||||
1.3.6.1.2.1.2.2.1.6.1073741832|4|67584
|
||||
1.3.6.1.2.1.2.2.1.6.1073741833|4|67840
|
||||
1.3.6.1.2.1.2.2.1.6.1073741834|4|68096
|
||||
1.3.6.1.2.1.2.2.1.6.1073741835|4|68352
|
||||
1.3.6.1.2.1.2.2.1.6.1073741836|4|68608
|
||||
1.3.6.1.2.1.2.2.1.6.1073741837|4|68864
|
||||
1.3.6.1.2.1.2.2.1.6.1073741838|4|69120
|
||||
1.3.6.1.2.1.2.2.1.6.1073741839|4|69376
|
||||
1.3.6.1.2.1.2.2.1.6.1073741840|4|69632
|
||||
1.3.6.1.2.1.2.2.1.6.1073741841|4|69888
|
||||
1.3.6.1.2.1.2.2.1.6.1073741842|4|70144
|
||||
1.3.6.1.2.1.2.2.1.6.1073741843|4|70400
|
||||
1.3.6.1.2.1.2.2.1.6.1073741844|4|70656
|
||||
1.3.6.1.2.1.2.2.1.6.1073741845|4|70912
|
||||
1.3.6.1.2.1.2.2.1.6.1073741846|4|71168
|
||||
1.3.6.1.2.1.2.2.1.6.1073741847|4|71424
|
||||
1.3.6.1.2.1.2.2.1.6.1073741848|4|71680
|
||||
1.3.6.1.2.1.2.2.1.6.1073741849|4|71936
|
||||
1.3.6.1.2.1.2.2.1.6.1073741850|4|72192
|
||||
1.3.6.1.2.1.2.2.1.6.1073741851|4|72448
|
||||
1.3.6.1.2.1.2.2.1.6.1073741852|4|72704
|
||||
1.3.6.1.2.1.2.2.1.6.1073741853|4|72960
|
||||
1.3.6.1.2.1.2.2.1.6.1073741854|4|73216
|
||||
1.3.6.1.2.1.2.2.1.6.1073741855|4|73472
|
||||
1.3.6.1.2.1.2.2.1.6.1073741856|4|73728
|
||||
1.3.6.1.2.1.2.2.1.6.1073741857|4|73984
|
||||
1.3.6.1.2.1.2.2.1.6.1073741858|4|74240
|
||||
1.3.6.1.2.1.2.2.1.6.1073741859|4|74496
|
||||
1.3.6.1.2.1.2.2.1.6.1073741860|4|74752
|
||||
1.3.6.1.2.1.2.2.1.6.1073741861|4|75008
|
||||
1.3.6.1.2.1.2.2.1.6.1073741862|4|75264
|
||||
1.3.6.1.2.1.2.2.1.6.1073741863|4|75520
|
||||
1.3.6.1.2.1.2.2.1.6.1073741864|4|75776
|
||||
1.3.6.1.2.1.2.2.1.6.1073741865|4|76032
|
||||
1.3.6.1.2.1.2.2.1.6.1073741866|4|76288
|
||||
1.3.6.1.2.1.2.2.1.6.1073741867|4|76544
|
||||
1.3.6.1.2.1.2.2.1.6.1073741868|4|76800
|
||||
1.3.6.1.2.1.2.2.1.6.1073741869|4|77056
|
||||
1.3.6.1.2.1.2.2.1.6.1073741870|4|77312
|
||||
1.3.6.1.2.1.2.2.1.6.1073741871|4|77568
|
||||
1.3.6.1.2.1.2.2.1.6.1073741872|4|77824
|
||||
1.3.6.1.2.1.2.2.1.6.1073741873|4|78080
|
||||
1.3.6.1.2.1.2.2.1.6.1073741874|4|78336
|
||||
1.3.6.1.2.1.2.2.1.6.1073741875|4|78592
|
||||
1.3.6.1.2.1.2.2.1.6.1073741876|4|78848
|
||||
1.3.6.1.2.1.2.2.1.6.1073741877|4|79104
|
||||
1.3.6.1.2.1.2.2.1.6.1073741878|4|79360
|
||||
1.3.6.1.2.1.2.2.1.6.1073741879|4|79616
|
||||
1.3.6.1.2.1.2.2.1.6.1073741880|4|79872
|
||||
1.3.6.1.2.1.2.2.1.6.1073741881|4|80128
|
||||
1.3.6.1.2.1.2.2.1.6.1073741882|4|80384
|
||||
1.3.6.1.2.1.2.2.1.6.1073741883|4|80640
|
||||
1.3.6.1.2.1.2.2.1.6.1073741884|4|80896
|
||||
1.3.6.1.2.1.2.2.1.6.1073741885|4|81152
|
||||
1.3.6.1.2.1.2.2.1.6.1073741886|4|81408
|
||||
1.3.6.1.2.1.2.2.1.6.1073741887|4|81664
|
||||
1.3.6.1.2.1.2.2.1.6.1073741888|4|81920
|
||||
1.3.6.1.2.1.2.2.1.6.1073741889|4|82176
|
||||
1.3.6.1.2.1.2.2.1.6.1073741890|4|82432
|
||||
1.3.6.1.2.1.2.2.1.6.1073741891|4|82688
|
||||
1.3.6.1.2.1.2.2.1.6.1073741892|4|82944
|
||||
1.3.6.1.2.1.2.2.1.6.1073741893|4|83200
|
||||
1.3.6.1.2.1.2.2.1.6.1073741894|4|83456
|
||||
1.3.6.1.2.1.2.2.1.6.1073741895|4|83712
|
||||
1.3.6.1.2.1.2.2.1.6.1073741896|4|83968
|
||||
1.3.6.1.2.1.2.2.1.6.1073741897|4|84224
|
||||
1.3.6.1.2.1.2.2.1.6.1073741898|4|84480
|
||||
1.3.6.1.2.1.2.2.1.6.1073741899|4|84736
|
||||
1.3.6.1.2.1.2.2.1.6.1073741900|4|84992
|
||||
1.3.6.1.2.1.2.2.1.6.1073741901|4|85248
|
||||
1.3.6.1.2.1.2.2.1.6.1073741902|4|85504
|
||||
1.3.6.1.2.1.2.2.1.6.1073741903|4|85760
|
||||
1.3.6.1.2.1.2.2.1.6.1073741904|4|86016
|
||||
1.3.6.1.2.1.2.2.1.6.1073741905|4|86272
|
||||
1.3.6.1.2.1.2.2.1.6.1073741906|4|86528
|
||||
1.3.6.1.2.1.2.2.1.6.1073741907|4|86784
|
||||
1.3.6.1.2.1.2.2.1.6.1073741908|4|87040
|
||||
1.3.6.1.2.1.2.2.1.6.1073741909|4|87296
|
||||
1.3.6.1.2.1.2.2.1.6.1073741910|4|87552
|
||||
1.3.6.1.2.1.2.2.1.6.1073741911|4|87808
|
||||
1.3.6.1.2.1.2.2.1.6.1073741912|4|88064
|
||||
1.3.6.1.2.1.2.2.1.6.1073741913|4|88320
|
||||
1.3.6.1.2.1.2.2.1.6.1073741914|4|88576
|
||||
1.3.6.1.2.1.2.2.1.6.1073741915|4|88832
|
||||
1.3.6.1.2.1.2.2.1.6.1073741916|4|89088
|
||||
1.3.6.1.2.1.2.2.1.6.1073741917|4|89344
|
||||
1.3.6.1.2.1.2.2.1.6.1073741918|4|89600
|
||||
1.3.6.1.2.1.2.2.1.6.1073741919|4|89856
|
||||
1.3.6.1.2.1.2.2.1.6.1073741824|4x|0027f8d65536
|
||||
1.3.6.1.2.1.2.2.1.6.1073741825|4x|0027f8d65792
|
||||
1.3.6.1.2.1.2.2.1.6.1073741826|4x|0027f8d66048
|
||||
1.3.6.1.2.1.2.2.1.6.1073741827|4x|0027f8d66304
|
||||
1.3.6.1.2.1.2.2.1.6.1073741828|4x|0027f8d66560
|
||||
1.3.6.1.2.1.2.2.1.6.1073741829|4x|0027f8d66816
|
||||
1.3.6.1.2.1.2.2.1.6.1073741830|4x|0027f8d67072
|
||||
1.3.6.1.2.1.2.2.1.6.1073741831|4x|0027f8d67328
|
||||
1.3.6.1.2.1.2.2.1.6.1073741832|4x|0027f8d67584
|
||||
1.3.6.1.2.1.2.2.1.6.1073741833|4x|0027f8d67840
|
||||
1.3.6.1.2.1.2.2.1.6.1073741834|4x|0027f8d68096
|
||||
1.3.6.1.2.1.2.2.1.6.1073741835|4x|0027f8d68352
|
||||
1.3.6.1.2.1.2.2.1.6.1073741836|4x|0027f8d68608
|
||||
1.3.6.1.2.1.2.2.1.6.1073741837|4x|0027f8d68864
|
||||
1.3.6.1.2.1.2.2.1.6.1073741838|4x|0027f8d69120
|
||||
1.3.6.1.2.1.2.2.1.6.1073741839|4x|0027f8d69376
|
||||
1.3.6.1.2.1.2.2.1.6.1073741840|4x|0027f8d69632
|
||||
1.3.6.1.2.1.2.2.1.6.1073741841|4x|0027f8d69888
|
||||
1.3.6.1.2.1.2.2.1.6.1073741842|4x|0027f8d70144
|
||||
1.3.6.1.2.1.2.2.1.6.1073741843|4x|0027f8d70400
|
||||
1.3.6.1.2.1.2.2.1.6.1073741844|4x|0027f8d70656
|
||||
1.3.6.1.2.1.2.2.1.6.1073741845|4x|0027f8d70912
|
||||
1.3.6.1.2.1.2.2.1.6.1073741846|4x|0027f8d71168
|
||||
1.3.6.1.2.1.2.2.1.6.1073741847|4x|0027f8d71424
|
||||
1.3.6.1.2.1.2.2.1.6.1073741848|4x|0027f8d71680
|
||||
1.3.6.1.2.1.2.2.1.6.1073741849|4x|0027f8d71936
|
||||
1.3.6.1.2.1.2.2.1.6.1073741850|4x|0027f8d72192
|
||||
1.3.6.1.2.1.2.2.1.6.1073741851|4x|0027f8d72448
|
||||
1.3.6.1.2.1.2.2.1.6.1073741852|4x|0027f8d72704
|
||||
1.3.6.1.2.1.2.2.1.6.1073741853|4x|0027f8d72960
|
||||
1.3.6.1.2.1.2.2.1.6.1073741854|4x|0027f8d73216
|
||||
1.3.6.1.2.1.2.2.1.6.1073741855|4x|0027f8d73472
|
||||
1.3.6.1.2.1.2.2.1.6.1073741856|4x|0027f8d73728
|
||||
1.3.6.1.2.1.2.2.1.6.1073741857|4x|0027f8d73984
|
||||
1.3.6.1.2.1.2.2.1.6.1073741858|4x|0027f8d74240
|
||||
1.3.6.1.2.1.2.2.1.6.1073741859|4x|0027f8d74496
|
||||
1.3.6.1.2.1.2.2.1.6.1073741860|4x|0027f8d74752
|
||||
1.3.6.1.2.1.2.2.1.6.1073741861|4x|0027f8d75008
|
||||
1.3.6.1.2.1.2.2.1.6.1073741862|4x|0027f8d75264
|
||||
1.3.6.1.2.1.2.2.1.6.1073741863|4x|0027f8d75520
|
||||
1.3.6.1.2.1.2.2.1.6.1073741864|4x|0027f8d75776
|
||||
1.3.6.1.2.1.2.2.1.6.1073741865|4x|0027f8d76032
|
||||
1.3.6.1.2.1.2.2.1.6.1073741866|4x|0027f8d76288
|
||||
1.3.6.1.2.1.2.2.1.6.1073741867|4x|0027f8d76544
|
||||
1.3.6.1.2.1.2.2.1.6.1073741868|4x|0027f8d76800
|
||||
1.3.6.1.2.1.2.2.1.6.1073741869|4x|0027f8d77056
|
||||
1.3.6.1.2.1.2.2.1.6.1073741870|4x|0027f8d77312
|
||||
1.3.6.1.2.1.2.2.1.6.1073741871|4x|0027f8d77568
|
||||
1.3.6.1.2.1.2.2.1.6.1073741872|4x|0027f8d77824
|
||||
1.3.6.1.2.1.2.2.1.6.1073741873|4x|0027f8d78080
|
||||
1.3.6.1.2.1.2.2.1.6.1073741874|4x|0027f8d78336
|
||||
1.3.6.1.2.1.2.2.1.6.1073741875|4x|0027f8d78592
|
||||
1.3.6.1.2.1.2.2.1.6.1073741876|4x|0027f8d78848
|
||||
1.3.6.1.2.1.2.2.1.6.1073741877|4x|0027f8d79104
|
||||
1.3.6.1.2.1.2.2.1.6.1073741878|4x|0027f8d79360
|
||||
1.3.6.1.2.1.2.2.1.6.1073741879|4x|0027f8d79616
|
||||
1.3.6.1.2.1.2.2.1.6.1073741880|4x|0027f8d79872
|
||||
1.3.6.1.2.1.2.2.1.6.1073741881|4x|0027f8d80128
|
||||
1.3.6.1.2.1.2.2.1.6.1073741882|4x|0027f8d80384
|
||||
1.3.6.1.2.1.2.2.1.6.1073741883|4x|0027f8d80640
|
||||
1.3.6.1.2.1.2.2.1.6.1073741884|4x|0027f8d80896
|
||||
1.3.6.1.2.1.2.2.1.6.1073741885|4x|0027f8d81152
|
||||
1.3.6.1.2.1.2.2.1.6.1073741886|4x|0027f8d81408
|
||||
1.3.6.1.2.1.2.2.1.6.1073741887|4x|0027f8d81664
|
||||
1.3.6.1.2.1.2.2.1.6.1073741888|4x|0027f8d81920
|
||||
1.3.6.1.2.1.2.2.1.6.1073741889|4x|0027f8d82176
|
||||
1.3.6.1.2.1.2.2.1.6.1073741890|4x|0027f8d82432
|
||||
1.3.6.1.2.1.2.2.1.6.1073741891|4x|0027f8d82688
|
||||
1.3.6.1.2.1.2.2.1.6.1073741892|4x|0027f8d82944
|
||||
1.3.6.1.2.1.2.2.1.6.1073741893|4x|0027f8d83200
|
||||
1.3.6.1.2.1.2.2.1.6.1073741894|4x|0027f8d83456
|
||||
1.3.6.1.2.1.2.2.1.6.1073741895|4x|0027f8d83712
|
||||
1.3.6.1.2.1.2.2.1.6.1073741896|4x|0027f8d83968
|
||||
1.3.6.1.2.1.2.2.1.6.1073741897|4x|0027f8d84224
|
||||
1.3.6.1.2.1.2.2.1.6.1073741898|4x|0027f8d84480
|
||||
1.3.6.1.2.1.2.2.1.6.1073741899|4x|0027f8d84736
|
||||
1.3.6.1.2.1.2.2.1.6.1073741900|4x|0027f8d84992
|
||||
1.3.6.1.2.1.2.2.1.6.1073741901|4x|0027f8d85248
|
||||
1.3.6.1.2.1.2.2.1.6.1073741902|4x|0027f8d85504
|
||||
1.3.6.1.2.1.2.2.1.6.1073741903|4x|0027f8d85760
|
||||
1.3.6.1.2.1.2.2.1.6.1073741904|4x|0027f8d86016
|
||||
1.3.6.1.2.1.2.2.1.6.1073741905|4x|0027f8d86272
|
||||
1.3.6.1.2.1.2.2.1.6.1073741906|4x|0027f8d86528
|
||||
1.3.6.1.2.1.2.2.1.6.1073741907|4x|0027f8d86784
|
||||
1.3.6.1.2.1.2.2.1.6.1073741908|4x|0027f8d87040
|
||||
1.3.6.1.2.1.2.2.1.6.1073741909|4x|0027f8d87296
|
||||
1.3.6.1.2.1.2.2.1.6.1073741910|4x|0027f8d87552
|
||||
1.3.6.1.2.1.2.2.1.6.1073741911|4x|0027f8d87808
|
||||
1.3.6.1.2.1.2.2.1.6.1073741912|4x|0027f8d88064
|
||||
1.3.6.1.2.1.2.2.1.6.1073741913|4x|0027f8d88320
|
||||
1.3.6.1.2.1.2.2.1.6.1073741914|4x|0027f8d88576
|
||||
1.3.6.1.2.1.2.2.1.6.1073741915|4x|0027f8d88832
|
||||
1.3.6.1.2.1.2.2.1.6.1073741916|4x|0027f8d89088
|
||||
1.3.6.1.2.1.2.2.1.6.1073741917|4x|0027f8d89344
|
||||
1.3.6.1.2.1.2.2.1.6.1073741918|4x|0027f8d89600
|
||||
1.3.6.1.2.1.2.2.1.6.1073741919|4x|0027f8d89856
|
||||
1.3.6.1.2.1.2.2.1.7.805306369|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.805306370|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.805306371|2|2
|
||||
|
||||
@@ -26,10 +26,10 @@
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|0
|
||||
1.3.6.1.2.1.2.2.1.5.3|66|0
|
||||
1.3.6.1.2.1.2.2.1.5.4|66|0
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:80:a3:90:9d:9a
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|0:0:0:0:0:0
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|0080a3909d9a
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|0
|
||||
1.3.6.1.2.1.2.2.1.7.2|2|0
|
||||
1.3.6.1.2.1.2.2.1.7.3|2|0
|
||||
@@ -658,8 +658,8 @@
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.8.1|4|1.13
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.9.1|2|1
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.10.1|2|0
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.11.1|4| 220V
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.12.1|4| 220V
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.11.1|4| 220V
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.12.1|4| 220V
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.13.1|2|0
|
||||
1.3.6.1.4.1.29003.2.44.1.1.9.1.14.1|4|
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.1.1.1|2|1
|
||||
@@ -746,46 +746,46 @@
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.21.1.2|2|0
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.21.1.3|2|0
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.21.1.4|2|0
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.22.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.23.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.24.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.25.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.26.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.27.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.28.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.29.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.30.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.1|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.2|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.3|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.31.1.4|4| No available / No disponible
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.32.1.1|4|
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.32.1.2|4|
|
||||
1.3.6.1.4.1.29003.2.44.1.2.1.32.1.3|4|
|
||||
|
||||
@@ -91,35 +91,35 @@
|
||||
1.3.6.1.2.1.2.2.1.4.27|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.28|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.17825793|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.19|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.23|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.24|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.25|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.26|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.27|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.28|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.17825793|4|0:a:5a:94:17:e3
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.21|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.22|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.23|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.24|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.25|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.26|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.27|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.28|4x|000a5a9417e3
|
||||
1.3.6.1.2.1.2.2.1.6.17825793|4x|000a5a9417e3
|
||||
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
|
||||
|
||||
+113
-113
@@ -569,119 +569,119 @@
|
||||
1.3.6.1.2.1.2.2.1.5.111|4|1000000000
|
||||
1.3.6.1.2.1.2.2.1.5.112|4|1000000000
|
||||
1.3.6.1.2.1.2.2.1.5.17825793|4|0
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.19|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.23|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.24|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.25|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.26|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.27|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.28|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.29|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.30|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.31|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.32|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.33|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.34|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.35|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.36|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.37|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.38|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.39|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.40|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.41|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.42|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.43|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.44|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.45|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.46|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.47|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.48|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.49|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.50|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.51|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.52|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.53|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.54|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.55|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.56|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.57|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.58|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.59|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.60|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.61|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.62|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.63|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.64|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.65|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.66|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.67|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.68|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.69|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.70|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.71|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.72|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.73|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.74|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.75|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.76|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.77|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.78|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.79|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.80|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.81|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.82|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.83|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.84|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.85|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.86|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.87|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.88|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.89|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.90|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.91|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.92|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.93|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.94|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.95|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.96|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.97|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.98|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.99|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.100|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.101|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.102|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.103|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.104|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.105|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.106|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.107|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.108|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.109|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.110|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.111|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.112|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.17825793|4|0:a:5a:64:de:f2
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.21|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.22|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.23|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.24|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.25|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.26|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.27|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.28|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.29|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.30|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.31|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.32|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.33|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.34|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.35|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.36|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.37|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.38|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.39|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.40|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.41|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.42|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.43|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.44|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.45|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.46|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.47|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.48|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.49|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.50|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.51|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.52|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.53|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.54|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.55|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.56|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.57|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.58|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.59|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.60|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.61|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.62|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.63|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.64|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.65|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.66|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.67|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.68|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.69|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.70|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.71|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.72|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.73|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.74|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.75|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.76|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.77|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.78|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.79|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.80|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.81|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.82|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.83|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.84|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.85|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.86|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.87|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.88|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.89|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.90|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.91|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.92|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.93|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.94|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.95|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.96|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.97|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.98|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.99|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.100|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.101|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.102|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.103|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.104|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.105|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.106|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.107|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.108|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.109|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.110|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.111|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.112|4x|000a5a64def2
|
||||
1.3.6.1.2.1.2.2.1.6.17825793|4x|000a5a64def2
|
||||
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
|
||||
|
||||
+15
-15
@@ -89,21 +89,21 @@
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|70DF2F43D0EA
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|70DF2F43D0DA
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|000010150317
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|70:79:b3:f:c0:cd
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|70:79:b3:f:c0:cd
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|70:79:b3:f:c0:cd
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|70:79:b3:f:c0:bd
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|70:79:b3:f:c0:ed
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|70:79:b3:f:c0:dd
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|70:79:b3:f:c0:fd
|
||||
1.3.6.1.2.1.2.2.1.6.19|4|70:79:b3:f:c0:ae
|
||||
1.3.6.1.2.1.2.2.1.6.20|4|70:79:b3:f:c0:ce
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|70:79:b3:f:c0:be
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|70:79:b3:f:c0:ee
|
||||
1.3.6.1.2.1.2.2.1.6.23|4|70:79:b3:f:c0:de
|
||||
1.3.6.1.2.1.2.2.1.6.24|4|70:79:b3:f:c0:fe
|
||||
1.3.6.1.2.1.2.2.1.6.25|4|70:79:b3:f:c0:af
|
||||
1.3.6.1.2.1.2.2.1.6.26|4|70:79:b3:f:c0:cf
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|7079b30fc0cd
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|7079b30fc0cd
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|7079b30fc0cd
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|7079b30fc0bd
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|7079b30fc0ed
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|7079b30fc0dd
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|7079b30fc0fd
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|7079b30fc0ae
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|7079b30fc0ce
|
||||
1.3.6.1.2.1.2.2.1.6.21|4x|7079b30fc0be
|
||||
1.3.6.1.2.1.2.2.1.6.22|4x|7079b30fc0ee
|
||||
1.3.6.1.2.1.2.2.1.6.23|4x|7079b30fc0de
|
||||
1.3.6.1.2.1.2.2.1.6.24|4x|7079b30fc0fe
|
||||
1.3.6.1.2.1.2.2.1.6.25|4x|7079b30fc0af
|
||||
1.3.6.1.2.1.2.2.1.6.26|4x|7079b30fc0cf
|
||||
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
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|1500
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|8C-1F-B4-00-F2-05
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|8C1FB400F205
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||
|
||||
@@ -61,25 +61,25 @@
|
||||
1.3.6.1.2.1.2.2.1.4.17|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.18|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.53|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|ec:e5:55:40:71:de
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|ec:e5:55:40:71:df
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|ec:e5:55:40:71:e0
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|ec:e5:55:40:71:e1
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|ec:e5:55:40:71:e2
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|ec:e5:55:40:71:e3
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|ec:e5:55:40:71:e4
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|ec:e5:55:40:71:e5
|
||||
1.3.6.1.2.1.2.2.1.6.9|4|ec:e5:55:40:71:e6
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|ec:e5:55:40:71:e7
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|ec:e5:55:40:71:e8
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|ec:e5:55:40:71:e9
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|ec:e5:55:40:71:ea
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|ec:e5:55:40:71:eb
|
||||
1.3.6.1.2.1.2.2.1.6.15|4|ec:e5:55:40:71:ec
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|ec:e5:55:40:71:ed
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|ec:e5:55:40:71:ee
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|ec:e5:55:40:71:ef
|
||||
1.3.6.1.2.1.2.2.1.6.53|4|ec:e5:55:40:71:d6
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|ece5554071de
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|ece5554071df
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|ece5554071e0
|
||||
1.3.6.1.2.1.2.2.1.6.4|4x|ece5554071e1
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|ece5554071e2
|
||||
1.3.6.1.2.1.2.2.1.6.6|4x|ece5554071e3
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|ece5554071e4
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|ece5554071e5
|
||||
1.3.6.1.2.1.2.2.1.6.9|4x|ece5554071e6
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|ece5554071e7
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|ece5554071e8
|
||||
1.3.6.1.2.1.2.2.1.6.12|4x|ece5554071e9
|
||||
1.3.6.1.2.1.2.2.1.6.13|4x|ece5554071ea
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|ece5554071eb
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|ece5554071ec
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|ece5554071ed
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|ece5554071ee
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|ece5554071ef
|
||||
1.3.6.1.2.1.2.2.1.6.53|4x|ece5554071d6
|
||||
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
|
||||
|
||||
@@ -231,15 +231,15 @@
|
||||
1.3.6.1.2.1.2.2.1.5.18|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|
|
||||
1.3.6.1.2.1.2.2.1.6.3|4|c4:13:e2:29:c:c0
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|c4:13:e2:29:c:c1
|
||||
1.3.6.1.2.1.2.2.1.6.7|4|c4:13:e2:29:c:d4
|
||||
1.3.6.1.2.1.2.2.1.6.8|4|c4:13:e2:29:c:e4
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|c4:13:e2:29:c:c0
|
||||
1.3.6.1.2.1.2.2.1.6.14|4|c4:13:e2:29:c:d4
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|c4:13:e2:29:c:e4
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|c4:13:e2:29:c:e5
|
||||
1.3.6.1.2.1.2.2.1.6.18|4|c4:13:e2:29:c:e6
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|c413e2290cc0
|
||||
1.3.6.1.2.1.2.2.1.6.5|4x|c413e2290cc1
|
||||
1.3.6.1.2.1.2.2.1.6.7|4x|c413e2290cd4
|
||||
1.3.6.1.2.1.2.2.1.6.8|4x|c413e2290ce4
|
||||
1.3.6.1.2.1.2.2.1.6.11|4x|c413e2290cc0
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|c413e2290cd4
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|c413e2290ce4
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|c413e2290ce5
|
||||
1.3.6.1.2.1.2.2.1.6.18|4x|c413e2290ce6
|
||||
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|2
|
||||
1.3.6.1.2.1.2.2.1.7.3|2|1
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|10000000
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4|c8:fd:19:ec:56:e0
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|c8fd19ec56e0
|
||||
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.8.1|2|1
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|1512
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|00-22-CB-00-8B-86
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|0022CB008B86
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||
|
||||
@@ -279,61 +279,61 @@
|
||||
1.3.6.1.2.1.2.2.1.5.49202|66|0
|
||||
1.3.6.1.2.1.2.2.1.5.49203|66|1000000000
|
||||
1.3.6.1.2.1.2.2.1.5.49204|66|1000000000
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.32769|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.32770|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49153|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49154|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49155|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49156|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49157|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49158|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49159|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49160|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49161|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49162|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49163|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49164|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49165|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49166|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49167|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49168|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49169|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49170|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49171|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49172|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49173|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49174|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49175|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49176|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49177|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49178|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49179|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49180|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49181|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49182|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49183|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49184|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49185|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49186|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49187|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49188|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49189|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49190|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49191|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49192|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49193|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49194|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49195|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49196|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49197|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49198|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49199|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49200|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49201|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49202|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49203|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.49204|4|b0:be:76:3b:5d:e1
|
||||
1.3.6.1.2.1.2.2.1.6.10|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.32769|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.32770|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49153|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49154|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49155|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49156|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49157|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49158|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49159|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49160|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49161|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49162|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49163|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49164|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49165|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49166|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49167|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49168|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49169|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49170|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49171|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49172|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49173|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49174|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49175|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49176|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49177|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49178|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49179|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49180|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49181|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49182|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49183|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49184|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49185|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49186|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49187|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49188|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49189|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49190|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49191|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49192|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49193|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49194|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49195|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49196|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49197|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49198|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49199|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49200|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49201|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49202|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49203|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.6.49204|4x|b0be763b5de1
|
||||
1.3.6.1.2.1.2.2.1.7.10|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.32769|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.32770|2|1
|
||||
|
||||
+143
-143
@@ -1076,7 +1076,7 @@
|
||||
1.3.6.1.2.1.2.2.1.5.752|66|4294967295
|
||||
1.3.6.1.2.1.2.2.1.5.753|66|4294967295
|
||||
1.3.6.1.2.1.2.2.1.5.754|66|4294967295
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|30:b6:4f:70:9c:c2
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|30b64f709cc2
|
||||
1.3.6.1.2.1.2.2.1.6.4|4|
|
||||
1.3.6.1.2.1.2.2.1.6.5|4|
|
||||
1.3.6.1.2.1.2.2.1.6.6|4|
|
||||
@@ -1087,21 +1087,21 @@
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|
|
||||
1.3.6.1.2.1.2.2.1.6.16|4|
|
||||
1.3.6.1.2.1.2.2.1.6.17|4|52:54:0:3e:16:f4
|
||||
1.3.6.1.2.1.2.2.1.6.17|4x|5254003e16f4
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|
|
||||
1.3.6.1.2.1.2.2.1.6.501|4|28:a2:4b:7d:de:b1
|
||||
1.3.6.1.2.1.2.2.1.6.501|4x|28a24b7ddeb1
|
||||
1.3.6.1.2.1.2.2.1.6.502|4|
|
||||
1.3.6.1.2.1.2.2.1.6.503|4|52:54:0:3e:16:f4
|
||||
1.3.6.1.2.1.2.2.1.6.503|4x|5254003e16f4
|
||||
1.3.6.1.2.1.2.2.1.6.504|4|
|
||||
1.3.6.1.2.1.2.2.1.6.505|4|28:a2:4b:7d:e6:90
|
||||
1.3.6.1.2.1.2.2.1.6.506|4|2:0:0:0:0:4
|
||||
1.3.6.1.2.1.2.2.1.6.507|4|2:0:0:0:0:4
|
||||
1.3.6.1.2.1.2.2.1.6.508|4|2:0:1:0:0:4
|
||||
1.3.6.1.2.1.2.2.1.6.509|4|2:0:1:0:0:4
|
||||
1.3.6.1.2.1.2.2.1.6.510|4|28:a2:4b:7d:e6:60
|
||||
1.3.6.1.2.1.2.2.1.6.511|4|28:a2:4b:7d:e6:60
|
||||
1.3.6.1.2.1.2.2.1.6.512|4|28:a2:4b:7d:e5:50
|
||||
1.3.6.1.2.1.2.2.1.6.505|4x|28a24b7de690
|
||||
1.3.6.1.2.1.2.2.1.6.506|4x|020000000004
|
||||
1.3.6.1.2.1.2.2.1.6.507|4x|020000000004
|
||||
1.3.6.1.2.1.2.2.1.6.508|4x|020001000004
|
||||
1.3.6.1.2.1.2.2.1.6.509|4x|020001000004
|
||||
1.3.6.1.2.1.2.2.1.6.510|4x|28a24b7de660
|
||||
1.3.6.1.2.1.2.2.1.6.511|4x|28a24b7de660
|
||||
1.3.6.1.2.1.2.2.1.6.512|4x|28a24b7de550
|
||||
1.3.6.1.2.1.2.2.1.6.513|4|
|
||||
1.3.6.1.2.1.2.2.1.6.514|4|
|
||||
1.3.6.1.2.1.2.2.1.6.515|4|
|
||||
@@ -1122,26 +1122,26 @@
|
||||
1.3.6.1.2.1.2.2.1.6.530|4|
|
||||
1.3.6.1.2.1.2.2.1.6.531|4|
|
||||
1.3.6.1.2.1.2.2.1.6.532|4|
|
||||
1.3.6.1.2.1.2.2.1.6.533|4|28:a2:4b:7d:de:a0
|
||||
1.3.6.1.2.1.2.2.1.6.534|4|28:a2:4b:7d:de:a1
|
||||
1.3.6.1.2.1.2.2.1.6.535|4|28:a2:4b:7d:de:a2
|
||||
1.3.6.1.2.1.2.2.1.6.536|4|28:a2:4b:7d:de:a3
|
||||
1.3.6.1.2.1.2.2.1.6.537|4|28:a2:4b:7d:de:a4
|
||||
1.3.6.1.2.1.2.2.1.6.538|4|28:a2:4b:7d:de:a5
|
||||
1.3.6.1.2.1.2.2.1.6.539|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.540|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.541|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.542|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.543|4|28:a2:4b:7d:df:2
|
||||
1.3.6.1.2.1.2.2.1.6.544|4|28:a2:4b:7d:df:3
|
||||
1.3.6.1.2.1.2.2.1.6.545|4|28:a2:4b:7d:df:4
|
||||
1.3.6.1.2.1.2.2.1.6.546|4|28:a2:4b:7d:df:5
|
||||
1.3.6.1.2.1.2.2.1.6.547|4|28:a2:4b:7d:df:6
|
||||
1.3.6.1.2.1.2.2.1.6.548|4|28:a2:4b:7d:df:7
|
||||
1.3.6.1.2.1.2.2.1.6.549|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.550|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.551|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.552|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.533|4x|28a24b7ddea0
|
||||
1.3.6.1.2.1.2.2.1.6.534|4x|28a24b7ddea1
|
||||
1.3.6.1.2.1.2.2.1.6.535|4x|28a24b7ddea2
|
||||
1.3.6.1.2.1.2.2.1.6.536|4x|28a24b7ddea3
|
||||
1.3.6.1.2.1.2.2.1.6.537|4x|28a24b7ddea4
|
||||
1.3.6.1.2.1.2.2.1.6.538|4x|28a24b7ddea5
|
||||
1.3.6.1.2.1.2.2.1.6.539|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.540|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.541|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.542|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.543|4x|28a24b7ddf02
|
||||
1.3.6.1.2.1.2.2.1.6.544|4x|28a24b7ddf03
|
||||
1.3.6.1.2.1.2.2.1.6.545|4x|28a24b7ddf04
|
||||
1.3.6.1.2.1.2.2.1.6.546|4x|28a24b7ddf05
|
||||
1.3.6.1.2.1.2.2.1.6.547|4x|28a24b7ddf06
|
||||
1.3.6.1.2.1.2.2.1.6.548|4x|28a24b7ddf07
|
||||
1.3.6.1.2.1.2.2.1.6.549|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.550|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.551|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.552|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.553|4|
|
||||
1.3.6.1.2.1.2.2.1.6.554|4|
|
||||
1.3.6.1.2.1.2.2.1.6.555|4|
|
||||
@@ -1153,34 +1153,34 @@
|
||||
1.3.6.1.2.1.2.2.1.6.561|4|
|
||||
1.3.6.1.2.1.2.2.1.6.562|4|
|
||||
1.3.6.1.2.1.2.2.1.6.563|4|
|
||||
1.3.6.1.2.1.2.2.1.6.564|4|28:a2:4b:7d:df:66
|
||||
1.3.6.1.2.1.2.2.1.6.565|4|28:a2:4b:7d:df:67
|
||||
1.3.6.1.2.1.2.2.1.6.566|4|28:a2:4b:7d:df:68
|
||||
1.3.6.1.2.1.2.2.1.6.567|4|28:a2:4b:7d:df:69
|
||||
1.3.6.1.2.1.2.2.1.6.568|4|28:a2:4b:7d:df:97
|
||||
1.3.6.1.2.1.2.2.1.6.569|4|28:a2:4b:7d:df:c9
|
||||
1.3.6.1.2.1.2.2.1.6.570|4|28:a2:4b:7d:df:ca
|
||||
1.3.6.1.2.1.2.2.1.6.571|4|28:a2:4b:7d:df:cb
|
||||
1.3.6.1.2.1.2.2.1.6.572|4|28:a2:4b:7d:df:c8
|
||||
1.3.6.1.2.1.2.2.1.6.573|4|28:a2:4b:7d:df:f9
|
||||
1.3.6.1.2.1.2.2.1.6.574|4|28:a2:4b:7d:e0:34
|
||||
1.3.6.1.2.1.2.2.1.6.575|4|28:a2:4b:7d:e0:3c
|
||||
1.3.6.1.2.1.2.2.1.6.576|4|28:a2:4b:7d:e0:3d
|
||||
1.3.6.1.2.1.2.2.1.6.577|4|28:a2:4b:7d:e0:3e
|
||||
1.3.6.1.2.1.2.2.1.6.578|4|28:a2:4b:7d:e0:3f
|
||||
1.3.6.1.2.1.2.2.1.6.579|4|28:a2:4b:7d:e0:40
|
||||
1.3.6.1.2.1.2.2.1.6.592|4|28:a2:4b:7d:e0:69
|
||||
1.3.6.1.2.1.2.2.1.6.593|4|28:a2:4b:7d:e0:6a
|
||||
1.3.6.1.2.1.2.2.1.6.594|4|28:a2:4b:7d:e0:6b
|
||||
1.3.6.1.2.1.2.2.1.6.595|4|28:a2:4b:7d:e0:6c
|
||||
1.3.6.1.2.1.2.2.1.6.596|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.597|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.598|4|28:a2:4b:7d:e0:6f
|
||||
1.3.6.1.2.1.2.2.1.6.599|4|28:a2:4b:7d:e0:70
|
||||
1.3.6.1.2.1.2.2.1.6.600|4|28:a2:4b:7d:e0:71
|
||||
1.3.6.1.2.1.2.2.1.6.601|4|28:a2:4b:7d:e0:72
|
||||
1.3.6.1.2.1.2.2.1.6.602|4|28:a2:4b:7d:e0:73
|
||||
1.3.6.1.2.1.2.2.1.6.603|4|28:a2:4b:7d:e0:74
|
||||
1.3.6.1.2.1.2.2.1.6.564|4x|28a24b7ddf66
|
||||
1.3.6.1.2.1.2.2.1.6.565|4x|28a24b7ddf67
|
||||
1.3.6.1.2.1.2.2.1.6.566|4x|28a24b7ddf68
|
||||
1.3.6.1.2.1.2.2.1.6.567|4x|28a24b7ddf69
|
||||
1.3.6.1.2.1.2.2.1.6.568|4x|28a24b7ddf97
|
||||
1.3.6.1.2.1.2.2.1.6.569|4x|28a24b7ddfc9
|
||||
1.3.6.1.2.1.2.2.1.6.570|4x|28a24b7ddfca
|
||||
1.3.6.1.2.1.2.2.1.6.571|4x|28a24b7ddfcb
|
||||
1.3.6.1.2.1.2.2.1.6.572|4x|28a24b7ddfc8
|
||||
1.3.6.1.2.1.2.2.1.6.573|4x|28a24b7ddff9
|
||||
1.3.6.1.2.1.2.2.1.6.574|4x|28a24b7de034
|
||||
1.3.6.1.2.1.2.2.1.6.575|4x|28a24b7de03c
|
||||
1.3.6.1.2.1.2.2.1.6.576|4x|28a24b7de03d
|
||||
1.3.6.1.2.1.2.2.1.6.577|4x|28a24b7de03e
|
||||
1.3.6.1.2.1.2.2.1.6.578|4x|28a24b7de03f
|
||||
1.3.6.1.2.1.2.2.1.6.579|4x|28a24b7de040
|
||||
1.3.6.1.2.1.2.2.1.6.592|4x|28a24b7de069
|
||||
1.3.6.1.2.1.2.2.1.6.593|4x|28a24b7de06a
|
||||
1.3.6.1.2.1.2.2.1.6.594|4x|28a24b7de06b
|
||||
1.3.6.1.2.1.2.2.1.6.595|4x|28a24b7de06c
|
||||
1.3.6.1.2.1.2.2.1.6.596|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.597|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.598|4x|28a24b7de06f
|
||||
1.3.6.1.2.1.2.2.1.6.599|4x|28a24b7de070
|
||||
1.3.6.1.2.1.2.2.1.6.600|4x|28a24b7de071
|
||||
1.3.6.1.2.1.2.2.1.6.601|4x|28a24b7de072
|
||||
1.3.6.1.2.1.2.2.1.6.602|4x|28a24b7de073
|
||||
1.3.6.1.2.1.2.2.1.6.603|4x|28a24b7de074
|
||||
1.3.6.1.2.1.2.2.1.6.604|4|
|
||||
1.3.6.1.2.1.2.2.1.6.605|4|
|
||||
1.3.6.1.2.1.2.2.1.6.606|4|
|
||||
@@ -1188,81 +1188,81 @@
|
||||
1.3.6.1.2.1.2.2.1.6.608|4|
|
||||
1.3.6.1.2.1.2.2.1.6.609|4|
|
||||
1.3.6.1.2.1.2.2.1.6.610|4|
|
||||
1.3.6.1.2.1.2.2.1.6.611|4|2a:a2:4b:7d:e0:5d
|
||||
1.3.6.1.2.1.2.2.1.6.611|4x|2aa24b7de05d
|
||||
1.3.6.1.2.1.2.2.1.6.612|4|
|
||||
1.3.6.1.2.1.2.2.1.6.613|4|
|
||||
1.3.6.1.2.1.2.2.1.6.614|4|
|
||||
1.3.6.1.2.1.2.2.1.6.615|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.616|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.617|4|28:a2:4b:7d:e0:65
|
||||
1.3.6.1.2.1.2.2.1.6.615|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.616|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.617|4x|28a24b7de065
|
||||
1.3.6.1.2.1.2.2.1.6.618|4|
|
||||
1.3.6.1.2.1.2.2.1.6.619|4|
|
||||
1.3.6.1.2.1.2.2.1.6.620|4|
|
||||
1.3.6.1.2.1.2.2.1.6.621|4|
|
||||
1.3.6.1.2.1.2.2.1.6.622|4|
|
||||
1.3.6.1.2.1.2.2.1.6.623|4|28:a2:4b:7d:e0:65
|
||||
1.3.6.1.2.1.2.2.1.6.624|4|28:a2:4b:7d:df:7
|
||||
1.3.6.1.2.1.2.2.1.6.623|4x|28a24b7de065
|
||||
1.3.6.1.2.1.2.2.1.6.624|4x|28a24b7ddf07
|
||||
1.3.6.1.2.1.2.2.1.6.626|4|
|
||||
1.3.6.1.2.1.2.2.1.6.635|4|28:a2:4b:7d:df:3
|
||||
1.3.6.1.2.1.2.2.1.6.635|4x|28a24b7ddf03
|
||||
1.3.6.1.2.1.2.2.1.6.636|4|
|
||||
1.3.6.1.2.1.2.2.1.6.640|4|28:a2:4b:7d:e6:90
|
||||
1.3.6.1.2.1.2.2.1.6.641|4|28:a2:4b:7d:df:4
|
||||
1.3.6.1.2.1.2.2.1.6.642|4|28:a2:4b:7d:df:5
|
||||
1.3.6.1.2.1.2.2.1.6.640|4x|28a24b7de690
|
||||
1.3.6.1.2.1.2.2.1.6.641|4x|28a24b7ddf04
|
||||
1.3.6.1.2.1.2.2.1.6.642|4x|28a24b7ddf05
|
||||
1.3.6.1.2.1.2.2.1.6.643|4|
|
||||
1.3.6.1.2.1.2.2.1.6.648|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.648|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.651|4|
|
||||
1.3.6.1.2.1.2.2.1.6.652|4|28:a2:4b:7d:e0:34
|
||||
1.3.6.1.2.1.2.2.1.6.653|4|28:a2:4b:7d:e0:40
|
||||
1.3.6.1.2.1.2.2.1.6.658|4|28:a2:4b:7d:e0:69
|
||||
1.3.6.1.2.1.2.2.1.6.659|4|28:a2:4b:7d:e0:6a
|
||||
1.3.6.1.2.1.2.2.1.6.660|4|28:a2:4b:7d:e0:6b
|
||||
1.3.6.1.2.1.2.2.1.6.661|4|28:a2:4b:7d:e0:6c
|
||||
1.3.6.1.2.1.2.2.1.6.662|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.663|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.664|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.665|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.666|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.667|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.668|4|28:a2:4b:7d:e0:6d
|
||||
1.3.6.1.2.1.2.2.1.6.669|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.670|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.671|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.672|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.673|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.674|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.676|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.677|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.678|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.680|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.681|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.682|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.683|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.684|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.685|4|28:a2:4b:7d:e0:6f
|
||||
1.3.6.1.2.1.2.2.1.6.686|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.687|4|28:a2:4b:7d:e0:6f
|
||||
1.3.6.1.2.1.2.2.1.6.688|4|28:a2:4b:7d:e0:6f
|
||||
1.3.6.1.2.1.2.2.1.6.689|4|28:a2:4b:7d:df:97
|
||||
1.3.6.1.2.1.2.2.1.6.690|4|28:a2:4b:7d:df:c8
|
||||
1.3.6.1.2.1.2.2.1.6.692|4|28:a2:4b:7d:df:f9
|
||||
1.3.6.1.2.1.2.2.1.6.693|4|28:a2:4b:7d:df:f9
|
||||
1.3.6.1.2.1.2.2.1.6.694|4|28:a2:4b:7d:df:f9
|
||||
1.3.6.1.2.1.2.2.1.6.702|4|28:a2:4b:7d:e6:90
|
||||
1.3.6.1.2.1.2.2.1.6.703|4|28:a2:4b:7d:e0:72
|
||||
1.3.6.1.2.1.2.2.1.6.704|4|28:a2:4b:7d:e0:71
|
||||
1.3.6.1.2.1.2.2.1.6.705|4|28:a2:4b:7d:e0:70
|
||||
1.3.6.1.2.1.2.2.1.6.706|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.707|4|28:a2:4b:7d:e0:3c
|
||||
1.3.6.1.2.1.2.2.1.6.708|4|28:a2:4b:7d:e6:90
|
||||
1.3.6.1.2.1.2.2.1.6.652|4x|28a24b7de034
|
||||
1.3.6.1.2.1.2.2.1.6.653|4x|28a24b7de040
|
||||
1.3.6.1.2.1.2.2.1.6.658|4x|28a24b7de069
|
||||
1.3.6.1.2.1.2.2.1.6.659|4x|28a24b7de06a
|
||||
1.3.6.1.2.1.2.2.1.6.660|4x|28a24b7de06b
|
||||
1.3.6.1.2.1.2.2.1.6.661|4x|28a24b7de06c
|
||||
1.3.6.1.2.1.2.2.1.6.662|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.663|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.664|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.665|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.666|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.667|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.668|4x|28a24b7de06d
|
||||
1.3.6.1.2.1.2.2.1.6.669|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.670|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.671|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.672|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.673|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.674|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.676|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.677|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.678|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.680|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.681|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.682|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.683|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.684|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.685|4x|28a24b7de06f
|
||||
1.3.6.1.2.1.2.2.1.6.686|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.687|4x|28a24b7de06f
|
||||
1.3.6.1.2.1.2.2.1.6.688|4x|28a24b7de06f
|
||||
1.3.6.1.2.1.2.2.1.6.689|4x|28a24b7ddf97
|
||||
1.3.6.1.2.1.2.2.1.6.690|4x|28a24b7ddfc8
|
||||
1.3.6.1.2.1.2.2.1.6.692|4x|28a24b7ddff9
|
||||
1.3.6.1.2.1.2.2.1.6.693|4x|28a24b7ddff9
|
||||
1.3.6.1.2.1.2.2.1.6.694|4x|28a24b7ddff9
|
||||
1.3.6.1.2.1.2.2.1.6.702|4x|28a24b7de690
|
||||
1.3.6.1.2.1.2.2.1.6.703|4x|28a24b7de072
|
||||
1.3.6.1.2.1.2.2.1.6.704|4x|28a24b7de071
|
||||
1.3.6.1.2.1.2.2.1.6.705|4x|28a24b7de070
|
||||
1.3.6.1.2.1.2.2.1.6.706|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.707|4x|28a24b7de03c
|
||||
1.3.6.1.2.1.2.2.1.6.708|4x|28a24b7de690
|
||||
1.3.6.1.2.1.2.2.1.6.709|4|
|
||||
1.3.6.1.2.1.2.2.1.6.710|4|28:a2:4b:7d:e0:3f
|
||||
1.3.6.1.2.1.2.2.1.6.711|4|28:a2:4b:7d:e0:3e
|
||||
1.3.6.1.2.1.2.2.1.6.713|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.714|4|2a:a2:4b:7d:e0:5d
|
||||
1.3.6.1.2.1.2.2.1.6.715|4|2a:a2:4b:7d:e0:5d
|
||||
1.3.6.1.2.1.2.2.1.6.716|4|2a:a2:4b:7d:e0:5d
|
||||
1.3.6.1.2.1.2.2.1.6.717|4|2a:a2:4b:7d:e0:5d
|
||||
1.3.6.1.2.1.2.2.1.6.718|4|28:a2:4b:7d:e0:6e
|
||||
1.3.6.1.2.1.2.2.1.6.710|4x|28a24b7de03f
|
||||
1.3.6.1.2.1.2.2.1.6.711|4x|28a24b7de03e
|
||||
1.3.6.1.2.1.2.2.1.6.713|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.714|4x|2aa24b7de05d
|
||||
1.3.6.1.2.1.2.2.1.6.715|4x|2aa24b7de05d
|
||||
1.3.6.1.2.1.2.2.1.6.716|4x|2aa24b7de05d
|
||||
1.3.6.1.2.1.2.2.1.6.717|4x|2aa24b7de05d
|
||||
1.3.6.1.2.1.2.2.1.6.718|4x|28a24b7de06e
|
||||
1.3.6.1.2.1.2.2.1.6.719|4|
|
||||
1.3.6.1.2.1.2.2.1.6.720|4|
|
||||
1.3.6.1.2.1.2.2.1.6.721|4|
|
||||
@@ -1270,26 +1270,26 @@
|
||||
1.3.6.1.2.1.2.2.1.6.723|4|
|
||||
1.3.6.1.2.1.2.2.1.6.724|4|
|
||||
1.3.6.1.2.1.2.2.1.6.725|4|
|
||||
1.3.6.1.2.1.2.2.1.6.726|4|28:a2:4b:7d:e0:f2
|
||||
1.3.6.1.2.1.2.2.1.6.727|4|28:a2:4b:7d:e0:f2
|
||||
1.3.6.1.2.1.2.2.1.6.728|4|28:a2:4b:7d:e0:f2
|
||||
1.3.6.1.2.1.2.2.1.6.729|4|28:a2:4b:7d:e0:f2
|
||||
1.3.6.1.2.1.2.2.1.6.730|4|28:a2:4b:7d:e0:f2
|
||||
1.3.6.1.2.1.2.2.1.6.733|4|28:a2:4b:7d:e0:73
|
||||
1.3.6.1.2.1.2.2.1.6.736|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.737|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.738|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.739|4|2a:a2:4b:7d:de:be
|
||||
1.3.6.1.2.1.2.2.1.6.745|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.746|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.747|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.748|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.749|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.750|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.751|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.752|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.753|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.754|4|2a:a2:4b:7d:de:bd
|
||||
1.3.6.1.2.1.2.2.1.6.726|4x|28a24b7de0f2
|
||||
1.3.6.1.2.1.2.2.1.6.727|4x|28a24b7de0f2
|
||||
1.3.6.1.2.1.2.2.1.6.728|4x|28a24b7de0f2
|
||||
1.3.6.1.2.1.2.2.1.6.729|4x|28a24b7de0f2
|
||||
1.3.6.1.2.1.2.2.1.6.730|4x|28a24b7de0f2
|
||||
1.3.6.1.2.1.2.2.1.6.733|4x|28a24b7de073
|
||||
1.3.6.1.2.1.2.2.1.6.736|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.737|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.738|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.739|4x|2aa24b7ddebe
|
||||
1.3.6.1.2.1.2.2.1.6.745|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.746|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.747|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.748|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.749|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.750|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.751|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.752|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.753|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.6.754|4x|2aa24b7ddebd
|
||||
1.3.6.1.2.1.2.2.1.7.1|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
|
||||
@@ -4809,4 +4809,4 @@
|
||||
1.3.6.1.4.1.2636.3.73.1.3.3.8.1.11.726.1|66|550
|
||||
1.3.6.1.4.1.2636.3.73.1.3.3.8.1.12.726.1|66|9
|
||||
1.3.6.1.4.1.2636.3.73.1.3.3.8.1.13.726.1|66|281
|
||||
1.3.6.1.4.1.2636.3.73.1.3.3.8.1.14.726.1|2|0
|
||||
1.3.6.1.4.1.2636.3.73.1.3.3.8.1.14.726.1|2|0
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|1500
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|0:5:5a:3:eb:92
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|00055a03eb92
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user