I've been thinking that it's a bit silly to have two separate hobby DECNETs, so I figured we should get connected to the Italian net as well.
Any ideas?
Sampsa
On Tue, 22 Nov 2011, Saku Set l wrote:
Do the 90 and 90A have same PSU?
Nope, they have different part numbers on the power supply and they do not fit (and are not interchangeable). Trust me, I tried. :)
Fred
I don't own a -90 so can't confirm that.
From: Saku Set l <setala at gmail.com>
Sender: owner-hecnet at Update.UU.SE
Date: Tue, 22 Nov 2011 13:11:48 +0200
To: <hecnet at update.uu.se>
ReplyTo: hecnet at Update.UU.SE
Subject: Re: [HECnet] VAXStation 4000/90A power supply fan
Do the 90 and 90A have same PSU?
On Sun, Nov 20, 2011 at 21:19, <hvlems at zonnet.nl> wrote:
No choice but to drill it out. Unless you'd rather buy another p/s.
Hans
-----Original Message-----
From: Fred <fcoffey at misernet.net>
Sender: owner-hecnet at Update.UU.SE
Date: Sun, 20 Nov 2011 14:08:23
To: <hecnet at Update.UU.SE>
Reply-To: hecnet at Update.UU.SESubject: Re: [HECnet] VAXStation 4000/90A power supply fan
> On 18/11/11 13:29, hvlems at zonnet.nl wrote:
>> You could try and apply e little graphite powder in the noisy fan bearing,
>> better yet use a molybdenium based lubricant: these do not conduct
>> electricity.
I tried some good old moly lubricant the guys use at the copier shop where
I work - it made a slight difference but not much. The bearing is
obviously shot. The fan is *riveted* into the power supply. What the
heck?
On Fri, 18 Nov 2011, Mark Wickens wrote:
> I'd caution against running it with one fan - I think the point of having two
> is in case one fails, and like hard drives it does occasionally happen.
For now, I am running it with one fan, and it being only 60-65F in the
house (and the computer office) the VAX is not running hot. I removed one
of the drives, since I really wasn't doing anything with it. (it was a
pull from a BA356 canister) Looked half-height to me, although I do have
some smaller in size drives that I may swap in.
At some point I'm going to source new fans and then try to pry the old
ones out. Other than that when I had the power supply apart, no domed
caps, everything is quite clean (and even cleaner when I gave it a date
with the shop air compressor).
I have two 90's (not 90A's) in the closet I could press into service but I
really do not want to trash this 90A for just missing one fan.
Thanks for the responses all.
Fred
----
Lets call it for what it is - "legacy" is a term that people use in a
polite but derogatory manner to imply that the future direction they
prefer is not that which they view as the current direction.
Do the 90 and 90A have same PSU?
On Sun, Nov 20, 2011 at 21:19, <hvlems at zonnet.nl> wrote:
No choice but to drill it out. Unless you'd rather buy another p/s.
Hans
-----Original Message-----
From: Fred <fcoffey at misernet.net>
Sender: owner-hecnet at Update.UU.SE
Date: Sun, 20 Nov 2011 14:08:23
To: <hecnet at Update.UU.SE>
Reply-To: hecnet at Update.UU.SESubject: Re: [HECnet] VAXStation 4000/90A power supply fan
> On 18/11/11 13:29, hvlems at zonnet.nl wrote:
>> You could try and apply e little graphite powder in the noisy fan bearing,
>> better yet use a molybdenium based lubricant: these do not conduct
>> electricity.
I tried some good old moly lubricant the guys use at the copier shop where
I work - it made a slight difference but not much. The bearing is
obviously shot. The fan is *riveted* into the power supply. What the
heck?
On Fri, 18 Nov 2011, Mark Wickens wrote:
> I'd caution against running it with one fan - I think the point of having two
> is in case one fails, and like hard drives it does occasionally happen.
For now, I am running it with one fan, and it being only 60-65F in the
house (and the computer office) the VAX is not running hot. I removed one
of the drives, since I really wasn't doing anything with it. (it was a
pull from a BA356 canister) Looked half-height to me, although I do have
some smaller in size drives that I may swap in.
At some point I'm going to source new fans and then try to pry the old
ones out. Other than that when I had the power supply apart, no domed
caps, everything is quite clean (and even cleaner when I gave it a date
with the shop air compressor).
I have two 90's (not 90A's) in the closet I could press into service but I
really do not want to trash this 90A for just missing one fan.
Thanks for the responses all.
Fred
----
Lets call it for what it is - "legacy" is a term that people use in a
polite but derogatory manner to imply that the future direction they
prefer is not that which they view as the current direction.
One more diff: http://pdp-11.nsk.ru/~form/files/bridge/bridge-tap.patch
It contains my previous path for OpenBSD and adds support for OpenBSD/Linux `tun' interface, so you
can use it for SimH:
bridge.conf:
------------
[bridge]
tunnel @tun0
------------
pdp11.ini:
------------
att xq tun0
------------
On 11/22/2011 09:24 AM, Oleg Safiullin wrote:
On 11/22/2011 02:25 AM, Johnny Billquist wrote:
Ok. After some whacky hacking to merge what Hans sent me, I've uploaded a new version at http://www.update.uu.se/~bqt/hecnet
o Update for OpenBSD to avoid loops.
o Drop MAX() definition - it isn't used
--- bridge.c.orig Tue Nov 22 02:17:15 2011
+++ bridge.c Tue Nov 22 09:21:34 2011
@@ -70,8 +70,6 @@
#define ETHERTYPE_MOPRC 0x6002
#define ETHERTYPE_LOOPBACK 0x9000
-#define MAX(a,b) (a>b?a:b)
-
/* This is a very simple and small program for bpf that just
filters out anything by any protocol that we *know* we're
not interested in.
@@ -248,6 +246,13 @@
perror("BIOCSHDRCMPLT");
exit(1);
}
+#ifdef __OpenBSD__
+ i = BPF_DIRECTION_OUT;
+ if (ioctl(bridge[bcnt].fd,BIOCSDIRFILT,&i)) {
+ perror("BIOCSDIRFILT");
+ exit(1);
+ }
+#endif
#endif
found = -1;
On 11/22/2011 02:25 AM, Johnny Billquist wrote:
Ok. After some whacky hacking to merge what Hans sent me, I've uploaded a new version at http://www.update.uu.se/~bqt/hecnet
o Update for OpenBSD to avoid loops.
o Drop MAX() definition - it isn't used
--- bridge.c.orig Tue Nov 22 02:17:15 2011
+++ bridge.c Tue Nov 22 09:21:34 2011
@@ -70,8 +70,6 @@
#define ETHERTYPE_MOPRC 0x6002
#define ETHERTYPE_LOOPBACK 0x9000
-#define MAX(a,b) (a>b?a:b)
-
/* This is a very simple and small program for bpf that just
filters out anything by any protocol that we *know* we're
not interested in.
@@ -248,6 +246,13 @@
perror("BIOCSHDRCMPLT");
exit(1);
}
+#ifdef __OpenBSD__
+ i = BPF_DIRECTION_OUT;
+ if (ioctl(bridge[bcnt].fd,BIOCSDIRFILT,&i)) {
+ perror("BIOCSDIRFILT");
+ exit(1);
+ }
+#endif
#endif
found = -1;
On 2011-11-21 20:54, Mark Benson wrote:
On 21 Nov 2011, at 19:25, Johnny Billquist wrote:
Ok. After some whacky hacking to merge what Hans sent me, I've uploaded a new version at http://www.update.uu.se/~bqt/hecnet
Grab it, compile and test. There are also some improvements and bugfixes there. Not that maybe you had seen them in real life, but never the less...
The file I wget'd is date 2010 and compiled to the exact size of the last version I was using...
http://www.update.uu.se/~bqt/bridge.tar
Is that right?
That sounds wrong. I just checked again, and the tar-file is dated today, as is the bridge.c file inside.
And your url is correct.
Check the file size. bridge.c should be 15897 bytes.
Johnny
--
Johnny Billquist || "I'm on a bus
|| on a psychedelic trip
email: bqt at softjar.se || Reading murder books
pdp is alive! || tryin' to stay hip" - B. Idol
On 21 Nov 2011, at 20:07, hvlems at zonnet.nl wrote:
What happens if you run it without a parameter?
It asks for a port number? :)
--
Mark Benson
http://DECtec.info
Twitter: @DECtecInfo
HECnet: STAR69::MARK
Online Resource & Mailing List for DEC Enthusiasts.
What happens if you run it without a parameter?
-----Original Message-----
From: Mark Benson <md.benson at gmail.com>
Sender: owner-hecnet at Update.UU.SE
Date: Mon, 21 Nov 2011 19:54:12
To: <hecnet at Update.UU.SE>
Reply-To: hecnet at Update.UU.SESubject: Re: [HECnet] New bridge version
On 21 Nov 2011, at 19:25, Johnny Billquist wrote:
Ok. After some whacky hacking to merge what Hans sent me, I've uploaded a new version at http://www.update.uu.se/~bqt/hecnet
Grab it, compile and test. There are also some improvements and bugfixes there. Not that maybe you had seen them in real life, but never the less...
The file I wget'd is date 2010 and compiled to the exact size of the last version I was using...
http://www.update.uu.se/~bqt/bridge.tar
Is that right?
--
Mark Benson
http://DECtec.info
Twitter: @DECtecInfo
HECnet: STAR69::MARK
Online Resource & Mailing List for DEC Enthusiasts.
On 21 Nov 2011, at 19:25, Johnny Billquist wrote:
Ok. After some whacky hacking to merge what Hans sent me, I've uploaded a new version at http://www.update.uu.se/~bqt/hecnet
Grab it, compile and test. There are also some improvements and bugfixes there. Not that maybe you had seen them in real life, but never the less...
The file I wget'd is date 2010 and compiled to the exact size of the last version I was using...
http://www.update.uu.se/~bqt/bridge.tar
Is that right?
--
Mark Benson
http://DECtec.info
Twitter: @DECtecInfo
HECnet: STAR69::MARK
Online Resource & Mailing List for DEC Enthusiasts.