Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread Arnaud Quette
2010/12/1 John Bayly freebsd.po...@tipstrade.net

 On 01/12/2010 14:17, Arjen de Korte wrote:

 Citeren Charles Lepple clep...@gmail.com:

  The get_belkin_reply() function looks fragile to me. Three seconds should
 be
 enough to fill the buffer, but if you put a few upsdebugx() calls around
 ser_get_buf_len(), it should be evident whether the read is timing out, or
 if there is a problem with the format of the response.


 Starting with

ser_flush_io(upsfd);

 Thanks for the suggestions, I've added the flush statement as well as some
 debugging information. As this is a intermittent issue I decided to try
 overloading the UPS by sending it repeated beeper commands while watching
 the debug output. What appears to happen is that the UPS returns an unknown
 ~00R000 response. This means get_belkin_reply() returns -1, causing a
 datastale state is set when called from do_status().


you should remove the datastale() call since upsd will automatically flag
the device as stalled if it has failed to update its data for 15 seconds
(default of MAXAGE).

cheers,
Arnaud
-- 
Linux / Unix Expert RD - Eaton - http://powerquality.eaton.com
Network UPS Tools (NUT) Project Leader - http://www.networkupstools.org/
Debian Developer - http://www.debian.org
Free Software Developer - http://arnaud.quette.free.fr/
___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser

Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread Arjen de Korte

Citeren Arnaud Quette aquette@gmail.com:


Thanks for the suggestions, I've added the flush statement as well as some
debugging information. As this is a intermittent issue I decided to try
overloading the UPS by sending it repeated beeper commands while watching
the debug output. What appears to happen is that the UPS returns an unknown
~00R000 response. This means get_belkin_reply() returns -1, causing a
datastale state is set when called from do_status().


you should remove the datastale() call since upsd will automatically flag
the device as stalled if it has failed to update its data for 15 seconds
(default of MAXAGE).


Not at all!

The upsd server will only declare the *driver* stale if it fails to  
respond within MAXAGE seconds. However, as long as it keeps answering  
the PING from the server, it will not be declared stale. This  
mechanism is something completely different from what happens if the  
driver calls dstate_datastale(). In that case the driver tells the  
upsd server that the *UPS* fails to respond. See the chapter on  
Staleness control in docs/new-drivers.txt.


What really needs to be done, is that the driver doesn't treat the  
~00R000 reply as an error condition. Apparently the UPS acknowledges  
the receipt of data, without further response (indicating that 0 bytes  
follow). The belkin driver doesn't accept this at the moment and  
requires that a reply follows. This is what needs to be changed.


Last but not least, in most drivers, we allow a couple of missed  
replies before we call dstate_datastale() so that glitches don't lead  
to automatic reconnects.


Best regards, Arjen
--
Please keep list traffic on the list (off-list replies will be rejected)


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread Arjen de Korte

Citeren John Bayly freebsd.po...@tipstrade.net:

Last but not least, in most drivers, we allow a couple of missed  
replies before we call dstate_datastale() so that glitches don't  
lead to automatic reconnects.

Can you suggest what driver would be a good template to use?


Take a look at the upsdrv_updateinfo() function in the 'blazer.c' driver core.

Best regards, Arjen
--
Please keep list traffic on the list (off-list replies will be rejected)


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread John Bayly

On 02/12/2010 10:54, Arjen de Korte wrote:

Citeren John Bayly freebsd.po...@tipstrade.net:

Last but not least, in most drivers, we allow a couple of missed 
replies before we call dstate_datastale() so that glitches don't 
lead to automatic reconnects.

Can you suggest what driver would be a good template to use?


Take a look at the upsdrv_updateinfo() function in the 'blazer.c' 
driver core.


Best regards, Arjen


So, I've made the following changes:

In get_belkin_reply(), allow responses with no trailing data
-if ((cnt  1) || (cnt  255))
+if (cnt == 0) {/* possible to have ~00R000, return empty 
response */

+buf[0] = 0;
+return 0;
+
+} else if ((cnt  1) || (cnt  255))
 return -1;

Added method to return UPS status, NULL is returned if no status is 
available

static char *get_status()
{
chartemp[SMALLBUF], st[SMALLBUF];
intres;
const char*status = NULL;

send_belkin_command(STATUS,STAT_STATUS,);
res = get_belkin_reply(temp);
if (res  1)
return NULL;

get_belkin_field(temp, st, sizeof(st), 6);
if (*st == '1') {
status = OFF;

} else if (*st == '0') {/* (OFF) and (OB | OL) are mutually 
exclusive */

get_belkin_field(temp, st, sizeof(st), 2);
if (*st == '1') {
status = OB;/* on battery */

send_belkin_command(STATUS,STAT_BATTERY,);
res = get_belkin_reply(temp);

if (res  1) {/* no battery info, so no reliable status */
status = NULL;

} else {
get_belkin_field(temp, st, sizeof(st), 10);
res = atoi(st);
get_belkin_field(temp, st, sizeof(st), 2);

if (*st == '1' || res  LOW_BAT)
status = LB;/* low battery */
}

} else if (*st == '0') {
status = OL;/* on line */

}
}

return status;
}

Modified do_status(), calls get_status() and allows for MAXTRIES (3)
static int do_status(void)
{
/* fetch the UPS status, or null if unavailable */
const char*status = get_status();

if (status) {
if (retry)/* previous attempt had failed */
upslogx(LOG_WARNING, Communications with UPS re-established);

status_init();
status_set(status);
status_commit();
dstate_dataok();
retry = 0;
return 1;

} else {
if (retry  MAXTRIES) {
upslogx(LOG_WARNING, Communications with UPS lost: status 
read failed!);

retry++;

} else {/* too many retries */
dstate_datastale();
}
return 0;
}
}

C isn't my native language so I'd appreciate any feedback either 
negative, but preferably positive :-)



___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread Gene Heskett
On Thursday, December 02, 2010 10:05:54 am Arjen de Korte did opine:

 Citeren Arnaud Quette aquette@gmail.com:
  Thanks for the suggestions, I've added the flush statement as well as
  some debugging information. As this is a intermittent issue I
  decided to try overloading the UPS by sending it repeated beeper
  commands while watching the debug output. What appears to happen is
  that the UPS returns an unknown ~00R000 response. This means
  get_belkin_reply() returns -1, causing a datastale state is set when
  called from do_status().
  
  you should remove the datastale() call since upsd will automatically
  flag the device as stalled if it has failed to update its data for 15
  seconds (default of MAXAGE).
 
 Not at all!
 
 The upsd server will only declare the *driver* stale if it fails to
 respond within MAXAGE seconds. However, as long as it keeps answering
 the PING from the server, it will not be declared stale. This
 mechanism is something completely different from what happens if the
 driver calls dstate_datastale(). In that case the driver tells the
 upsd server that the *UPS* fails to respond. See the chapter on
 Staleness control in docs/new-drivers.txt.
 
 What really needs to be done, is that the driver doesn't treat the
 ~00R000 reply as an error condition. Apparently the UPS acknowledges
 the receipt of data, without further response (indicating that 0 bytes
 follow). The belkin driver doesn't accept this at the moment and
 requires that a reply follows. This is what needs to be changed.
 
 Last but not least, in most drivers, we allow a couple of missed
 replies before we call dstate_datastale() so that glitches don't lead
 to automatic reconnects.
 
 Best regards, Arjen

I've been sitting here following this thread and wondering if the OP has 
told us everything?  He may indeed be using serial at the ups, but if he 
has a pl2303 ser-usb adapter in the signal path and is using a ttyUSB# 
connection, then there could be a possibility that the pl2303 adapter is 
eating his lunch, specifically the first byte of a packet at frequent 
intervals, and this will confuse virtually all upsd implementations 
regardless of whose upsd it is, including belkin's own, now Jurassic dated 
bulldog software.

Most of the more modern belkin UPS's do conform to the usb-hid specs, and I 
have had zero problems with loss of comm with mine over a pure usb circuit.

usb 2-9: new low speed USB device using ohci_hcd and address 5
usb 2-9: New USB device found, idVendor=050d, idProduct=0751
usb 2-9: New USB device strings: Mfr=4, Product=20, SerialNumber=0
usb 2-9: Product: Belkin UPS
usb 2-9: Manufacturer: Belkin

It is a 1500 WA rated device also.

I have another 1500WA rated Belkin, several years older and on its 4th set 
of batteries, that either isn't usb-hid con-formant, or when I last tried 
to run Nut against it, Nut's usb-hidraw wasn't up to speed.  It is now 
running my milling machines computer.  That computer is running 
Ubuntu-10.04, but emc is fussy about what you plug into a usb port, a usb 
key for instance is a guaranteed wrecked part because of the huge IRQ 
lockout times associated with the challenge/response time of the key as the 
I/O scheduler makes sure all the caches associated with have been flushed.

That is from lessons learned while talking to myself. ;-)

-- 
Cheers, Gene
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)
Intel CPUs are not defective, they just act that way.
-- Henry Spencer

___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


[Nut-upsuser] Powercom SXL-1000A-LCD

2010-12-02 Thread ahouse-support

Hi All!
I have a traoble whith my ups, - megatec driver can not calculating % of 
charging and voltage on battery:



# uname -a
FreeBSD backup.*.*.*   8.1-RELEASE FreeBSD 8.1-RELEASE #0: Wed Sep 22 
12:25:01 EEST 2010


ups.conf

[Powercom]
driver = megatec
port = /dev/cuau0
#battvolts=12:24
desc = powercom sxl-1000A


# ./nut start
Network UPS Tools - UPS driver controller 2.4.1
Network UPS Tools - Megatec protocol driver 1.6 (2.4.1)
Megatec protocol UPS detected.
Cannot calculate charge percentage for this UPS. 
 !!!

Starting nut.
Network UPS Tools upsd 2.4.1
listening on 172.16.0.220 port 3493
listening on 127.0.0.1 port 3493
Connected to UPS [Powercom]: megatec-Powercom


Broadcast Message from   **   (no tty) at 18:42 EET...

Communications with UPS power...@localhost established


# upsc power...@localhost
battery.voltage: 2.30 
 !!!

driver.name: megatec
driver.parameter.pollinterval: 2
driver.parameter.port: /dev/cuau0
driver.version: 2.4.1
driver.version.internal: 1.6
input.frequency: 50.0
input.voltage: 231.0
input.voltage.fault: 231.0
input.voltage.maximum: 231.0
input.voltage.minimum: 228.0
output.voltage: 231.0
ups.beeper.status: disabled
ups.delay.shutdown: 0
ups.delay.start: 2
ups.load: 74.0
ups.mfr: unknown
ups.model: unknown
ups.serial: unknown
ups.status: OL
ups.type: online

Plise help! Sorry 4 my english!
best regards! 



___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread John Bayly

On 02/12/2010 15:28, Gene Heskett wrote:

On Thursday, December 02, 2010 10:05:54 am Arjen de Korte did opine:


Citeren Arnaud Quetteaquette@gmail.com:

Thanks for the suggestions, I've added the flush statement as well as
some debugging information. As this is a intermittent issue I
decided to try overloading the UPS by sending it repeated beeper
commands while watching the debug output. What appears to happen is
that the UPS returns an unknown ~00R000 response. This means
get_belkin_reply() returns -1, causing a datastale state is set when
called from do_status().

you should remove the datastale() call since upsd will automatically
flag the device as stalled if it has failed to update its data for 15
seconds (default of MAXAGE).

Not at all!

The upsd server will only declare the *driver* stale if it fails to
respond within MAXAGE seconds. However, as long as it keeps answering
the PING from the server, it will not be declared stale. This
mechanism is something completely different from what happens if the
driver calls dstate_datastale(). In that case the driver tells the
upsd server that the *UPS* fails to respond. See the chapter on
Staleness control in docs/new-drivers.txt.

What really needs to be done, is that the driver doesn't treat the
~00R000 reply as an error condition. Apparently the UPS acknowledges
the receipt of data, without further response (indicating that 0 bytes
follow). The belkin driver doesn't accept this at the moment and
requires that a reply follows. This is what needs to be changed.

Last but not least, in most drivers, we allow a couple of missed
replies before we call dstate_datastale() so that glitches don't lead
to automatic reconnects.

Best regards, Arjen

I've been sitting here following this thread and wondering if the OP has
told us everything?  He may indeed be using serial at the ups, but if he
has a pl2303 ser-usb adapter in the signal path and is using a ttyUSB#
connection, then there could be a possibility that the pl2303 adapter is
eating his lunch, specifically the first byte of a packet at frequent
intervals, and this will confuse virtually all upsd implementations
regardless of whose upsd it is, including belkin's own, now Jurassic dated
bulldog software.

Most of the more modern belkin UPS's do conform to the usb-hid specs, and I
have had zero problems with loss of comm with mine over a pure usb circuit.

usb 2-9: new low speed USB device using ohci_hcd and address 5
usb 2-9: New USB device found, idVendor=050d, idProduct=0751
usb 2-9: New USB device strings: Mfr=4, Product=20, SerialNumber=0
usb 2-9: Product: Belkin UPS
usb 2-9: Manufacturer: Belkin

It is a 1500 WA rated device also.

I have another 1500WA rated Belkin, several years older and on its 4th set
of batteries, that either isn't usb-hid con-formant, or when I last tried
to run Nut against it, Nut's usb-hidraw wasn't up to speed.  It is now
running my milling machines computer.  That computer is running
Ubuntu-10.04, but emc is fussy about what you plug into a usb port, a usb
key for instance is a guaranteed wrecked part because of the huge IRQ
lockout times associated with the challenge/response time of the key as the
I/O scheduler makes sure all the caches associated with have been flushed.

That is from lessons learned while talking to myself. ;-)

Nope, it's definately serial, UPS is on the D9 port (/dev/cuad0). I'm 
using the belkin driver, not the belkinunv or usb-hid drivers. 
Unfortunately Belkin seem to have disavowed all knowledge of the device 
as it's nowhere to be found on their website. Best description of it on 
a reseller's site: 
http://uk.insight.com/p/497211/belkin-regulator-pro-network-ups-ups-1400-va.html


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] Powercom SXL-1000A-LCD

2010-12-02 Thread Arjen de Korte

Citeren ahouse-support supp...@ahouse.mine.nu:

I have a traoble whith my ups, - megatec driver can not calculating  
% of charging and voltage on battery:


You UPS doesn't report the battery charge, so that's not unusual. The  
megatec driver will guesstimate the battery charge based on the  
battery voltage, but this is very unreliable.


[...]


# ./nut start
Network UPS Tools - UPS driver controller 2.4.1
Network UPS Tools - Megatec protocol driver 1.6 (2.4.1)
Megatec protocol UPS detected.
Cannot calculate charge percentage for this UPS.  
 !!!


[...]


# upsc power...@localhost
battery.voltage: 2.30  !!!


See 'man 8 megatec' for answers how to fix the above two problems.

Better yet, change to the 'blazer_ser'  driver instead, which uses a  
better way to determine state of charge (based on a couple of  
parameters you need to provide). Make sure to read 'man 8 blazer'  
before returning here for help.


Best regards, Arjen
--
Please keep list traffic on the list (off-list replies will be rejected)


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


[Nut-upsuser] (no subject)

2010-12-02 Thread ahouse-support
There simply is no such functionality, or the driver can not read these 
values because of nesovmestimoti / oschibki? Maybe a fix? And whether 
further use of the NUT, so that my UPS shut off my server connected to it?


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] (no subject)

2010-12-02 Thread Arjen de Korte

Citeren ahouse-support supp...@ahouse.mine.nu:

There simply is no such functionality, or the driver can not read  
these values because of nesovmestimoti / oschibki? Maybe a fix?


Read my reply again. The *UPS* doesn't report battery charge, so the  
only thing NUT can do is guesstimate this based on other values it  
reports.


And whether further use of the NUT, so that my UPS shut off my  
server connected to it?


Read the documentation. Both the megatec and blazer_ser driver support this.

Best regards, Arjen
--
Please keep list traffic on the list (off-list replies will be rejected)


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


[Nut-upsuser] (no subject)

2010-12-02 Thread ahouse-support

I am have a nice result whith blazer_ser driver! respect!

# ./nut start
Network UPS Tools - UPS driver controller 2.4.1
Network UPS Tools - Megatec/Q1 protocol serial driver 1.51 (2.4.1)
Supported UPS detected with megatec protocol
Vendor information read in 1 tries
Battery runtime will not be calculated (runtimecal not set) 
= !!!

Starting nut.
Network UPS Tools upsd 2.4.1
listening on 172.16.0.220 port 3493
listening on 127.0.0.1 port 3493
Connected to UPS [Powercom]: blazer_ser-Powercom

backup# upsc power...@localhost
battery.voltage: 28.80 = !!! it is a normal? what u thing about 
this value??  iam have 4x7AH battery in Ups

battery.voltage.nominal: 24.0
beeper.status: disabled
driver.name: blazer_ser
driver.parameter.pollinterval: 2
driver.parameter.port: /dev/cuau0
driver.version: 2.4.1
driver.version.internal: 1.51
input.current.nominal: 5.0
input.frequency: 50.0
input.frequency.nominal: 50
input.voltage: 237.0
input.voltage.fault: 237.0
input.voltage.nominal: 220
output.voltage: 237.0
ups.delay.shutdown: 30
ups.delay.start: 180
ups.firmware: LCD  V2.1
ups.load: 74
ups.mfg: POWERCOM
ups.model: RXL-1000
ups.status: OL
ups.temperature: 0.0
ups.type: online

Broadcast Message from ***
   (no tty) at 22:42 EET...

Communications with UPS power...@localhost established

im come back after learning you Tools!! thx! 



___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] (no subject)

2010-12-02 Thread Arjen de Korte

Citeren ahouse-support supp...@ahouse.mine.nu:


# ./nut start
Network UPS Tools - UPS driver controller 2.4.1
Network UPS Tools - Megatec/Q1 protocol serial driver 1.51 (2.4.1)
Supported UPS detected with megatec protocol
Vendor information read in 1 tries
Battery runtime will not be calculated (runtimecal not set)  
= !!!


RTFM - 'man 8 blazer'.


backup# upsc power...@localhost
battery.voltage: 28.80 = !!! it is a normal? what u thing  
about this value??  iam have 4x7AH battery in Ups


This boils down to about 2.4 V / cell, which is fairly high for a PbAc  
battery. But please understand that a UPS is not a measuring  
instrument. More often than not, the reported resolution is much more  
than the accuracy of the measurement justifies. So unless your  
batteries wear out quickly, you can safely ignore this.


Best regards, Arjen
--
Please keep list traffic on the list (off-list replies will be rejected)


___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser


Re: [Nut-upsuser] Belkin Regulator Pro dropping connection and halting

2010-12-02 Thread Gene Heskett
On Thursday, December 02, 2010 04:36:43 pm John Bayly did opine:

 On 02/12/2010 15:28, Gene Heskett wrote:
  On Thursday, December 02, 2010 10:05:54 am Arjen de Korte did opine:
  Citeren Arnaud Quetteaquette@gmail.com:
  Thanks for the suggestions, I've added the flush statement as well
  as some debugging information. As this is a intermittent issue I
  decided to try overloading the UPS by sending it repeated beeper
  commands while watching the debug output. What appears to happen
  is that the UPS returns an unknown ~00R000 response. This means
  get_belkin_reply() returns -1, causing a datastale state is set
  when called from do_status().
  
  you should remove the datastale() call since upsd will automatically
  flag the device as stalled if it has failed to update its data for
  15 seconds (default of MAXAGE).
  
  Not at all!
  
  The upsd server will only declare the *driver* stale if it fails to
  respond within MAXAGE seconds. However, as long as it keeps answering
  the PING from the server, it will not be declared stale. This
  mechanism is something completely different from what happens if the
  driver calls dstate_datastale(). In that case the driver tells the
  upsd server that the *UPS* fails to respond. See the chapter on
  Staleness control in docs/new-drivers.txt.
  
  What really needs to be done, is that the driver doesn't treat the
  ~00R000 reply as an error condition. Apparently the UPS
  acknowledges the receipt of data, without further response
  (indicating that 0 bytes follow). The belkin driver doesn't accept
  this at the moment and requires that a reply follows. This is what
  needs to be changed.
  
  Last but not least, in most drivers, we allow a couple of missed
  replies before we call dstate_datastale() so that glitches don't lead
  to automatic reconnects.
  
  Best regards, Arjen
  
  I've been sitting here following this thread and wondering if the OP
  has told us everything?  He may indeed be using serial at the ups,
  but if he has a pl2303 ser-usb adapter in the signal path and is
  using a ttyUSB# connection, then there could be a possibility that
  the pl2303 adapter is eating his lunch, specifically the first byte
  of a packet at frequent intervals, and this will confuse virtually
  all upsd implementations regardless of whose upsd it is, including
  belkin's own, now Jurassic dated bulldog software.
  
  Most of the more modern belkin UPS's do conform to the usb-hid specs,
  and I have had zero problems with loss of comm with mine over a pure
  usb circuit.
  
  usb 2-9: new low speed USB device using ohci_hcd and address 5
  usb 2-9: New USB device found, idVendor=050d, idProduct=0751
  usb 2-9: New USB device strings: Mfr=4, Product=20, SerialNumber=0
  usb 2-9: Product: Belkin UPS
  usb 2-9: Manufacturer: Belkin
  
  It is a 1500 WA rated device also.
  
  I have another 1500WA rated Belkin, several years older and on its 4th
  set of batteries, that either isn't usb-hid con-formant, or when I
  last tried to run Nut against it, Nut's usb-hidraw wasn't up to
  speed.  It is now running my milling machines computer.  That
  computer is running Ubuntu-10.04, but emc is fussy about what you
  plug into a usb port, a usb key for instance is a guaranteed wrecked
  part because of the huge IRQ lockout times associated with the
  challenge/response time of the key as the I/O scheduler makes sure
  all the caches associated with have been flushed.
  
  That is from lessons learned while talking to myself. ;-)
 
 Nope, it's definately serial, UPS is on the D9 port (/dev/cuad0). I'm
 using the belkin driver, not the belkinunv or usb-hid drivers.
 Unfortunately Belkin seem to have disavowed all knowledge of the device
 as it's nowhere to be found on their website. Best description of it on
 a reseller's site:
 http://uk.insight.com/p/497211/belkin-regulator-pro-network-ups-ups-1400
 -va.html

That appears to be the Euro version of my older one, same box and front 
panel.  And my snmp slot was empty, so I did not re-install the card slot 
for it when I last had it apart last spring to replace the batteries.  I 
had to dismantle it quite far as the old ones had swelled and were bound in 
the frame.  This one does not have a usb port, although it looks as if 
there might be a 9 pin usb header on its controller board, a dual row of 5 
with one of the end pins missing.  In fact, I wonder if a std computer 
breakout, back panel to motherboard usb kit might actually work?  I have a 
spare of those, and the next time I haul it off the shelf (its 6+ feet up in 
the air, sitting on a brace across the rafters in my shop building, and 
pretty heavy for the old man to get it down  back up), so I might just see 
what I blow if I hook it up to a usb port.  I will probably be needing 
batteries again by then, and if I let the smoke out or break the mirror, I 
have had close to 10 years out of it anyway.

-- 
Cheers, Gene
There are four boxes to be used in defense of 

[Nut-upsuser] (no subject)

2010-12-02 Thread ahouse-support

Quote:

RTFM - 'man 8 blazer'.




Yes, yes!! im undestend and study the man!! snx!!

___
Nut-upsuser mailing list
Nut-upsuser@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/nut-upsuser