This file is indexed.

/usr/share/nut/driver.list is in nut-server 2.7.2-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
# Network UPS Tools - 2.7.2 - Hardware Compatibility List
# version=2
#
# This file is used for various purposes, like building the HTML compatibility
# list or displaying information in NUT configuration tools.
#
# If you write a new driver, modify an existing one to add more support,
# or just know about some equipment that isn't listed but should be,
# please send us a patch to update this file.
#
# Format:
# =======
# <manufacturer>	<device type>	<support level>	<model name>	<model extra>	<driver [parameters]>
#
# Details:
# ========
# - device type:
#   "ups" for Uninterruptible Power Supply
#   "pdu" for Power Distributions Unit
#   "scd" for Solar Controlers Device
#
# - support level: a number from "1" to "5" (stars) meaning:
#   *       protocol based on reverse engineering
#   **      based on fragments of publicly available protocol
#   ***     based on publicly available protocol
#   ****    vendor provided protocol
#   *****   vendor provided protocol and hardware
#
# - driver [parameters]: mention the driver(s) (separated by "or" if there are
#   several possibilities). Any mandatory parameter(s) must be referenced, as
#   they will be parsed by configuration helper software.
#   For example, genericups entries must mention the "upstype=nn" format.
#
# Duplicate text in the last field will be cooked out during the conversion
# to HTML with ROWSPAN magic.  They must be an exact match for this to work.

"Ablerex"	"ups"	"2"	"MS-RT"	""	"blazer_ser"
"Ablerex"	"ups"	"2"	"625L"	"USB"	"blazer_usb"
"Ablerex"	"ups"	"2"	"Hope Office 400/600"	""	"blazer_ser"

"ActivePower"	"ups"	"2"	"400VA"	""	"blazer_ser"
"ActivePower"	"ups"	"2"	"1400VA"	""	"blazer_ser"
"ActivePower"	"ups"	"2"	"2000VA"	""	"blazer_ser"

"Advice"	"ups"	"2"	"TopGuard 2000"	""	"blazer_ser"

"AEC"	"ups"	"1"	"MiniGuard UPS 700"	"Megatec M2501 cable"	"genericups upstype=21"

"AEG Power Solutions"	"ups"	"2"	"PROTECT HOME"	""	"blazer_ser or blazer_usb"

"APC"	"ups"	"1"	"Back-UPS Pro"	""	"apcsmart"
"APC"	"ups"	"1"	"Matrix-UPS"	""	"apcsmart"
"APC"	"ups"	"1"	"Smart-UPS"	""	"apcsmart"
"APC"	"ups"	"1"	"Smart-UPS SMT/SMX/SURTD"	"Microlink models with RJ45 socket - they *require* AP9620 SmartSlot expansion card and smart cable"	"apcsmart"
"APC"	"ups"	"2"	"Back-UPS Pro USB"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"Back-UPS USB"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"Back-UPS RS USB"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"Back-UPS LS USB"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"Back-UPS ES/CyberFort 350"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"Back-UPS BF500"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"BACK-UPS XS LCD"	"USB"	"usbhid-ups"
"APC"	"ups"	"2"	"Smart-UPS USB"	"USB"	"usbhid-ups"
"APC"	"ups"	"1"	"Back-UPS"	"940-0095A/C cables"	"genericups upstype=1"
"APC"	"ups"	"1"	"Back-UPS"	"940-0020B/C cables"	"genericups upstype=2"
"APC"	"ups"	"1"	"Back-UPS"	"940-0023A cable"	"genericups upstype=9"
"APC"	"ups"	"1"	"Back-UPS Office"	"940-0119A cable"	"genericups upstype=12"
"APC"	"ups"	"1"	"Back-UPS RS 500"	"custom non-USB cable"	"genericups upstype=20"
"APC"	"ups"	"3"	"Smart-UPS RT XL"	"AP9618 SNMP monitoring card"	"snmp-ups"
"APC"	"ups"	"3"	"(various)"	"AP9618 SNMP monitoring card"	"snmp-ups"
"APC"	"ups"	"3"	"(various)"	"AP9630 SNMP monitoring card"	"snmp-ups privProtocol=AES"
"APC"	"pdu"	"1"	"Masterswitch"	"940-0020 cable"	"genericups upstype=12"
"APC"	"pdu"	"1"	"AP9210"	"8 outlets"	"powerman-pdu (experimental)"
"APC"	"pdu"	"1"	"AP79xx"	"8 to 24 outlets"	"powerman-pdu (experimental)"
"APC"	"pdu"	"3"	"(various)"	"SNMP monitoring card"	"snmp-ups (experimental)"

"Aphel"	"pdu"	"3"	"various PDU"	""	"snmp-ups (experimental)"

"Apollo"	"ups"	"1"	"1000A"	""	"genericups upstype=4"
"Apollo"	"ups"	"1"	"1000F"	""	"genericups upstype=4"
"Apollo"	"ups"	"2"	"850VA"	""	"blazer_usb"

"Appro"	"pdu"	"1"	"SWPDU"	"48 outlets"	"powerman-pdu (experimental)"

"ARTronic"	"ups"	"2"	"ARTon Millenium 1/2/3/6/10 kVA"	"Serial"	"blazer_ser"
"ARTronic"	"ups"	"2"	"ARTon Millenium 3.1 10/15/20 kVA"	"Serial"	"blazer_ser"
"ARTronic"	"ups"	"2"	"ARTon Titanium 6/10 kVA"	"Serial"	"blazer_ser"
"ARTronic"	"ups"	"2"	"ARTon Titanium 3.1 10/15/20 kVA"	"Serial"	"blazer_ser"
"ARTronic"	"ups"	"2"	"ARTon Optimum 1/2/3/6/10 kVA"	"Serial"	"blazer_ser"
"ARTronic"	"ups"	"2"	"ARTon Titanium Plus 1/2/3 kVA"	"USB"	"blazer_usb"
"ARTronic"	"ups"	"2"	"ARTon Platinium 6/10 kVA"	"USB"	"blazer_usb"
"ARTronic"	"ups"	"2"	"ARTon Platinium Combo 3.1 10/15/20 kVA"	"USB"	"blazer_usb"
"ARTronic"	"ups"	"2"	"ARTon Platinium RT 1/2/3/6/10 kVA"	"USB"	"blazer_usb"

"ATEK"	"ups"	"2"	"Defensor 1K Tower / Rack"	"USB"	"blazer_usb"
"ATEK"	"ups"	"2"	"Defensor 2K Tower / Rack"	"USB"	"blazer_usb"
"ATEK"	"ups"	"2"	"Defensor 3K Tower / Rack"	"USB"	"blazer_usb"
"ATEK"	"ups"	"2"	"Defensor 6K Tower / Rack"	"USB"	"blazer_usb"
"ATEK"	"ups"	"2"	"Defensor 10K Tower / Rack"	"USB"	"blazer_usb"

"Atlantis Land"	"ups"	"2"	"A03-P826"	""	"blazer_ser"
"Atlantis Land"	"ups"	"2"	"A03-P551"	"USB"	"blazer_usb langid_fix=0x0409"	# http://www.atlantisland.it/pub/prodotti.php?famiglia=1&l1=7&l2=24&articolo=QTAzLVA1NTE=
"Atlantis Land"	"ups"	"2"	"HostPower 851 (A03-HP851)"	"USB"	"nutdrv_qx"
"Atlantis Land"	"ups"	"2"	"LinePower 1151 (A03-OP1151)"	"Serial"	"nutdrv_qx"
"Atlantis Land"	"ups"	"2"	"LinePower 1151 (A03-OP1151)"	"USB"	"nutdrv_qx"
"Atlantis Land"	"ups"	"2"	"OnePower 841+ (A03-P841)"	"USB"	"nutdrv_qx"
"Atlantis Land"	"ups"	"2"	"(various)"	"Serial"	"nutdrv_qx"
"Atlantis Land"	"ups"	"2"	"(various)"	"USB"	"nutdrv_qx"

"Aviem Systems"	"ups"	"2"	"Aviem Power RT 1000-3000VA"	""	"blazer_ser"

"Baytech"	"pdu"	"1"	"RPC3"	"8 outlets"	"powerman-pdu (experimental)"
"Baytech"	"pdu"	"1"	"RPC3-20NC"	"8 outlets"	"powerman-pdu (experimental)"
"Baytech"	"pdu"	"1"	"RPC28-30NC"	"20 outlets"	"powerman-pdu (experimental)"
"Baytech"	"pdu"	"3"	"various RPC"	""	"snmp-ups"

"Belkin"	"ups"	"2"	"Active Battery Backup BU30 series"	"USB"	"blazer_usb"
"Belkin"	"ups"	"1"	"Home Office F6H350-SER"	""	"genericups upstype=7"
"Belkin"	"ups"	"1"	"Home Office F6H500-SER"	""	"genericups upstype=7"
"Belkin"	"ups"	"1"	"Home Office F6H650-SER"	""	"genericups upstype=7"
"Belkin"	"ups"	"2"	"F6H375-USB"	"USB (<= 2005 models, vendor id: 050d)"	"usbhid-ups"
"Belkin"	"ups"	"2"	"F6H375-USB"	"USB (2007 models, vendor id: 0665)"	"blazer_usb"
"Belkin"	"ups"	"2"	"Office Series F6C550-AVR"	"USB"	"usbhid-ups"
"Belkin"	"ups"	"2"	"Regulator Pro"	"F6C525-SER, F6C625-SER"	"belkin"
"Belkin"	"ups"	"1"	"Resource"	""	"genericups upstype=4"
"Belkin"	"ups"	"2"	"Small Enterprise F6C1500-TW-RK"	"serial port"	"belkin"
"Belkin"	"ups"	"2"	"Small Enterprise F6C1500-TW-RK"	"USB"	"usbhid-ups"
"Belkin"	"ups"	"2"	"Universal UPS F6C100-UNV"	"USB"	"usbhid-ups"
"Belkin"	"ups"	"1"	"Universal UPS F6C120-UNV"	"serial port"	"belkinunv"
"Belkin"	"ups"	"2"	"Universal UPS F6C120-UNV"	"USB"	"usbhid-ups"
"Belkin"	"ups"	"1"	"Universal UPS F6C800-UNV"	"serial port"	"belkinunv"
"Belkin"	"ups"	"2"	"Universal UPS F6C800-UNV"	"USB"	"usbhid-ups"
"Belkin"	"ups"	"1"	"Universal UPS F6C1100-UNV"	"serial port (<= 2005 models)"	"belkinunv"
"Belkin"	"ups"	"2"	"Universal UPS F6C1100-UNV"	"USB (<= 2005 models, vendor id: 050d)"	"usbhid-ups"
"Belkin"	"ups"	"2"	"Universal UPS F6C1100-UNV"	"USB (2007 models, vendor id: 0665)"	"blazer_usb"
"Belkin"	"ups"	"2"	"Universal UPS F6C1200-UNV"	"USB (<= 2005 models, vendor id: 050d)"	"usbhid-ups"
"Belkin"	"ups"	"2"	"Universal UPS F6C1200-UNV"	"USB (2007 models, vendor id: 0665)"	"blazer_usb"
"Belkin"	"ups"	"2"	"Universal UPS F6H350deUNV"	"serial port"	"blazer_ser"
"Belkin"	"ups"	"2"	"Universal UPS F6H350ukUNV"	"serial port"	"blazer_ser"
"Belkin"	"ups"	"2"	"Universal UPS F6H500ukUNV"	"serial port"	"blazer_ser"
"Belkin"	"ups"	"2"	"Universal UPS F6H650ukUNV"	"serial port"	"blazer_ser"
"Belkin"	"ups"	"2"	"F6S600auUSB"	"USB"	"blazer_usb"

"Best Power"	"ups"	"1"	"Fortress (older)"	""	"bestfortress"
"Best Power"	"ups"	"1"	"Fortress (newer)"	""	"blazer_ser or bestups"
"Best Power"	"ups"	"1"	"Fortress Telecom"	""	"blazer_ser or bestups"
"Best Power"	"ups"	"1"	"Axxium Rackmount"	""	"blazer_ser or bestups"
"Best Power"	"ups"	"1"	"Patriot Pro"	""	"blazer_ser or bestups"
"Best Power"	"ups"	"1"	"Patriot Pro II"	""	"blazer_ser or bestups"
"Best Power"	"ups"	"1"	"Patriot"	"INT51 cable"	"genericups upstype=6"
"Best Power"	"ups"	"1"	"Micro-Ferrups"	""	"bestuferrups"
"Best Power"	"ups"	"1"	"Fortress/Ferrups"	"f-command support"	"bestfcom"

"Borri"	"ups"	"2"	"B400-010-B/B400-020-B/B400-030-B/B400-010-C/B400-020-C/B400-030-C"	""	"blazer_usb"
"Borri"	"ups"	"2"	"B400-R010-B/B400-R020-B/B400-R030-B/B400-R010-C/B400-R020-C/B400-R030-C"	""	"blazer_usb"
"Borri"	"ups"	"2"	"B500-060-B/B500-100-B/B500-060-C/B500-100-C"	""	"blazer_usb"
"Borri"	"ups"	"2"	"B500-R060-B/B500-R100-B"	""	"blazer_usb"
"Borri"	"ups"	"2"	"B500EVO-100-B/B500EVO-200-B"	""	"blazer_usb"

"CABAC"	"ups"	"2"	"UPS-1700DV2"	""	"blazer_usb"

"Chloride"	"ups"	"2"	"Desk Power 650"	"serial port"	"blazer_ser"

"Cito Power"	"ups"	"2"	"CPG-SR1000"	""	"blazer_ser"

"Clary"	"ups"	"4"	"ST-800"	""	"gamatronic"

"Compaq"	"ups"	"4"	"T1500h"	""	"upscode2 use_pre_lf"
"Compaq"	"ups"	"4"	"R3000h"	""	"upscode2"
"Compaq"	"ups"	"4"	"R3000 XR"	""	"bcmxcp"
"Compaq"	"ups"	"4"	"R5500 XR"	""	"bcmxcp"

"COVER ENERGY SA"	"ups"	"2"	"COVER PRM 1K/2K/3K/6K/10K"	""	"blazer_usb"
"COVER ENERGY SA"	"ups"	"2"	"COVER PRM 1K/2K/3K/6K/10K EC"	""	"blazer_usb"
"COVER ENERGY SA"	"ups"	"2"	"COVER PRM 6K/10K PR"	""	"blazer_usb"

"Cyber Power Systems"	"ups"	"1"	"CPS320AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS500AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS650AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS700AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS800AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS850AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS900AVR"	""	"powerpanel"	# http://www.cyberpowersystems.com/products/ups-systems/other-ups/CPS900AVR.html
"Cyber Power Systems"	"ups"	"1"	"CPS1250AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS1500AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"Power99"	""	"genericups upstype=7"
"Cyber Power Systems"	"ups"	"1"	"550SL"	""	"genericups upstype=7"
"Cyber Power Systems"	"ups"	"1"	"725SL"	""	"genericups upstype=7"
"Cyber Power Systems"	"ups"	"1"	"CPS825VA"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS1100AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS1200AVR"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"CPS1500AVR-HO"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"1"	"PR2200"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"2"	"PR3000E"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"2"	"OL3000RMXL2U"	""	"powerpanel"
"Cyber Power Systems"	"ups"	"2"	"CPS685AVR"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"CPS800AVR"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"AE550"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"3"	"CP 1500C"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"3"	"CP825AVR-G / LE825G"	"USB"	"usbhid-ups"	# http://www.cyberpowersystems.com/products/ups-systems/retail-products/LE825G.html
"Cyber Power Systems"	"ups"	"3"	"OR2200LCDRM2U"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"3"	"OR700LCDRM1U"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"3"	"PR6000LCDRTXL5U"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"Value 400E"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"Value 600E"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"Value 800E"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"CP900AVR"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"CP1000AVRLCD"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"CP1350AVRLCD"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"CP1500AVRLCD"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"2"	"CP1000PFCLCD"	"USB"	"usbhid-ups"
"Cyber Power Systems"	"ups"	"3"	"RMCARD100"	""	"snmp-ups"
"Cyber Power Systems"	"ups"	"3"	"RMCARD201"	""	"snmp-ups"
"Cyber Power Systems"	"ups"	"3"	"RMCARD202"	""	"snmp-ups"
"Cyber Power Systems"	"ups"	"3"	"RMCARD301"	""	"snmp-ups"

"Cyclades"	"pdu"	"1"	"PM8"	"8 outlets"	"powerman-pdu (experimental)"
"Cyclades"	"pdu"	"1"	"PM10"	"10 outlets"	"powerman-pdu (experimental)"

"Dell"	"ups"	"5"	"Tower 500W LV / HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack/Tower 1000W LV / HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack/Tower 1500W LV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack/Tower 1920W LV / HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack/Tower 2300W LV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack/Tower 2700W LV / HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Short Depth Rack 2700W Online LV / HV"	"High Efficiency, Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack 3750W High Efficiency Online HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack 4200W High Efficiency Online HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Rack 5600W HV"	"Serial port"	"mge-shut"
"Dell"	"ups"	"5"	"Tower 500W LV / HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack/Tower 1000W LV / HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack/Tower 1500W LV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack/Tower 1920W LV / HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack/Tower 2300W LV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack/Tower 2700W LV / HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Short Depth Rack 2700W Online LV / HV"	"High Efficiency, USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack 3750W High Efficiency Online HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack 4200W High Efficiency Online HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Rack 5600W HV"	"USB port"	"usbhid-ups"
"Dell"	"ups"	"5"	"Various (SNMP mode)"	"UPS Network Management Card "	"snmp-ups"
"Dell"	"ups"	"5"	"Various (XML/HTTP mode)"	"UPS Network Management Card "	"netxml-ups (experimental)"

"Delta"	"ups"	"1"	"GES602N"	""	"belkin"

"Deltec"	"ups"	"1"	"PowerRite Pro II"	""	"genericups upstype=15"
"Deltec"	"ups"	"4"	"PRM 450/700/1000/1500"	""	"upscode2"

"Digital Loggers"	"pdu"	"1"	"LPC, EPCR2, DIN"	"8 outlets"	"powerman-pdu (experimental)"

"Digitus"	"ups"	"1"	"DN-170014"	"USB"	"richcomm_usb"	# http://www.digitus.info/en/products/professional-network/security-and-surveillance/power-supply/uninterrruptable-power-supplies/ups-uninterruptible-power-systems-dn-170014/section/prof/
"Digitus"	"ups"	"2"	"DN-170020"	""	"blazer_ser"

"Dynamix"	"ups"	"2"	"UPS1700D"	""	"blazer_ser"
"Dynamix"	"ups"	"2"	"UPS-650VA"	""	"blazer_ser"
"Dynamix"	"ups"	"2"	"650VA/1000VA"	"USB"	"blazer_usb langid_fix=0x0409"

"Dynex"	"ups"	"1"	"975AVR"	""	"genericups upstype=7"
"Dynex"	"ups"	"2"	"DX-800U"	"USB"	"usbhid-ups"

"Eaton"	"ups"	"5"	"3S"	""	"usbhid-ups"
"Eaton"	"ups"	"5"	"Protection Station 500/650/800 VA"	"USB"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Ellipse ECO 650/800/1200/1600 VA"	"USB"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Ellipse ASR USBS 600/750/1000/1500 VA"	"USB cable"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Ellipse MAX USBS 600/850/1100/1500 VA"	"USB cable"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Evolution 650/850/1150/1550/2000 VA"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Evolution S 1250/1750/2500/3000 VA"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"EX 700/1000/1500 VA"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"EX 2200/3000/3000 XL VA"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"EX 1000 RT2U / 1500 RT2U"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"MX 5/8/10/15/20 kVA"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"5 PX"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Nova AVR 625/1250"	"USB"	"usbhid-ups"
"Eaton"	"ups"	"5"	"5S"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"5SC"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"5P"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"9SX"	"USB port"	"usbhid-ups"
"Eaton"	"ups"	"5"	"Ellipse ASR USBS 600/750/1000/1500 VA"	"Serial cable"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"Ellipse MAX USBS 600/850/1100/1500 VA"	"Serial cable"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"Evolution 650/850/1150/1550/2000 VA"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"Evolution S 1250/1750/2500/3000 VA"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"EX 700/1000/1500 VA"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"EX 2200/3000/3000 XL VA"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"EX 1000 RT2U / 1500 RT2U"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"MX 5/8/10/15/20 kVA"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"5 PX"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"EX RT 1:1 7/11 kVA"	""	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"EX RT 3:1 5/7/11 kVA"	""	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"5SC"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"5P"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"9SX"	"Serial port"	"mge-shut or oldmge-shut"
"Eaton"	"ups"	"5"	"EX RT (XML/HTTP)"	"NMC Transverse card (ref 66074)"	"netxml-ups (experimental)"
"Eaton"	"ups"	"5"	"EX RT (SNMP)"	"NMC Transverse card (ref 66074)"	"snmp-ups (experimental)"
"Eaton"	"ups"	"5"	"E Series NV UPS 400-2000 VA"	""	"blazer_usb"
"Eaton"	"ups"	"5"	"E Series DX UPS 1-20 kVA"	""	"mge-utalk"
"Eaton"	"ups"	"4"	"NetUPS SE 450/700/1000/1500"	""	"upscode2"
"Eaton"	"ups"	"5"	"BladeUPS (SNMP)"	"ConnectUPS Web/SNMP Card"	"snmp-ups (experimental)"
"Eaton"	"ups"	"5"	"various models (XML/HTTP mode)"	"NMC Minislot (ref 66102)"	"netxml-ups (experimental)"
"Eaton"	"ups"	"5"	"various models (SNMP mode)"	"NMC Minislot (ref 66102)"	"snmp-ups (experimental)"
"Eaton"	"ups"	"5"	"various models (XML/HTTP mode)"	"SNMP/Web Minislot card (ref 66244)"	"netxml-ups (experimental)"
"Eaton"	"ups"	"5"	"various models (SNMP mode)"	"SNMP/Web Minislot card (ref 66244)"	"snmp-ups (experimental)"
"Eaton"	"ups"	"5"	"various models (serial mode)"	"Management Card Contact (ref 66104)"	"mge-shut or mge-utalk"
"Eaton"	"pdu"	"5"	"ePDU Managed"	""	"snmp-ups"
"Eaton"	"pdu"	"5"	"ePDU Switched"	""	"snmp-ups"
"Eaton"	"pdu"	"5"	"ePDU Monitored"	""	"snmp-ups or netxml-ups"
"Eaton"	"ups"	"5"	"Powerware 3105"	"USB"	"bcmxcp_usb"	# http://powerquality.eaton.com/Products-services/Backup-Power-UPS/3105-eol.aspx
"Eaton"	"ups"	"5"	"Powerware 9130"	""	"bcmxcp or usbhid-ups"
"Eaton"	"ups"	"5"	"Powerware 9140"	""	"bcmxcp or usbhid-ups"
"Eaton"	"ups"	"5"	"Powerware 5130"	""	"usbhid-ups"
"Eaton"	"ups"	"5"	"9395"	"Serial port"	"bcmxcp"
"Eaton"	"ups"	"5"	"Best Ferrups"	"older ConnectUPS"	"snmp-ups"
"Eaton"	"ups"	"5"	"ConnectUPS X / BD / E Slot"	"Serial Pass-through mode"	"bcmxcp"
"Eaton"	"ups"	"5"	"ConnectUPS X / BD / E Slot"	"Network port"	"snmp-ups"
"Eaton"	"ups"	"5"	"Management Card Contact"	"Config 3 - Cable 66033"	"genericups upstype=7"

"Effekta"	"ups"	"2"	"MI/MT/MH"	"2502 cable"	"blazer_ser"
"Effekta"	"ups"	"2"	"RM2000MH"	""	"blazer_ser"

"Energy Sistem"	"ups"	"2"	"(various)"	""	"blazer_ser"

"ETA"	"ups"	"1"	"mini+UPS"	"WinNT/Upsoft cable"	"genericups upstype=7"
"ETA"	"ups"	"1"	"mini+UPS PRO"	"UPS Explorer cable"	"etapro"

"EVER"	"ups"	"1"	"NET DPC series"	"Serial port"	"everups"
"EVER"	"ups"	"1"	"AP Pro series"	"Serial port"	"everups"
"EVER"	"ups"	"1"	"625/1000"	""	"safenet"
"EVER"	"ups"	"2"	"POWERLINE RT 1-3kVA series"	"Serial port"	"blazer_ser"
"EVER"	"ups"	"2"	"POWERLINE RT 6-10kVA series"	"Serial port"	"blazer_ser"
"EVER"	"ups"	"2"	"POWERLINE 11 series"	"Serial port"	"blazer_ser"
"EVER"	"ups"	"2"	"POWERLINE 31 series"	"Serial port"	"blazer_ser"
"EVER"	"ups"	"2"	"DUO II Pro series"	"USB port"	"blazer_usb"
"EVER"	"ups"	"2"	"POWERLINE RT 1-3kVA series"	"USB port"	"blazer_usb"
"EVER"	"ups"	"2"	"POWERLINE RT 6-10kVA series"	"USB port"	"blazer_usb"

"Exide"	"ups"	"1"	"NetUPS SE"	""	"genericups upstype=15"
"Exide"	"ups"	"4"	"NetUPS SE 450/700/1000/1500"	""	"upscode2"

"Fenton Technologies"	"ups"	"1"	"PowerPal"	"P-series"	"safenet"
"Fenton Technologies"	"ups"	"5"	"PowerPal"	"L-series"	"blazer_ser"
"Fenton Technologies"	"ups"	"5"	"PowerOn"	""	"blazer_ser"
"Fenton Technologies"	"ups"	"5"	"PowerPure"	""	"blazer_ser"

"Fairstone"	"ups"	"1"	"L525/L625/L750"	""	"safenet"

"Fideltronik"	"ups"	"1"	"Ares 700 and larger"	""	"genericups upstype=6"
"Fideltronik"	"ups"	"1"	"Other Ares models"	""	"genericups upstype=19"

"Fiskars"	"ups"	"4"	"PowerRite MAX"	""	"upscode2"
"Fiskars"	"ups"	"4"	"PowerServer 10"	""	"upscode2"
"Fiskars"	"ups"	"4"	"PowerServer 30"	""	"upscode2"
"Fiskars"	"ups"	"4"	"9200"	"UPS Information Unit"	"upscode2"

"Flight Technic & International (FTUPS)"	"ups"	"2"	"Smart On Line UPS 1KVA"	"Serial"	"nutdrv_qx"
"Flight Technic & International (FTUPS)"	"ups"	"2"	"Smart On Line UPS 1KVA"	"USB"	"nutdrv_qx"
"Flight Technic & International (FTUPS)"	"ups"	"2"	"(various)"	"Serial"	"nutdrv_qx"
"Flight Technic & International (FTUPS)"	"ups"	"2"	"(various)"	"USB"	"nutdrv_qx"

"Forza Power Technologies"	"ups"	"2"	"SL-1001"	"USB"	"blazer_usb"
"Forza Power Technologies"	"ups"	"2"	"FX-1500LCD"	"USB"	"blazer_usb"

"FSP"	"ups"	"2"	"EP650"	"USB"	"blazer_usb"

"Gamatronic"	"ups"	"5"	"All models with alarm interface"	""	"genericups upstype=22"
"Gamatronic"	"ups"	"2"	"G-SmartCompact 2000"	""	"blazer_ser"
"Gamatronic"	"ups"	"5"	"MP110/210"	""	"gamatronic"
"Gamatronic"	"ups"	"5"	"MS-T"	""	"gamatronic"
"Gamatronic"	"ups"	"5"	"MS"	""	"gamatronic"
"Gamatronic"	"ups"	"5"	"µPS3/1"	""	"gamatronic"

"GE Digital Energy"	"ups"	"2"	"EP Series"	""	"blazer_usb"
"GE Digital Energy"	"ups"	"2"	"GT Series 1000/1500/2000/3000 VA Rack/Tower"	"UL-version"	"blazer_ser"

"Geek Squad"	"ups"	"2"	"GS1285U"	"USB"	"usbhid-ups"

"Gemini"	"ups"	"1"	"UPS625/UPS1000"	""	"safenet"

"Gtec"	"ups"	"2"	"ZP120N-1K / ZP120N-1KS / ZP120N-2K / ZP120N-2KS / ZP120N-3K / ZP120N-3KS"	""	"blazer_usb"
"Gtec"	"ups"	"2"	"ZP120N-6K / ZP120N-6KS / ZP120N-10K-11 / ZP120N-10KS-11"	""	"blazer_usb"
"Gtec"	"ups"	"2"	"ZP120N-10K-31-00 / ZP120N-10K-31-07 / ZP120N-10K-31-09 / ZP120N-10K-31-99 / ZP120N-20K"	"USB port"	"blazer_usb"
"Gtec"	"ups"	"2"	"AP160N-1K / AP160LCD-1K-KS / AP160N-2K / AP160LCD-2K-KS / AP160N-3K / AP160LCD-3K-KS / AP160N-6K-PDU / AP160N-10K-PDU"	"USB port"	"blazer_usb"
"Gtec"	"ups"	"2"	"ZP120N-10K-31-00 / ZP120N-10K-31-07 / ZP120N-10K-31-09 / ZP120N-10K-31-99 / ZP120N-20K"	"Serial port"	"blazer_ser"
"Gtec"	"ups"	"2"	"AP160N-1K / AP160LCD-1K-KS / AP160N-2K / AP160LCD-2K-KS / AP160N-3K / AP160LCD-3K-KS / AP160N-6K-PDU / AP160N-10K-PDU"	"Serial port"	"blazer_ser"

"HP"	"ups"	"1"	"PowerTrust 2997A"	"HP 5061-2575 cable"	"apcsmart"
"HP"	"ups"	"3"	"T750 G2"	"Serial port"	"bcmxcp"
"HP"	"ups"	"3"	"T1000 G3"	"Serial port"	"bcmxcp"
"HP"	"ups"	"3"	"T1500 G3"	"Serial port"	"bcmxcp"
"HP"	"ups"	"3"	"R1500 G2"	"Serial port"	"bcmxcp"
"HP"	"ups"	"4"	"R3000 XR"	""	"bcmxcp"
"HP"	"ups"	"4"	"R5500 XR"	""	"bcmxcp"
"HP"	"ups"	"3"	"T500 / T750"	"older models, USB port"	"bcmxcp_usb"
"HP"	"ups"	"3"	"R/T3000"	"Serial port"	"mge-shut or oldmge-shut"
"HP"	"ups"	"3"	"R5000 / R7000"	"Serial port"	"mge-shut or oldmge-shut"
"HP"	"ups"	"3"	"T750 INTL"	""	"usbhid-ups"
"HP"	"ups"	"3"	"T1000 INTL"	""	"usbhid-ups"
"HP"	"ups"	"3"	"T1500 INTL"	""	"usbhid-ups"
"HP"	"ups"	"3"	"T750 G2"	"USB port"	"usbhid-ups"
"HP"	"ups"	"3"	"T1000 G3"	"USB port"	"usbhid-ups"
"HP"	"ups"	"3"	"T1500 G3"	"USB port"	"usbhid-ups"
"HP"	"ups"	"3"	"R1500 G2 INTL"	"USB port"	"usbhid-ups"
"HP"	"ups"	"3"	"R/T 2200 G2"	""	"usbhid-ups"
"HP"	"ups"	"3"	"R/T3000"	"USB port"	"usbhid-ups"
"HP"	"ups"	"3"	"R5000 / R7000"	"USB port"	"usbhid-ups"
"HP"	"ups"	"4"	"Various (SNMP mode)"	"HP UPS Management Module "	"snmp-ups"
"HP"	"pdu"	"1"	"HP3488 Switch/Control Unit"	""	"powerman-pdu (experimental)"

"IBM"	"pdu"	"1"	"Blade Center Management Module"	"15 outlets"	"powerman-pdu (experimental)"

"ICS"	"pdu"	"1"	"8064 Ethernet Relay Interface"	"16 outlets"	"powerman-pdu (experimental)"

"iDowell"	"ups"	"2"	"iBox UPS"	""	"usbhid-ups"

"INELT"	"ups"	"2"	"Monolith 1000LT"	""	"blazer_ser"
"INELT"	"ups"	"2"	"Monolith 3000RT"	""	"blazer_ser"

"Inform"	"ups"	"1"	"GUARD"	"Line Interactive AP model"	"powercom"
"Inform"	"ups"	"2"	"Guard S 1500AP"	""	"blazer_ser"
"Inform"	"ups"	"2"	"Informer Compact 1000-2000-3000 VA"	""	"blazer_ser"
"Inform"	"ups"	"2"	"Sinus SS 210"	""	"blazer_ser"

"Infosec"	"ups"	"2"	"iPEL 350"	""	"blazer_ser"
"Infosec"	"ups"	"2"	"iPEL 500"	""	"blazer_ser"
"Infosec"	"ups"	"2"	"iPEL 750"	""	"blazer_ser"
"Infosec"	"ups"	"2"	"iPEL 1000"	""	"blazer_ser"
"Infosec"	"ups"	"2"	"500XP"	""	"blazer_ser"
"Infosec"	"ups"	"2"	"X2, X3, X4, E2, E3, E4"	"USB"	"blazer_usb"
"Infosec"	"ups"	"2"	"XP 500"	"USB"	"blazer_usb"
"Infosec"	"ups"	"2"	"XP 1000"	""	"blazer_ser"

"IPAR"	"ups"	"2"	"Mini Energy ME 800"	""	"blazer_usb"

"IPMI"	"pdu"	"1"	""	""	"powerman-pdu (experimental)"

"Ippon"	"ups"	"2"	"Back Power Pro 400/500/600/700/800"	""	"blazer_ser"
"Ippon"	"ups"	"2"	"Back Power Pro 400/500/600/700/800"	"USB"	"blazer_usb (experimental)"
"Ippon"	"ups"	"2"	"Back Comfo Pro 600/800"	""	"blazer_ser"
"Ippon"	"ups"	"2"	"Back Comfo Pro 600/800"	"USB"	"blazer_usb (experimental)"
"Ippon"	"ups"	"2"	"Smart Power Pro 1000/1400/2000"	""	"blazer_ser"
"Ippon"	"ups"	"2"	"Smart Power Pro 1000/1400/2000"	"USB"	"blazer_usb (experimental)"
"Ippon"	"ups"	"2"	"Smart Winner 750/1000/1500/2000/3000"	""	"blazer_ser"
"Ippon"	"ups"	"2"	"Smart Winner 750/1000/1500/2000/3000"	"USB"	"blazer_usb (experimental)"
"Ippon"	"ups"	"2"	"(various)"	""	"blazer_ser"
"Ippon"	"ups"	"2"	"(various)"	"USB"	"blazer_usb"
"Ippon"	"ups"	"2"	"INNOVA RT 1K/1.5K/2K/3K"	""	"blazer_usb"

"IVT"	"scd"	"1"	"SCD series"	""	"ivtscd"

"Jageson Technology"	"ups"	"1"	"Jasuny USPS"	""	"genericups upstype=4"

"Kanji"	"ups"	"1"	"800 VA"	"USB"	"nutdrv_atcl_usb"

"Kebo"	"ups"	"2"	"1200D/D Series"	""	"blazer_ser"

"KOLFF"	"ups"	"2"	"BLACK NOVA 1K/2K/3K/6K/10K/20K TOWER"	""	"blazer_usb"
"KOLFF"	"ups"	"2"	"BLACK NOVA 1K/2K/3K/6K/10K/20K XL TOWER"	""	"blazer_usb"
"KOLFF"	"ups"	"2"	"BLACK NOVA 1K/1.5K/2K/3K/6K/10K RACK"	""	"blazer_usb"
"KOLFF"	"ups"	"2"	"BLACK NOVA 1K/1.5K/2K/3K/6K/10K XL RACK"	""	"blazer_usb"

"Krauler"	"ups"	"2"	"UP-D1200VA"	"USB"	"blazer_usb"
"Krauler"	"ups"	"2"	"UP-M500VA"	"USB"	"blazer_usb"

"LDLC"	"ups"	"2"	"UPS-1200D"	""	"blazer_usb langid_fix=0x4095"

"Lestar"	"ups"	"2"	"MD-800E"	""	"blazer_ser"

"Lexis"	"ups"	"2"	"X-Power Tigra 1kVA"	""	"blazer_ser or bestups"

"Liebert"	"ups"	"2"	"ITON 600VA"	""	"blazer_ser"
"Liebert"	"ups"	"5"	"UPStation GXT2"	"contact-closure cable"	"liebert"
"Liebert"	"ups"	"1"	"GXT2-3000RT230"	""	"liebert-esp2 (experimental)"
"Liebert"	"ups"	"2"	"PowerSure Personal XT"	"USB"	"usbhid-ups"
"Liebert"	"ups"	"2"	"PowerSure PSA"	"USB"	"usbhid-ups"
"Liebert"	"ups"	"2"	"PowerSure PSI 1440"	"USB"	"usbhid-ups"	# http://www.emersonnetworkpower.com/en-US/Products/ACPower/Pages/LiebertPowerSurePSILineInteractiveUPS10003000VA.aspx

"LNXI"	"pdu"	"1"	"Icebox"	"10 outlets"	"powerman-pdu (experimental)"

"Lyonn"	"ups"	"2"	"CTB-1200"	""	"blazer_usb"

"Masterguard"	"ups"	"1"	"(various)"	""	"masterguard"

"Maxxtro"	"ups"	"2"	"UPS 600 VA"	"serial port"	"blazer_ser"

"Mecer"	"ups"	"2"	"ME-2000"	""	"blazer_ser"

"Meta System"	"ups"	"1"	"HF Line"	"1..4 boards"	"metasys"
"Meta System"	"ups"	"1"	"HF Line \/2"	"5..8 boards"	"metasys"
"Meta System"	"ups"	"1"	"HF Millennium 810"	""	"metasys"
"Meta System"	"ups"	"1"	"HF Millennium 820"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 910"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 920"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 930"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 940"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 950"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 960"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 970"	""	"metasys"
"Meta System"	"ups"	"1"	"HF TOP Line 980"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 750"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 1000"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 1050"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 1500"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 1800"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 2000"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 2100"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 2500"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO Network 3000"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 305"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 308"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 311"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 511"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 516"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 519"	""	"metasys"
"Meta System"	"ups"	"1"	"ECO 522"	""	"metasys"
"Meta System"	"ups"	"1"	"ally HF 800"	""	"metasys"
"Meta System"	"ups"	"1"	"ally HF 1000"	""	"metasys"
"Meta System"	"ups"	"1"	"ally HF 1250"	""	"metasys"
"Meta System"	"ups"	"1"	"ally HF 1600"	""	"metasys"
"Meta System"	"ups"	"1"	"ally HF 2000"	""	"metasys"
"Meta System"	"ups"	"1"	"ally HF 2500"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 1250"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 2500"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 3750"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 5000"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 6250"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 7500"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 8750"	""	"metasys"
"Meta System"	"ups"	"1"	"Megaline 10000"	""	"metasys"

"MGE Office Protection Systems"	"ups"	"5"	"Protection Center 500/675 VA"	"USB"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Protection Station 500/650/800 VA"	"USB"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Ellipse ASR USBS 600/750/1000/1500 VA"	"USB cable"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Ellipse MAX USBS 600/850/1100/1500 VA"	"USB cable"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Evolution 650/850/1150/1550/2000 VA"	"USB port"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Evolution S 1250/1750/2500/3000 VA"	"USB port"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Pulsar 700/1000/1500 VA"	"USB port"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Pulsar M 2200/3000 VA"	"USB port"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Pulsar MX 5/8/10/15/20 kVA"	"USB port"	"usbhid-ups"
"MGE Office Protection Systems"	"ups"	"5"	"Ellipse ASR USBS 600/750/1000/1500 VA"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Ellipse MAX USBS 600/850/1100/1500 VA"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Evolution 650/850/1150/1550/2000 VA"	"Serial port"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Evolution S 1250/1750/2500/3000 VA"	"Serial port"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Pulsar 700/1000/1500 VA"	"Serial port"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Pulsar M 2200/3000 VA"	"Serial port"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Pulsar MX 5/8/10/15/20 kVA"	"Serial port"	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Comet EX RT 1:1 7/11 kVA"	""	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Comet EX RT 3:1 5/7/11 kVA"	""	"mge-shut or oldmge-shut"
"MGE Office Protection Systems"	"ups"	"5"	"Comet EX RT (XML/HTTP)"	"NMC Transverse card (ref 66074)"	"netxml-ups (experimental)"
"MGE Office Protection Systems"	"ups"	"5"	"Comet EX RT (SNMP)"	"NMC Transverse card (ref 66074)"	"snmp-ups (experimental)"
"MGE Office Protection Systems"	"ups"	"5"	"various models (XML/HTTP mode)"	"NMC Minislot (Ref 66102)"	"netxml-ups (experimental)"
"MGE Office Protection Systems"	"ups"	"5"	"various models (SNMP mode)"	"NMC Minislot (Ref 66102)"	"snmp-ups (experimental)"
"MGE Office Protection Systems"	"ups"	"5"	"various models (XML/HTTP mode)"	"SNMP/Web Minislot card (ref 66244)"	"netxml-ups (experimental)"
"MGE Office Protection Systems"	"ups"	"5"	"various models (SNMP mode)"	"SNMP/Web Minislot card (ref 66244)"	"snmp-ups (experimental)"

"MGE UPS SYSTEMS"	"ups"	"5"	"Comet EX RT"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet EX RT 3:1"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Protection Center 420"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Protection Center 500"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Protection Center 675"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"NOVA AVR 600 USB"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"NOVA AVR 1100 USB"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse USBS"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse USB"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse Premium USBS"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse Premium USB"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 600"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 750"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 1000"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 1500"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 600"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 850"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 1100"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 1500"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Evolution"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 650"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 850"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 1150"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 1250"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 1550"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 1750"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 2000"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 2500"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 3000"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar M 2200"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar M 3000"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar M 3000 XL"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 700"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1000"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1500"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1000 RT2U"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1500 RT2U"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar MX 4000 RT"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar MX 5000 RT"	"USB"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet / Galaxy (USB)"	"USB Card (ref 66067)"	"usbhid-ups"
"MGE UPS SYSTEMS"	"ups"	"5"	"NOVA AVR 600 Serial"	""	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"NOVA AVR 1100 Serial"	""	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse USBS"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse S"	""	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse Premium USBS"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Ellipse Premium S"	""	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 600"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 750"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 1000"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse Office 1500"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 600"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 850"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 1100"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Ellipse MAX 1500"	"Serial cable"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar EXtreme C / EX RT"	""	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet EX RT"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet EX RT 3:1"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Esprit"	""	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 650"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 850"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 1150"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 1250"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 1550"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 1750"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution 2000"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 2500"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Evolution S 3000"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar M 2200"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar M 3000"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar M 3000 XL"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 700"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1000"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1500"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1000 RT2U"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar 1500 RT2U"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar MX 4000 RT"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar MX 5000 RT"	"Serial port"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar Evolution"	"Serial port"	"mge-shut or oldmge-shut or mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar EXtreme C"	""	"mge-shut or oldmge-shut or mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar ES+"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar ESV+"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar SV"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar ESV"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar EX"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar EXL"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar PSX"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar SX"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar EXtreme"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet EXtreme"	""	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet / Galaxy (Serial)"	"Utalk Serial Card (ref 66060)"	"mge-utalk"
"MGE UPS SYSTEMS"	"ups"	"5"	"Comet / Galaxy (Serial)"	"HID COM Serial Card (ref 66066)"	"mge-shut or oldmge-shut"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar / Comet / Galaxy (SNMP)"	"SNMP/Web Transverse card (ref 66074)"	"snmp-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"various models (XML/HTTP mode)"	"NMC Minislot (Ref 66102)"	"netxml-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"various models (SNMP mode)"	"NMC Minislot (Ref 66102)"	"snmp-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar (XML/HTTP mode)"	"SNMP/Web Minislot card (ref 66244)"	"netxml-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar (SNMP mode)"	"SNMP/Web Minislot card (ref 66244)"	"snmp-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar / Comet / Galaxy (SNMP)"	"SNMP card (ref 66062)"	"snmp-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"Pulsar (SNMP)"	"SNMP card (ref 66045)"	"snmp-ups (experimental)"
"MGE UPS SYSTEMS"	"ups"	"5"	"UM-Link (SNMP)"	"Not a UPS (ref 66850)"	"snmp-ups (experimental)"

"MicroDowell"	"ups"	"1"	"B.Box BP  500"	""	"powerpanel"
"MicroDowell"	"ups"	"1"	"B.Box BP  750"	""	"powerpanel"
"MicroDowell"	"ups"	"1"	"B.Box BP 1000"	""	"powerpanel"
"MicroDowell"	"ups"	"1"	"B.Box BP 1500"	""	"powerpanel"
"MicroDowell"	"ups"	"1"	"B.Box LP  500"	""	"genericups upstype=7"
"MicroDowell"	"ups"	"5"	"Enterprise B8"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise B10"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N8"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N11"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N15"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N20"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N22"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N30"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N40"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N50"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise N60"	""	"microdowell"
"MicroDowell"	"ups"	"5"	"Enterprise HiBox ST"	""	"microdowell"

"Microline"	"ups"	"2"	"C-Lion Innova RT 2K/3K"	""	"blazer_usb"
"Microline"	"ups"	"2"	"C-Lion Innova RT 6K/10K (Parallel)"	""	"blazer_usb"
"Microline"	"ups"	"2"	"C-Lion Innova Tower 6K/10K"	""	"blazer_usb"
"Microline"	"ups"	"2"	"C-Lion Innova Combo 10K/20K (3/1)"	""	"blazer_usb"

"Microsol"	"ups"	"4"	"Solis 1.0"	"1000VA"	"solis"
"Microsol"	"ups"	"4"	"Solis 1.5"	"1500VA"	"solis"
"Microsol"	"ups"	"4"	"Solis 2.0"	"2000VA"	"solis"
"Microsol"	"ups"	"4"	"Solis 3.0"	"3000VA"	"solis"
"Microsol"	"ups"	"5"	"Rhino 6.0"	"6000VA"	"rhino"
"Microsol"	"ups"	"5"	"Rhino 7.5"	"7500VA"	"rhino"
"Microsol"	"ups"	"5"	"Rhino 10.0"	"10000VA"	"rhino"
"Microsol"	"ups"	"5"	"Rhino 20.0"	"20000VA"	"rhino"

"Minibox"	"ups"	"5"	"openUPS Intelligent UPS"	"USB port"	"usbhid-ups"

"Mustek"	"ups"	"2"	"Powermust"	"400VA Plus"	"blazer_ser"
"Mustek"	"ups"	"2"	"Powermust"	"600VA Plus"	"blazer_ser"
"Mustek"	"ups"	"2"	"Powermust"	"800VA Pro"	"blazer_ser"
"Mustek"	"ups"	"2"	"Powermust"	"1000VA Plus"	"blazer_ser"
"Mustek"	"ups"	"2"	"Powermust"	"1000VA USB"	"blazer_usb"
"Mustek"	"ups"	"2"	"Powermust"	"1400VA Plus"	"blazer_ser"
"Mustek"	"ups"	"2"	"Powermust"	"2000VA USB"	"blazer_ser"
"Mustek"	"ups"	"2"	"Powermust Office 650"	"USB"	"blazer_usb"
"Mustek"	"ups"	"2"	"PowerMust 424 / 636 / 848"	"USB"	"blazer_usb"
"Mustek"	"ups"	"2"	"Yukai PowerMust" "1000 USB (PID: 5161)"	"blazer_usb"
"Mustek"	"ups"	"2"	"Various"	""	"blazer_ser"

"Neus"	"ups"	"2"	"400va / 600va"	""	"blazer_ser"

"Nitram"	"ups"	"1"	"Elite 500"	""	"genericups upstype=8"
"Nitram"	"ups"	"1"	"Elite 2002"	""	"genericups upstype=16"
"Nitram"	"ups"	"1"	"Elite 2005"	""	"powerpanel"

"Novex"	"ups"	"1"	"NUPS-650"	"USB"	"blazer_usb protocol=megatec"	# http://komp.1k.by/periphery-ups/novex/Novex_NUPS_650-130052.html

"Numeric"	"ups"	"2"	"3000 SW"	""	"blazer_ser"
"Numeric"	"ups"	"2"	"Digital 800 plus"	"USB"	"blazer_usb"

"Oneac"	"ups"	"1"	"ON400"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON600"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON900"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1300"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"EG Series"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON700"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON700XAU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON700XIU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1000"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1000XAU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1000XIU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1500"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1500XAU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON1500XIU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON2000"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON2000XAU"	"advanced interface"	"oneac"
"Oneac"	"ups"	"1"	"ON2000XIU"	"advanced interface"	"oneac"

"Online"	"ups"	"1"	"P-Series"	""	"genericups upstype=14"
"Online"	"ups"	"2"	"Zinto A"	""	"blazer_usb"
"Online"	"ups"	"1"	"Zinto D"	""	"optiups"
"Online"	"ups"	"2"	"Yunto YQ450"	""	"blazer_usb"

"OnLite"	"ups"	"2"	"AQUA"	"50"	"blazer_ser"

"Opti-UPS"	"ups"	"1"	"PowerES"	"420E"	"optiups"
"Opti-UPS"	"ups"	"1"	"VS 575C"	"type=OPTI"	"powercom"

"Orvaldi Power Protection"	"ups"	"2"	"various"	"not 400 or 600"	"blazer_ser"
"Orvaldi Power Protection"	"ups"	"2"	"750 / 900SP"	""	"blazer_usb"

"Phasak"	"ups"	"2"	"400VA / 600VA"	""	"blazer_ser"

"Plexus"	"ups"	"2"	"500VA"	"USB"	"blazer_usb"
"Plexus"	"ups"	"2"	"1000VA Pro"	"USB"	"blazer_usb"
"Plexus"	"ups"	"1"	"800 VA"	"USB"	"nutdrv_atcl_usb"

"Powercom"	"ups"	"4"	"SMK"	""	"blazer_ser"
"Powercom"	"ups"	"4"	"SXL"	""	"blazer_ser"
"Powercom"	"ups"	"4"	"ULT"	""	"blazer_ser"
"Powercom"	"ups"	"4"	"Trust 425/625"	""	"powercom"
"Powercom"	"ups"	"4"	"Advice Partner/King Pr750"	""	"powercom"
"Powercom"	"ups"	"4"	"Black Knight PRO"	""	"powercom"
"Powercom"	"ups"	"5"	"Black Knight PRO"	"USB (2009 models, product id: 00a6)"	"usbhid-ups (experimental)"
"Powercom"	"ups"	"4"	"Smart KING Pro (all Smart series)"	""	"powercom"
"Powercom"	"ups"	"5"	"Smart KING Pro (all Smart series)"	"USB (2009 models, product id: 00a3)"	"usbhid-ups (experimental)"
"Powercom"	"ups"	"4"	"Imperial"	""	"powercom"
"Powercom"	"ups"	"5"	"Imperial"	"USB (2009 models, product id: 00a2)"	"usbhid-ups (experimental)"
"Powercom"	"ups"	"4"	"Vanguard"	""	"blazer_ser"
"Powercom"	"ups"	"5"	"Vanguard"	"USB (2009 models, product id: 0004 or 00a5)"	"usbhid-ups (experimental)"
"Powercom"	"ups"	"4"	"WOW"	"USB (<= 2009 models, product id: 0002)"	"powercom (requires 'usbserial' kernel module)"
"Powercom"	"ups"	"5"	"WOW"	"USB (2009 models, product id: 00a4)"	"usbhid-ups (experimental)"
"Powercom"	"ups"	"4"	"(various)"	"USB (<= 2009 models, product id: 0002)"	"powercom (requires 'usbserial' kernel module)"
"Powercom"	"ups"	"5"	"(various)"	"USB (2009 models, product id: 00a?)"	"usbhid-ups (experimental)"
"Powercom"	"ups"	"5"	"BNT-xxxAP"	"USB (product id: 0004)"	"usbhid-ups (experimental)"

"POWEREX"	"ups"	"2"	"VI 1000 LED"	""	"blazer_usb"

"PowerGuard"	"ups"	"2"	"PG-600"	""	"blazer_ser"

"PowerKinetics"	"ups"	"1"	"9001"	""	"genericups upstype=17"
"PowerKinetics"	"ups"	"2"	"BlackOut Buster"	""	"blazer_ser"

"PowerMan"	"ups"	"2"	"RealSmart 800"	""	"blazer_ser"
"PowerMan"	"ups"	"2"	"RealSmart 1000"	""	"blazer_ser"
"PowerMan"	"ups"	"1"	"BackPro"	""	"genericups upstype=4"

"PowerShield"	"ups"	"2"	"Defender 1200VA"	""	"blazer_usb"

"PowerTech"	"ups"	"1"	"Comp1000"	"DTR cable power"	"genericups upstype=3"
"PowerTech"	"ups"	"2"	"SMK-800"	""	"blazer_ser"

"PowerWalker"	"ups"	"2"	"Line-Interactive VI 1000"	""	"blazer_ser"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 400/800"	""	"blazer_ser"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 600"	""	"blazer_ser"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 600 SE"	""	"blazer_usb"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 800 SE"	""	"blazer_usb"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 1400"	""	"blazer_usb"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 2000"	""	"blazer_usb"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 850 LCD"	""	"blazer_usb"
"PowerWalker"	"ups"	"2"	"Online VFI 1000RT/1500RT/2000RT/3000RT/6000RT/10000RT LCD"	""	"blazer_usb"
"PowerWalker"	"ups"	"2"	"Line-Interactive VI 1000RT/1500RT/2000RT/3000RT LCD"	""	"blazer_usb"

"Powerware"	"ups"	"4"	"3110"	""	"genericups upstype=7"
"Powerware"	"ups"	"4"	"3115"	""	"genericups upstype=11"
"Powerware"	"ups"	"4"	"5119, 5125"	""	"genericups upstype=15"
"Powerware"	"ups"	"4"	"5119 RM"	""	"genericups upstype=20"
"Powerware"	"ups"	"5"	"5119 RM"	""	"upscode2"
"Powerware"	"ups"	"5"	"PW3105"	""	"bcmxcp_usb"
"Powerware"	"ups"	"5"	"PW5110"	""	"bcmxcp_usb"
"Powerware"	"ups"	"5"	"PW5115"	"Serial port"	"bcmxcp"
"Powerware"	"ups"	"5"	"PW5115"	"USB port"	"bcmxcp_usb"
"Powerware"	"ups"	"5"	"PW5125"	""	"bcmxcp"
"Powerware"	"ups"	"5"	"PW9120"	"Serial port"	"bcmxcp"
"Powerware"	"ups"	"5"	"PW9120"	"USB port"	"bcmxcp_usb"
"Powerware"	"ups"	"5"	"PW9125"	""	"bcmxcp"
"Powerware"	"ups"	"5"	"PW9315"	"3-phase"	"bcmxcp"
"Powerware"	"ups"	"5"	"9110"	""	"upscode2"
"Powerware"	"ups"	"5"	"9120"	""	"upscode2"
"Powerware"	"ups"	"5"	"9150"	""	"upscode2"
"Powerware"	"ups"	"5"	"9305"	""	"upscode2"
"Powerware"	"ups"	"5"	"BladeUPS (SNMP)"	"ConnectUPS Web/SNMP Card"	"snmp-ups (experimental)"
"Powerware"	"ups"	"5"	"(various)"	"ConnectUPS Web/SNMP card"	"snmp-ups (experimental)"

"Powerwell"	"ups"	"1"	"PM525A/-625A/-800A/-1000A/-1250A"	""	"safenet"

"Phantom"	"pdu"	"1"	"Rackable Systems"	"1 outlets"	"powerman-pdu (experimental)"

"Raritan"	"pdu"	"3"	"Intelligent PDU - Dominion PX"	"no report, but should be supported"	"snmp-ups (experimental)"
"Raritan"	"pdu"	"3"	"Metered PDU - Raritan PM"	"no report, but should be supported"	"snmp-ups (experimental)"
"Raritan"	"pdu"	"3"	"Switched PDU - Raritan RPC"	"no report, but should be supported"	"snmp-ups (experimental)"

"REDi"	"ups"	"2"	"Blazer 400VA / 600VA / 800VA"	""	"blazer_ser"

"Repotec"	"ups"	"1"	"RPF525/625/800/1000"	""	"safenet"
"Repotec"	"ups"	"1"	"RPT-800A"	""	"genericups upstype=13"
"Repotec"	"ups"	"1"	"RPT-162A"	""	"genericups upstype=13"

"Riello"	"ups"	"3"	"Riello Sentinel SDL 6000-7"	"Netman Plus 102 SNMP Card"	"snmp-ups"
"Riello"	"ups"	"3"	"Riello Sentinel Dual SDH 1000-7"	"Netman Plus 102 SNMP Card"	"snmp-ups"
"Riello"	"ups"	"5"	"IDG 400/600/800/1200/1600"	""	"riello_usb"
"Riello"	"ups"	"5"	"IPG 600/800"	""	"riello_usb"
"Riello"	"ups"	"5"	"WPG 400/600/800"	""	"riello_usb"
"Riello"	"ups"	"5"	"NPW 600/800/1000/1500/2000"	""	"riello_usb"
"Riello"	"ups"	"5"	"NDG 800/1000/1500/2000"	""	"riello_usb"
"Riello"	"ups"	"5"	"DVT 500/800/1100/1500/2000"	""	"riello_usb"
"Riello"	"ups"	"5"	"DVR 500/800/1100"	""	"riello_usb"
"Riello"	"ups"	"5"	"DVD 1500/2200/3000"	""	"riello_usb"
"Riello"	"ups"	"5"	"VST 800/1100/1500/2000"	""	"riello_usb"
"Riello"	"ups"	"5"	"VSD 1100/1500/2200/3000"	""	"riello_usb"
"Riello"	"ups"	"5"	"SEP 700/1000/1500/2200/3000"	""	"riello_usb"
"Riello"	"ups"	"5"	"SDH 1000/1500/2200/3000"	""	"riello_usb"
"Riello"	"ups"	"5"	"SDL 3300/4000/5000/6000/6500/8000/10000"	""	"riello_usb"
"Riello"	"ups"	"5"	"SPW"	""	"riello_usb"
"Riello"	"ups"	"5"	"SPT"	""	"riello_usb"
"Riello"	"ups"	"5"	"NDG 800/1000/1500/2000"	""	"riello_ser"
"Riello"	"ups"	"5"	"DVT 500/800/1100/1500/2000"	""	"riello_ser"
"Riello"	"ups"	"5"	"DVR 500/800/1100"	""	"riello_ser"
"Riello"	"ups"	"5"	"DVD 1500/2200/3000"	""	"riello_ser"
"Riello"	"ups"	"5"	"VST 800/1100/1500/2000"	""	"riello_ser"
"Riello"	"ups"	"5"	"VSD 1100/1500/2200/3000"	""	"riello_ser"
"Riello"	"ups"	"5"	"SEP 700/1000/1500/2200/3000"	""	"riello_ser"
"Riello"	"ups"	"5"	"SDH 1000/1500/2200/3000"	""	"riello_ser"
"Riello"	"ups"	"5"	"SDL 3300/4000/5000/6000/6500/8000/10000"	""	"riello_ser"
"Riello"	"ups"	"5"	"SPW"	""	"riello_ser"
"Riello"	"ups"	"5"	"SPT"	""	"riello_ser"
"Riello"	"ups"	"5"	"MCT"	""	"riello_ser"
"Riello"	"ups"	"5"	"MST"	""	"riello_ser"
"Riello"	"ups"	"5"	"MCM"	""	"riello_ser"
"Riello"	"ups"	"5"	"MCT"	""	"riello_ser"
"Riello"	"ups"	"5"	"MHT"	""	"riello_ser"
"Riello"	"ups"	"5"	"MPT"	""	"riello_ser"
"Riello"	"ups"	"5"	"MPM"	""	"riello_ser"
"Riello"	"ups"	"3"	"(various)"	"Netman Plus 101 SNMP Box"	"snmp-ups"
"Riello"	"ups"	"3"	"(various)"	"Netman Plus 102 SNMP Card"	"snmp-ups"
"Riello"	"ups"	"3"	"(various)"	"Netman Plus 202 SNMP Card"	"snmp-ups"

"Rocketfish"	"ups"	"2"	"RF-1000VA / RF-1025VA"	""	"usbhid-ups"

"SmartLabs"	"pdu"	"1"	"2412S Power Line Modem"	"for X10/Insteon"	"powerman-pdu (experimental)"

"SMS (Brazil)"	"ups"	"2"	"Manager III"	""	"blazer_ser"

"SOLA"	"ups"	"1"	"305"	"cable INT-0025C"	"genericups upstype=7"
"SOLA"	"ups"	"1"	"325"	""	"blazer_ser or bestups"
"SOLA"	"ups"	"1"	"520"	""	"blazer_ser or bestups"
"SOLA"	"ups"	"1"	"610"	"use ID= in ups.conf"	"blazer_ser or bestups"
"SOLA"	"ups"	"1"	"620"	""	"blazer_ser or bestups"
"SOLA"	"ups"	"4"	"330"	""	"blazer_ser"

"SOLA/BASIC Mexico"	"ups"	"1"	"various"	"ISBMEX protocol"	"isbmex"

"Socomec Sicon"	"ups"	"2"	"NeTYS-PE 600VA"	""	"blazer_ser"
"Socomec Sicon"	"ups"	"1"	"Egys"	"420 VA"	"powercom"
"Socomec Sicon"	"ups"	"3"	"MASTERYS 3/3 SYSTEM 60 kVA"	"Net Vision v5.05 SNMP card"	"snmp-ups (experimental)"
"Socomec Sicon"	"ups"	"3"	"NETYS RT 1/1"	"Net Vision SNMP card"	"snmp-ups (experimental)"
"Socomec Sicon"	"ups"	"3"	"Netvision"	"UPS equipped with Netvision WEB/SNMP card/external box"	"snmp-ups (experimental)"

"Soltec"	"ups"	"1"	"Winmate 525/625/800/1000"	""	"safenet"

"Soyntec"	"ups"	"2"	"Sekury C 500"	""	"blazer_ser"
"Soyntec"	"ups"	"2"	"Sekury C 800"	""	"blazer_ser"

"SquareOne Power"	"ups"	"2"	"QP1000"	""	"blazer_ser"

"StarPower"	"ups"	"1"	"PCF-800VA"	"USB"	"richcomm_usb"	# http://www.sako.com.cn/products01.asp?Id=29&proid=53

"Sun"	"pdu"	"1"	"ILOM Management Module"	"1 outlet"	"powerman-pdu (experimental)"

"SuperPower"	"ups"	"2"	"HP360, Hope-550"	""	"blazer_ser"

"SVEN"	"ups"	"2"	"Power Pro+ series"	"USB"	"blazer_usb (USB ID ffff:0000)"
"SVEN"	"ups"	"2"	"Power Pro+ series"	"USB"	"blazer_usb (USB ID 05b8:0000)"
"SVEN"	"ups"	"1"	"Power Pro+ series"	"USB"	"richcomm_usb (USB ID 0925:1234)"
"SVEN"	"ups"	"2"	"Power Smart RM 2000"	"USB"	"blazer_usb (USB ID 05b8:0000)"

"Sweex"	"ups"	"1"	"500/1000"	"smart - shipped with SafeNet"	"safenet"
"Sweex"	"ups"	"1"	"500/1000"	""	"genericups upstype=7"
"Sweex"	"ups"	"1"	"1000"	"USB"	"richcomm_usb"
"Sweex"	"ups"	"2"	"(various)"	""	"blazer_ser"

"Syndome"	"ups"	"2"	"Era 500VA"	"USB"	"blazer_usb"

"Sysgration"	"ups"	"2"	"UPGUARDS Pro650"	""	"blazer_ser"

"Tecnoware"	"ups"	"2"	"Easy Power 1200"	""	"blazer_ser"
"Tecnoware"	"ups"	"2"	"UPS ERA LCD 0.65"	""	"blazer_usb langid_fix=0x409"

"Tripp Lite"	"ups"	"1"	"INTERNETOFFICE700"	"USB (older; product ID: 0001)"	"tripplite_usb"
"Tripp Lite"	"ups"	"2"	"OMNIVS1000"	"USB (older; product ID: 0001)"	"tripplite_usb"
"Tripp Lite"	"ups"	"1"	"OMNIVS1500XL"	"USB"	"tripplite_usb"
"Tripp Lite"	"ups"	"1"	"SMART700USB"	"USB"	"tripplite_usb"
"Tripp Lite"	"ups"	"1"	"SMART1500RM2U"	"USB (older; product ID: 0001)"	"tripplite_usb"
"Tripp Lite"	"ups"	"1"	"SMART550USB"	"USB (older; product ID: 0001)"	"tripplite_usb"
"Tripp Lite"	"ups"	"1"	"OMNISMART500"	"USB (older; product ID: 0001)"	"tripplite_usb"
"Tripp Lite"	"ups"	"1"	"SMART2200RMXL2U"	"USB (older; product ID: 0001)"	"tripplite_usb (experimental)"
"Tripp Lite"	"ups"	"1"	"SmartUPS"	""	"tripplite"
"Tripp Lite"	"ups"	"1"	"SmartOnline"	""	"tripplitesu"
"Tripp Lite"	"ups"	"1"	"(various)"	"Lan 2.2 interface - black 73-0844 cable"	"genericups upstype=5"
"Tripp Lite"	"ups"	"2"	"1500 LCD"	"USB"	"usbhid-ups"
"Tripp Lite"	"ups"	"3"	"AVR550U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3090
"Tripp Lite"	"ups"	"3"	"AVR700U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=4785
"Tripp Lite"	"ups"	"3"	"AVR750U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3141
"Tripp Lite"	"ups"	"3"	"AVR900U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3649
"Tripp Lite"	"ups"	"3"	"AVR900UTAA"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4375
"Tripp Lite"	"ups"	"3"	"AVRX550U"	"USB (protocol 2009)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3079
"Tripp Lite"	"ups"	"3"	"AVRX550UD"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=4620
"Tripp Lite"	"ups"	"3"	"AVRX750U"	"USB (protocol 2009)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3190
"Tripp Lite"	"ups"	"3"	"AVRX750UD"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=4755
"Tripp Lite"	"ups"	"3"	"AVRX750UF"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=4756
"Tripp Lite"	"ups"	"3"	"BC600SINE"	"USB (protocol 2011)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4863
"Tripp Lite"	"ups"	"3"	"BCPERS450"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4
"Tripp Lite"	"ups"	"3"	"BCPRO600"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=931&txtModelID=5
"Tripp Lite"	"ups"	"3"	"ECO350UPS"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=743&txtModelID=4149
"Tripp Lite"	"ups"	"3"	"ECO550UPS"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=743&txtModelID=4148
"Tripp Lite"	"ups"	"3"	"ECO650LCD"	"USB (protocol 2011)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4861
"Tripp Lite"	"ups"	"3"	"ECO750UPS"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=743&txtModelID=4147
"Tripp Lite"	"ups"	"3"	"ECO850LCD"	"USB (protocol 2011)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=743&txtModelID=4862
"Tripp Lite"	"ups"	"3"	"HT850UPS"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3197
"Tripp Lite"	"ups"	"3"	"HTR05-1U"	"USB (protocol 3005)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3202
"Tripp Lite"	"ups"	"3"	"HTR10-2U"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3343
"Tripp Lite"	"ups"	"3"	"INTERNET350U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=2663
"Tripp Lite"	"ups"	"3"	"INTERNET550U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3063
"Tripp Lite"	"ups"	"3"	"INTERNET600U"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3033
"Tripp Lite"	"ups"	"3"	"INTERNET750U"	"USB (protocol 1007)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3142
"Tripp Lite"	"ups"	"3"	"INTERNET900U"	"USB (protocol 1007)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=3657
"Tripp Lite"	"ups"	"3"	"INTERNETOFFICE500"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=11
"Tripp Lite"	"ups"	"3"	"INTERNETOFFICE700"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=930&txtModelID=14
"Tripp Lite"	"ups"	"3"	"OMNI650LCD"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3195
"Tripp Lite"	"ups"	"3"	"OMNI900LCD"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=3082
"Tripp Lite"	"ups"	"2"	"OMNI1000LCD"	"USB"	"usbhid-ups"
"Tripp Lite"	"ups"	"3"	"OMNISMART300PNP"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=19
"Tripp Lite"	"ups"	"3"	"OMNISMART500"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=21
"Tripp Lite"	"ups"	"3"	"OMNISMART700"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=23
"Tripp Lite"	"ups"	"3"	"OMNIVS1000"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=2656
"Tripp Lite"	"ups"	"3"	"OMNIVS800"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=2729
"Tripp Lite"	"ups"	"3"	"POS500"	"USB (protocol 2007)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3742
"Tripp Lite"	"ups"	"3"	"SM2200RMDVTAA"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4648
"Tripp Lite"	"ups"	"3"	"SMART1000LCD"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=3071
"Tripp Lite"	"ups"	"3"	"SMART1000RM2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=2657
"Tripp Lite"	"ups"	"3"	"SMART1000RMXL2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5262
"Tripp Lite"	"ups"	"3"	"SMART1050SLT"	"USB (protocol 3012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3253
"Tripp Lite"	"ups"	"3"	"SMART1050SLTAA"	"USB (protocol 3012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4389
"Tripp Lite"	"ups"	"3"	"SMART1200LCD"	"USB (protocol 2009)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3193
"Tripp Lite"	"ups"	"3"	"SMART1500CRMXL"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3826
"Tripp Lite"	"ups"	"3"	"SMART1500LCD"	"USB (protocol 2009)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=3151
"Tripp Lite"	"ups"	"3"	"SMART1500LCDXL"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=4978
"Tripp Lite"	"ups"	"3"	"SMART1500RM2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=2658
"Tripp Lite"	"ups"	"3"	"SMART1500RM2UN"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5424
"Tripp Lite"	"ups"	"3"	"SMART1500RMXL2UA"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3982
"Tripp Lite"	"ups"	"3"	"SMART1500RMXLN"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5429
"Tripp Lite"	"ups"	"3"	"SMART1500SLT"	"USB (protocol 3012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3254
"Tripp Lite"	"ups"	"3"	"SMART2200CRMXL"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3825
"Tripp Lite"	"ups"	"3"	"SMART2200RM2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=4403
"Tripp Lite"	"ups"	"3"	"SMART2200RM2UN"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5428
"Tripp Lite"	"ups"	"3"	"SMART2200RMXL2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3264
"Tripp Lite"	"ups"	"3"	"SMART2200RMXL2UP"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=4672
"Tripp Lite"	"ups"	"3"	"SMART2200RMXLN"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5427
"Tripp Lite"	"ups"	"3"	"SMART2200SLT"	"USB (protocol 3013)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3489
"Tripp Lite"	"ups"	"3"	"SMART2200SLTAA"	"USB (protocol 3013)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4390
"Tripp Lite"	"ups"	"3"	"SMART2500XLHG"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=5440
"Tripp Lite"	"ups"	"3"	"SMART2600RM2U"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3024
"Tripp Lite"	"ups"	"3"	"SMART3000CRMXL"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3824
"Tripp Lite"	"ups"	"3"	"SMART3000RM2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3025
"Tripp Lite"	"ups"	"3"	"SMART3000RM2UN"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5426
"Tripp Lite"	"ups"	"3"	"SMART3000RMOD2U"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=4249
"Tripp Lite"	"ups"	"3"	"SMART3000RMXL2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=4418
"Tripp Lite"	"ups"	"3"	"SMART3000RMXLN"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=5425
"Tripp Lite"	"ups"	"3"	"SMART3000SLT"	"USB (protocol 3013)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3490
"Tripp Lite"	"ups"	"3"	"SMART500RT1U"	"USB (protocol 3005)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=2853
"Tripp Lite"	"ups"	"3"	"SMART550USB"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=2002
"Tripp Lite"	"ups"	"3"	"SMART550USBWD"	"USB (protocol 2010)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=2591
"Tripp Lite"	"ups"	"3"	"SMART750RMXL2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3020
"Tripp Lite"	"ups"	"3"	"SMART750SLT"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3007
"Tripp Lite"	"ups"	"3"	"SMART750USB"	"USB (protocol 2012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=2679
"Tripp Lite"	"ups"	"3"	"SMART750XLA"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=3820
"Tripp Lite"	"ups"	"3"	"SMX1000LCD"	"USB (protocol 2005)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3200
"Tripp Lite"	"ups"	"3"	"SMX1000RT2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=2798
"Tripp Lite"	"ups"	"3"	"SMX1050SLT"	"USB (protocol 3012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3249
"Tripp Lite"	"ups"	"3"	"SMX1500LCD"	"USB (protocol 2009)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=932&txtModelID=3303
"Tripp Lite"	"ups"	"3"	"SMX1500SLT"	"USB (protocol 3012)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3248
"Tripp Lite"	"ups"	"3"	"SMX1500XLRT2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=2687
"Tripp Lite"	"ups"	"3"	"SMX2200XLRT2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3251
"Tripp Lite"	"ups"	"3"	"SMX3000RT2UTAA"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4396
"Tripp Lite"	"ups"	"3"	"SMX3000XLRT2U"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=933&txtModelID=2694
"Tripp Lite"	"ups"	"3"	"SMX3000XLRT2UA"	"USB (protocol 3015)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=5658
"Tripp Lite"	"ups"	"3"	"SMX500RT1U"	"USB (protocol 3005)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=2691
"Tripp Lite"	"ups"	"3"	"SMX750SLT"	"USB (protocol 3014)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3021
"Tripp Lite"	"ups"	"3"	"SU1000RTXL2UA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=2948
"Tripp Lite"	"ups"	"3"	"SU1000RTXLCD2U"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=745&txtModelID=4980
"Tripp Lite"	"ups"	"3"	"SU1000XLA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3180
"Tripp Lite"	"ups"	"3"	"SU1000XLCD"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=5320
"Tripp Lite"	"ups"	"3"	"SU1500RTXL2UA (SmartOnline)"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=2949
"Tripp Lite"	"ups"	"3"	"SU1500RTXLCD2U"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=745&txtModelID=5037
"Tripp Lite"	"ups"	"3"	"SU1500XL"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3300
"Tripp Lite"	"ups"	"3"	"SU1500XLCD"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=744&txtModelID=5339
"Tripp Lite"	"ups"	"3"	"SU2200RTXL2UA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=2950
"Tripp Lite"	"ups"	"3"	"SU2200RTXLCD2U"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=745&txtModelID=5069
"Tripp Lite"	"ups"	"3"	"SU2200XLA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3594
"Tripp Lite"	"ups"	"3"	"SU2200XLCD"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=744&txtModelID=5340
"Tripp Lite"	"ups"	"3"	"SU3000RTXL2U"	"USB (protocol 4005)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4210
"Tripp Lite"	"ups"	"3"	"SU3000RTXL3U"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3023
"Tripp Lite"	"ups"	"3"	"SU3000RTXLCD3U"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=745&txtModelID=5071
"Tripp Lite"	"ups"	"3"	"SU3000RTXR3U"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3080
"Tripp Lite"	"ups"	"3"	"SU3000RTXR3UHW"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=4976
"Tripp Lite"	"ups"	"3"	"SU3000XL"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3601
"Tripp Lite"	"ups"	"3"	"SU3000XLCD"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=744&txtModelID=5342
"Tripp Lite"	"ups"	"3"	"SU750RTXL2U"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3194
"Tripp Lite"	"ups"	"3"	"SU750RTXLCD2U"	"USB (protocol 4004)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=5070
"Tripp Lite"	"ups"	"3"	"SU750XL"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3299
"Tripp Lite"	"ups"	"3"	"SUINT1000RTXL2UA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=3983
"Tripp Lite"	"ups"	"3"	"SUINT1500RTXL2UA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=2720
"Tripp Lite"	"ups"	"3"	"SUINT2200RTXL2UA"	"USB (protocol 4001)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtSeriesID=934&txtModelID=3970
"Tripp Lite"	"ups"	"3"	"SUINT3000RTXL2U"	"USB (protocol 4005)"	"usbhid-ups"	# http://www.tripplite.com/en/products/model.cfm?txtModelID=4523

"Trust"	"ups"	"2"	"UPS 1000 Management PW-4105"	""	"blazer_ser"
"Trust"	"ups"	"2"	"UPS 1200VA Management PW-4120M"	""	"blazer_ser"
"Trust"	"ups"	"2"	"UPS 1300VA Management PW-4130M"	""	"blazer_ser"

"UNITEK"	"ups"	"2"	"ALPHA 500 IC"	""	"blazer_ser"
"UNITEK"	"ups"	"2"	"Alpha 1000is"	""	"blazer_ser"
"UNITEK"	"ups"	"2"	"Alpha 500"	""	"blazer_ser"
"UNITEK"	"ups"	"2"	"Alpha 500 ipE"	""	"blazer_ser"
"UNITEK"	"ups"	"2"	"Alpha650ipF"	"USB"	"blazer_usb"
"UNITEK"	"ups"	"2"	"Alpha650ipE"	"USB"	"blazer_usb"
"UNITEK"	"ups"	"2"	"Alpha 2600"	""	"blazer_ser"
"UNITEK"	"ups"	"2"	"Alpha 1200Sx"	"USB"	"blazer_usb"
"UNITEK"	"ups"	"2"	"Alpha 1250xD"	"USB"	"blazer_usb"

"UPSonic"	"ups"	"2"	"CXR1000"	""	"blazer_ser"
"UPSonic"	"ups"	"1"	"LAN Saver 600"	""	"genericups upstype=0"
"UPSonic"	"ups"	"1"	"Power Guardian"	""	"genericups upstype=7"
"UPSonic"	"ups"	"2"	"PrOffice 650"	"USB"	"blazer_usb"
"UPSonic"	"ups"	"2"	"DS-800"	"USB"	"blazer_usb"

"Various"	"ups"	"4"	"(various)"	"SEC protocol"	"gamatronic"
"Various"	"ups"	"1"	"(various)"	"Generic RUPS model"	"genericups upstype=4"
"Various"	"ups"	"1"	"(various)"	"Generic RUPS 2000 (Megatec M2501 cable)"	"genericups upstype=21"
"Various"	"ups"	"2"	"(various serial)"	"Q1 / Megatec protocol"	"blazer_ser"
"Various"	"ups"	"2"	"(various USB)"	"Q1 / Megatec protocol"	"blazer_usb"
"Various"	"ups"	"2"	"(various)"	"PhoenixTec protocol"	"blazer_ser or bestups"
"Various"	"ups"	"3"	"(various)"	"SNMP - RFC 1628"	"snmp-ups (experimental)"
"Various"	"ups"	"1"	"(various)"	"Safenet software"	"safenet"
"Various"	"ups"	"2"	"(Various USB)"	"UPSilon 2000 software"	"blazer_usb langid_fix=0x409"
"Various"	"ups"	"2"	"(Various serial)"	"ViewPower software"	"nutdrv_qx"
"Various"	"ups"	"2"	"(Various USB)"	"ViewPower software"	"nutdrv_qx"
"Various"	"ups"	"2"	"(Various serial)"	"WinPower software"	"blazer_ser"
"Various"	"ups"	"2"	"(Various USB)"	"WinPower software"	"blazer_usb"
"Various"	"ups"	"2"	"Various Innova T"	"(USB ID 06da:0201)"	"blazer_ser or blazer_usb"
"Various"	"ups"	"2"	"Various Innova RT"	"(USB ID 06da:0005)"	"blazer_ser or blazer_usb"
"Various"	"ups"	"2"	"Various Innova 3/1 T"	"(USB ID 06da:0004)"	"blazer_ser or blazer_usb"

"Victron/IMV"	"ups"	"1"	"(various)"	""	"victronups"
"Victron/IMV"	"ups"	"1"	"Lite"	"crack cable"	"genericups upstype=10"

"Viewsonic"	"ups"	"1"	"PowerES"	"420E"	"optiups"

"Vivaldi"	"ups"	"1"	"EA200 LED"	"USB"	"richcomm_usb"

"Voltronic Power"	"ups"	"2"	"Frigate TX 1KVA"	"Serial"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"Frigate TX 1KVA"	"USB"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"Galleon 1KVA"	"Serial"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"Galleon 1KVA"	"USB"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"Prosine 800"	"Serial"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"Prosine 800"	"USB"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"Vesta LED 850VA"	"USB"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"(various)"	"Serial"	"nutdrv_qx"
"Voltronic Power"	"ups"	"2"	"(various)"	"USB"	"nutdrv_qx"

"WinPower"	"ups"	"2"	"CPM-800"	""	"blazer_ser"

"WTI"	"pdu"	"1"	"RPS-10"	"10 outlets"	"powerman-pdu (experimental)"
"WTI"	"pdu"	"1"	"NPS"	"8 outlets"	"powerman-pdu (experimental)"