1 INFO-VAX	Thu, 23 Mar 2006	Volume 2006 : Issue 164       Contents:& Re: Disable console Ethernet on GS140?$ Example using pseudo terminal driver( Re: Example using pseudo terminal driver( Re: Example using pseudo terminal driver( Re: Example using pseudo terminal driver For Sale DS10L Blemished" How to stretch a pixmap (.pm) file& Re: How to stretch a pixmap (.pm) file2 Re: How to use telnet to brows web page within VMS2 Re: How to use telnet to brows web page within VMS2 Re: How to use telnet to brows web page within VMS2 Re: How to use telnet to brows web page within VMS2 Re: How to use telnet to brows web page within VMS: HP OpenVMS CIFS announcement - Evaluation kit availability> Re: HP OpenVMS CIFS announcement - Evaluation kit availability> Re: HP OpenVMS CIFS announcement - Evaluation kit availability> Re: HP OpenVMS CIFS announcement - Evaluation kit availability# Re: Newbie Problem Setting Up TCPIP # Re: Newbie Problem Setting Up TCPIP  old uVAX needs a home ( Re: OT:HUMOR VMS Just Add Power Campaign( Re: OT:HUMOR VMS Just Add Power Campaign$ Re: What happened to the SYS V9 ECO?7 [OpenVMS Alpha V7.3-2] What happened to the SYS V9 ECO? ; Re: [OpenVMS Alpha V7.3-2] What happened to the SYS V9 ECO?   F ----------------------------------------------------------------------    Date: 22 Mar 2006 23:04:51 -07001 From: nothome@spammers.are.scum (Malcolm Dunnett) / Subject: Re: Disable console Ethernet on GS140? , Message-ID: <p48VpLIUvZsJ@malvm9.mala.bc.ca>  , In article <44223B16.9B94A1B4@teksavvy.com>,4      JF Mezei <jfmezei.spamnot@teksavvy.com> writes:   > J > You need to turn your production system into a more logical-name enabledG > solution so that if it boots on a different machine, you can have DCL 3 > that executes based on the system hardware type.   > E    Is that possible? I didn't think software like Multinet and DECNet B could use a logical name to refer to an interface ( or a "line" in DECNet terminology )  B    I suppose I could write DCL that reconfigures those products atB boot time before starting them, but that seems overly complicated.  G > You could also achieve this by having 2 different system roots on the J > system disk, with system specific command procedures in those roots thatB > define the varous logicals and start tyhe system specific stuff.  H    I will have a second (actually a third - there's two production ES40s; that boot from that disk at the moment) system root for the A GS140 on the system disk so that I can run it at the same time as E the existing ES40s for configuring and testing purposes, but the goal H was that if either of the ES40s die I want to be able to bring the GS140J on-line in place of it and have all the node specific stuff ( queues, PMDF/ server, FAX server, etc) start up on the GS140.    ------------------------------    Date: 23 Mar 2006 00:50:19 -0800 From: stuie_norris@yahoo.com.au - Subject: Example using pseudo terminal driver C Message-ID: <1143103819.047624.223880@i40g2000cwc.googlegroups.com>   	 Hi Group,   E I was thinking of using the pseudo terminal driver to fake user input & to test an application I have written.  F Are there any examples using pseudo terminal driver to fake input to aG program such as VMS mail etc? I would be thinking doing dir, set folder  etc and capture results.  E In the end I wish to run my program and read commands from a file and 1 enter them to my program and capture the results.   - Any hints on how to implement such a program?   B Just as a note in the latest version of the I/O Reference guide inE Appendix D Control Connection Routines are the pseudo driver routines  incorrectly labelled as PDT?   Thanks   Stuart   ------------------------------  % Date: Thu, 23 Mar 2006 07:57:44 -0500 * From: "FredK" <fred.nospam@nospam.dec.com>1 Subject: Re: Example using pseudo terminal driver , Message-ID: <44229b47$1@usenet01.boi.hp.com>  , <stuie_norris@yahoo.com.au> wrote in message= news:1143103819.047624.223880@i40g2000cwc.googlegroups.com...  > Hi Group,  > G > I was thinking of using the pseudo terminal driver to fake user input ( > to test an application I have written. > H > Are there any examples using pseudo terminal driver to fake input to aI > program such as VMS mail etc? I would be thinking doing dir, set folder  > etc and capture results. > G > In the end I wish to run my program and read commands from a file and 3 > enter them to my program and capture the results.  > / > Any hints on how to implement such a program?  >   I Well, the simplest is to run it from a command file and do something like   ! $ define/user sys$output test.log  $ run myprogram  input 1  input 2  input 3  ...  $ exit  G The most common form of what you are asking for (a test harness) from a K program tends to create a subprocess and then send commands to it through a L mailbox (you can find examples of this on code on the freeware CD) and reads the output from a mailbox.   ------------------------------  # Date: Thu, 23 Mar 2006 17:00:19 GMT # From: hoff@hp.nospam (Hoff Hoffman) 1 Subject: Re: Example using pseudo terminal driver 2 Message-ID: <DuAUf.5172$5s4.2055@news.cpqcorp.net>  Y In article <44229b47$1@usenet01.boi.hp.com>, "FredK" <fred.nospam@nospam.dec.com> writes:  : - :<stuie_norris@yahoo.com.au> wrote in message > :news:1143103819.047624.223880@i40g2000cwc.googlegroups.com... :> Hi Group, :>H :> I was thinking of using the pseudo terminal driver to fake user input) :> to test an application I have written.     D   The DTM test manager (part of the DECset package) has this testingF   capability, and can perform the verification of the output and otherC   related tasks.  I'd expect there are other options here, as well.    ..H :> In the end I wish to run my program and read commands from a file and4 :> enter them to my program and capture the results. :>0 :> Any hints on how to implement such a program? :> : J :Well, the simplest is to run it from a command file and do something like : " :$ define/user sys$output test.log :$ run myprogram :input 1 :input 2 :input 3 :... :$ exit     D   Or you can use PIPE with the < input file specifier, assuming V7.1   or later.     N  ---------------------------- #include <rtfaq.h> -----------------------------K     For additional, please see the OpenVMS FAQ -- www.hp.com/go/openvms/faq N  --------------------------- pure personal opinion ---------------------------G        Hoff (Stephen) Hoffman   OpenVMS Engineering   hoff[\0100]hp.com    ------------------------------  % Date: Thu, 23 Mar 2006 11:41:39 -0500 , From: Forrest Kenney <Forrest.Kenney@hp.com>1 Subject: Re: Example using pseudo terminal driver & Message-ID: <4422CFC3.B585A10E@hp.com>     : 	Assuming you have a reasonably current installation look G in sys$examples at logger or alpha_logger.c.  They are the same program G just that on VAX it ended up with a different name.  It is the code for 9 the example in the appendix.  It will get you started....   > 	DTM which was mentioned used the pseudo terminal code.  They H take advantage of the start middle and end read notification.  They need5 that so they can make terminal reads starts and ends.      Forrest       stuie_norris@yahoo.com.au wrote: >  > Hi Group,  > G > I was thinking of using the pseudo terminal driver to fake user input ( > to test an application I have written. > H > Are there any examples using pseudo terminal driver to fake input to aI > program such as VMS mail etc? I would be thinking doing dir, set folder  > etc and capture results. > G > In the end I wish to run my program and read commands from a file and 3 > enter them to my program and capture the results.  > / > Any hints on how to implement such a program?  > D > Just as a note in the latest version of the I/O Reference guide inG > Appendix D Control Connection Routines are the pseudo driver routines  > incorrectly labelled as PDT? >  > Thanks >  > Stuart   ------------------------------  % Date: Thu, 23 Mar 2006 11:47:44 -0500 C From: "David Turner, Island Computers US Corp" <dbturner@icusc.com> ! Subject: For Sale DS10L Blemished 8 Message-ID: <VfAUf.2607$lM3.1961@bignews3.bellsouth.net>   Seconds/Consmetically blemished   ) Working, though not the prettiest systems     - Alphaserver DS10L                      Qty 17  466Mhz	 No Memory  No CDROM	 No Floppy  Dual 10/100 Ethernet On Board " Dual IDE (VMS Bootable) Controller     Barebones systems     ( Only $89 +shipping (about $25-30 in USA)    ' Guaranteed working with 30 day warranty     6 First come first serve so get your credit card ready !   No limit on qty up to the 17       --     David B Turner Island Computers US Corp 2700 Gregory St, Suite 180 Savannah GA 31404  Tel: 912 447 6622 X201 Cell: 912 447 6622 X252  Fax: 912 201 0402  Email: dbturner@icusc.com  Web: http://www.islandco.com% ===================================== < All orders are subject to the following terms and conditions. of sale. These should be read before ordering.% http://www.islandco.com/warranty.html    ------------------------------    Date: 23 Mar 2006 02:01:13 -0800& From: "Ronky" <contactronak@gmail.com>+ Subject: How to stretch a pixmap (.pm) file C Message-ID: <1143108073.703330.189360@i40g2000cwc.googlegroups.com>    Hi,   E When i set my monitor resolution to 1600x1200, color changes from the F bottom of the screen. This happens because the pixmap (.pm) file is ofC height 1024. Is there any algorith available to stretch a .pm file?    ------------------------------  # Date: Thu, 23 Mar 2006 16:57:15 GMT # From: hoff@hp.nospam (Hoff Hoffman) / Subject: Re: How to stretch a pixmap (.pm) file 2 Message-ID: <LrAUf.5171$5s4.1031@news.cpqcorp.net>  l In article <1143108073.703330.189360@i40g2000cwc.googlegroups.com>, "Ronky" <contactronak@gmail.com> writes:  F :When i set my monitor resolution to 1600x1200, color changes from theG :bottom of the screen. This happens because the pixmap (.pm) file is of D :height 1024. Is there any algorith available to stretch a .pm file?     In no particular order...   @   a: OpenVMS version, DECwindows version, ECOs (particularly the?      UPDATE and GRAPHICS ECOs, as available) and the particular @      graphics controller?  (One- or two-line questions are oftenB      supremely difficult to answer, with any degree of certainty.)  ;   b: I'd not expect a color change when an image is scaled.   B   c: comp.os.vms isn't the hot-bed of graphics algorithms details.  B   d: ImageMagick is an option, and there are other tools available>      for creating, displaying, managing and converting images.@      (The OpenVMS FAQ has various of the tools I know about, and@      pointers.  Additions, updates and corrections are welcome.)  @   e: What is presently stretching the image?  I have no idea why@      this color change might be occuring, and there's not really0      enough here to venture a particular guess.)  B   f: The OpenVMS FAQ discusses setting the graphics controller and?      the monitor to compatible resolutions -- I'd hope that the ?      new pairing is compatible, but I've seen cases where color @      shifts can indicate signal integrity problems or resolution      mis-matches.   /   g: is this the DECDTLOGO.PM login logo image?   E  ---------------------------- <rtfaq.h> ----------------------------- K     For additional, please see the OpenVMS FAQ -- www.hp.com/go/openvms/faq N  --------------------------- pure personal opinion ---------------------------G        Hoff (Stephen) Hoffman   OpenVMS Engineering   hoff[\0100]hp.com    ------------------------------  % Date: Thu, 23 Mar 2006 09:52:02 -0500  From: norm.raphael@metso.com; Subject: Re: How to use telnet to brows web page within VMS Q Message-ID: <OFEDC726F4.E2BAB67A-ON8525713A.00517196-8525713A.0051AAD6@metso.com>   v                                                                                                                       v     sms@antinode.org (Steven M. Schweda)                                                                              v                                                                                                                       v     03/22/2006 06:19 PM                                                                                            To v                                                   Info-VAX@Mvb.Saic.Com                                               v                                                                                                                    cc v                                                                                                                       v                                                                                                               Subject v                                                   Re: How to use telnet to brows web page within VMS                  v                                                                                                                       v                                                                                                                       v                                                                                                                       v                                                                                                                       v                                                                                                                       v                                                                                                                                 + From: "r33300@gmail.com" <r33300@gmail.com>   E > We have a regular job running to get some information for internet, H > then we download that web page and extract the data from that download1 > file. Current the job we executed in two steps.  > G > 1. Use a web browser to download the web page and save into a pc disk ; > 2. Upload the web page into VMS box the extract the data.  > G > I tried use $ telnet /port=80 www.webpage.com/ and use GET method try G > to get the file, the file displayed on my screen, my question here is E > how can I capture the information into an file so I can extract the  > data from?  E    I use Wget ("http://antinode.org/dec/sw/wget.html").  Of course, I G may be biased.  I don't use it, but for a single file, cURL should also @ be suitable.  (There appear to be many simple (one-step) methodsG available, any of which would be more fun than the ones you've found up  to now.)  2    If you have complaints about Wget, let me know.   >QUOTE Wget 1.10.2 VMS-Ready Kit C       VMS port notes (as included in the complete kit, below). This J       document describes the changes required to build Wget 1.10.2 on VMS,C       and some enhancements which are applicable to other operating I       systems. (For example, the standard Wget code does not handle a VMS        FTP server well.)     .       /ftp/wget/wget-1_10_2b_vms/vms_notes.txt    Complete kit, including: (          Source (original and modified).D          Alpha objects and executable (built on VMS V7.3-2 with HP C*          V7.1-015 and TCPIP V5.4 - ECO 5).C          IA64 objects and executable (built on VMS V8.2-1 with HP C "          S7.1-013 and TCPIP V5.5).D          VAX objects and executable (built on VMS V7.3 with Compaq C"          V6.4-005 and TCPIP V5.1).    D       Note that support for extended file names on ODS5 file systemsH       depends on fairly recent C RTL features, as found in VMS V7.3-2 or(       VMS V7.3-1 with VMS731_ACRTL V3.0.    5       /ftp/wget/wget-1_10_2b_vms/wget-1_10_2b_vms.zip     K       The Zip archive for this kit was created using the Zip "-V" option to H       preserve the VMS file attributes, but the source files in this ZipF       archive should be usable on a non-VMS system. The VMS port notesK       mentioned above (and included in the kit) describe how to restore the K       original mixed-case and/or multi-dot file names in the kit which have F       been altered to accomodate the more limited VMS ODS2 file system       where this work was done.        <UNQUOTE    <       Does this work with/ is this available with/ Multinet?      N       ------------------------------------------------------------------------    :          Steven M. Schweda               (+1) 651-699-98189          382 South Warwick Street        sms@antinode-org #          Saint Paul  MN  55105-2547    ------------------------------  + Date: Thu, 23 Mar 2006 11:06:07 -0600 (CST) * From: sms@antinode.org (Steven M. Schweda); Subject: Re: How to use telnet to brows web page within VMS 2 Message-ID: <06032311060698_2020036B@antinode.org>   From: norm.raphael@metso.com   Yow.  That was formatted badly.   I > >    I use Wget ("http://antinode.org/dec/sw/wget.html").  Of course, I K > > may be biased.  I don't use it, but for a single file, cURL should also D > > be suitable.  (There appear to be many simple (one-step) methodsK > > available, any of which would be more fun than the ones you've found up  > > to now.) > > 6 > >    If you have complaints about Wget, let me know. > , > [Quotation fron the Web page cited above.] > > >       Does this work with/ is this available with/ Multinet?  E    I've heard no complaints in recent times, but that proves little.  F (Or, on comp.os.vms, is that "prooves"?)  Long ago, the builder gainedB some code to detect and accomodate MultiNet, but if MultiNet's UCXE emulation is ok, it might work as well (or better) if that stuff were 	 disabled.   F    Actual satisfied and/or dissatisfied users are welcome to comment. E I'd guess that (given good UCX emulation) the kit's executables would F just work.  One way to find out.  I currently have enough variables onB my junk collection to satisfy myself, so installing a different IPA package is not high on my list of fun tasks soon to be completed.   2    If you have complaints about Wget, let me know.  H ------------------------------------------------------------------------  4    Steven M. Schweda               (+1) 651-699-98183    382 South Warwick Street        sms@antinode-org     Saint Paul  MN  55105-2547    ------------------------------  % Date: Thu, 23 Mar 2006 12:33:52 -0500  From: norm.raphael@metso.com; Subject: Re: How to use telnet to brows web page within VMS Q Message-ID: <OF1E0C22F9.996C3D86-ON8525713A.006040C6-8525713A.00607BCC@metso.com>   E sms@antinode.org (Steven M. Schweda) wrote on 03/23/2006 12:06:07 PM:    > From: norm.raphael@metso.com > ! > Yow.  That was formatted badly.   8 Yes, indeed, it was.  NotesMail 8-( . Out of my control. > K > > >    I use Wget ("http://antinode.org/dec/sw/wget.html").  Of course, I H > > > may be biased.  I don't use it, but for a single file, cURL should alsoF > > > be suitable.  (There appear to be many simple (one-step) methodsJ > > > available, any of which would be more fun than the ones you've found up > > > to now.) > > > 8 > > >    If you have complaints about Wget, let me know. > > . > > [Quotation fron the Web page cited above.] > > @ > >       Does this work with/ is this available with/ Multinet? > F >    I've heard no complaints in recent times, but that proves little.H > (Or, on comp.os.vms, is that "prooves"?)  Long ago, the builder gainedD > some code to detect and accomodate MultiNet, but if MultiNet's UCXG > emulation is ok, it might work as well (or better) if that stuff were  > disabled.  > G >    Actual satisfied and/or dissatisfied users are welcome to comment. G > I'd guess that (given good UCX emulation) the kit's executables would H > just work.  One way to find out.  I currently have enough variables onD > my junk collection to satisfy myself, so installing a different IPC > package is not high on my list of fun tasks soon to be completed.  >   > I second that.  I cannot test, so I was asking for experience.& Experienced response is still welcome.  4 >    If you have complaints about Wget, let me know. > J > ------------------------------------------------------------------------ > 6 >    Steven M. Schweda               (+1) 651-699-98185 >    382 South Warwick Street        sms@antinode-org  >    Saint Paul  MN  55105-2547    ------------------------------    Date: 23 Mar 2006 09:50:10 -0800+ From: "r33300@gmail.com" <r33300@gmail.com> ; Subject: Re: How to use telnet to brows web page within VMS C Message-ID: <1143136210.544739.107300@j33g2000cwa.googlegroups.com>    Thanks for all the feedbacks.   E  Actually I have found a cool standalone utility called fetch_http. I D use it to get single web pages. Anybody interesting with it, you can find it from> http://www.sternwarte.uni-erlangen.de/ftp/michael/fetch_http.c   ------------------------------  + Date: Thu, 23 Mar 2006 12:43:32 -0600 (CST) * From: sms@antinode.org (Steven M. Schweda); Subject: Re: How to use telnet to brows web page within VMS 2 Message-ID: <06032312433277_2020036B@antinode.org>  + From: "r33300@gmail.com" <r33300@gmail.com>   G >  Actually I have found a cool standalone utility called fetch_http. I F > use it to get single web pages. Anybody interesting with it, you can > find it from@ > http://www.sternwarte.uni-erlangen.de/ftp/michael/fetch_http.c  2    See?  There's another one.  They're everywhere.  D    Of course, when you want FTP or HTTPS, or recursive downloads, orF preserved time-date, or this, or that, ...  Well, don't come crying toC me.  (As I always say, what good is a tool if it does only what you  need?)  H ------------------------------------------------------------------------  4    Steven M. Schweda               (+1) 651-699-98183    382 South Warwick Street        sms@antinode-org     Saint Paul  MN  55105-2547    ------------------------------    Date: 23 Mar 2006 07:20:18 -0800) From: "Sue" <susan_skonetski@hotmail.com> C Subject: HP OpenVMS CIFS announcement - Evaluation kit availability C Message-ID: <1143127218.258450.249910@v46g2000cwv.googlegroups.com>   E  We are pleased to announce the availability of the HP OpenVMS Common A Internet File System (CIFS) IA64 "evaluation" kit. The HP OpenVMS D Common Internet File System (CIFS) provides users with seamless fileE and print interoperability between OpenVMS and Windows-based clients. B The OpenVMS file and print services evaluation kit is based on theG Samba.org Open Source/Free Software suite which provides file and print B services to SMB/CIFS clients. The kit has been developed to run onG OpenVMS Itanium platforms. It is similar to implementations that are in @ place today supporting Linux and UNIX operating environments. An6 "Alpha" evaluation kit will follow in the near future.G For download access to the OpenVMS Itanium evaluation kit and access to C current CIFS information please utilize our CIFS home page found at B http://h71000.www7.hp.com/network/CIFS_for_Samba.html . For direct5 access to the evaluation kit download please refer to G http://h71000.www7.hp.com/network/cifs_register.html. You will be asked E to register for this free evaluation kit. Please note that this is an B evaluation kit and not meant for "production" implementations. ForG information on the availability of "production" versions of CIFS please ' refer to the OpenVMS road maps found at @ http://h71000.www7.hp.com/openvms/roadmap/openvms_roadmaps.htm .G As always we appreciate your timely feed back via our web site process. = Please feel free to provide us advice on the products ease of G implementation, its documentation, the products functionality and where  new features may be warranted    ------------------------------  % Date: Thu, 23 Mar 2006 16:58:33 +0000 # From: issinoho <issinoho@gmail.com> G Subject: Re: HP OpenVMS CIFS announcement - Evaluation kit availability 4 Message-ID: <dvuk04$puk$1$830fa795@news.demon.co.uk>  
 Sue wrote:G >  We are pleased to announce the availability of the HP OpenVMS Common C > Internet File System (CIFS) IA64 "evaluation" kit. The HP OpenVMS F > Common Internet File System (CIFS) provides users with seamless fileG > and print interoperability between OpenVMS and Windows-based clients. D > The OpenVMS file and print services evaluation kit is based on theI > Samba.org Open Source/Free Software suite which provides file and print D > services to SMB/CIFS clients. The kit has been developed to run onI > OpenVMS Itanium platforms. It is similar to implementations that are in B > place today supporting Linux and UNIX operating environments. An8 > "Alpha" evaluation kit will follow in the near future.I > For download access to the OpenVMS Itanium evaluation kit and access to E > current CIFS information please utilize our CIFS home page found at D > http://h71000.www7.hp.com/network/CIFS_for_Samba.html . For direct7 > access to the evaluation kit download please refer to I > http://h71000.www7.hp.com/network/cifs_register.html. You will be asked G > to register for this free evaluation kit. Please note that this is an D > evaluation kit and not meant for "production" implementations. ForI > information on the availability of "production" versions of CIFS please ) > refer to the OpenVMS road maps found at B > http://h71000.www7.hp.com/openvms/roadmap/openvms_roadmaps.htm .I > As always we appreciate your timely feed back via our web site process. ? > Please feel free to provide us advice on the products ease of I > implementation, its documentation, the products functionality and where  > new features may be warranted  >   5 Fantastic! Any idea when the Alpha version is coming?    ------------------------------    Date: 23 Mar 2006 10:04:40 -0800; From: "johnhreinhardt@yahoo.com" <johnhreinhardt@yahoo.com> G Subject: Re: HP OpenVMS CIFS announcement - Evaluation kit availability C Message-ID: <1143137080.353456.158110@i39g2000cwa.googlegroups.com>    issinoho wrote:  > 7 > Fantastic! Any idea when the Alpha version is coming?   G The CIFS Roadmap says IA64 pre-release in March 2006, Alpha pre-release / in April 2006 and production of both in H2 2006    ------------------------------  # Date: Thu, 23 Mar 2006 18:57:36 GMT # From: hoff@hp.nospam (Hoff Hoffman) G Subject: Re: HP OpenVMS CIFS announcement - Evaluation kit availability 2 Message-ID: <AcCUf.5184$Zv4.1477@news.cpqcorp.net>  Z In article <dvuk04$puk$1$830fa795@news.demon.co.uk>, issinoho <issinoho@gmail.com> writes:  A :Fantastic! Any idea when the Alpha version [of Samba] is coming?   5   From deep within the text of the message you cited:   =   `An "Alpha" evaluation kit will follow in the near future.'   C   I read that to indicate that an OpenVMS Alpha evaluation kit will A   follow, and in the near future.  (Do I have a schedule for that A   availability, and particularly one that I'm willing to discuss?    Nope; sorry. :-)  E   I will see if I can purchase and provide a few newlines to whomever 5   wrote that original announcement text, though.  :-)   D   At present, the solution for OpenVMS Alpha is PATHWORKS Server andD   the Advanced Server product; these products provide print and disk:   storage services to SMB-based Microsoft Windows clients.  N  ---------------------------- #include <rtfaq.h> -----------------------------K     For additional, please see the OpenVMS FAQ -- www.hp.com/go/openvms/faq N  --------------------------- pure personal opinion ---------------------------G        Hoff (Stephen) Hoffman   OpenVMS Engineering   hoff[\0100]hp.com    ------------------------------  # Date: Thu, 23 Mar 2006 13:35:40 GMT * From: Gary Parker <g.j.parker@lboro.ac.uk>, Subject: Re: Newbie Problem Setting Up TCPIP4 Message-ID: <2006032313404816807-gjparker@lboroacuk>  K On 2006-03-14 21:19:34 +0000, JF Mezei <jfmezei.spamnot@teksavvy.com> said: H > I have a 4000-600 and it uses ZEO properly. So it looks like the right > interface name.   D Okay, I tried your suggestion and although no errors occured during . configuration it's stil behaving the same way.  G I found a posting to this ng from 'David Coolbear' from June last year  G and he seemed to be having a very similar issue in that 'show devices'  E lists the EZA0: device, the tcpip$config detects the ZE0: device and  > allows you to configure it but it never actually gets started.  B 'tcpip> show interface' only lists loopback but 'tcpip> show conf 2 interface' lists ZE0: and it's correct parameters.  G I've contacted David directly to ask him if he found a way to fix this.    Gary   ------------------------------  # Date: Thu, 23 Mar 2006 18:26:04 GMT * From: Gary Parker <g.j.parker@lboro.ac.uk>, Subject: Re: Newbie Problem Setting Up TCPIP4 Message-ID: <2006032318245875249-gjparker@lboroacuk>  > On 2006-03-23 15:51:57 +0000, "Ian Miller" <ijm@uk2.net> said:  I > Ensure your selected IP address is not already in  use on your network.   G Thanks Ian, I'd already considered this but was absolutely certain the  B IP address I'd set wasn't in use on my network (only a small home # network with 4 or 5 devices on it).   A Anyways, I changed it to a different address (from 10.0.0.251 to  D 10.0.0.20) and it worked perfectly. This is very frustrating as I'm F absolutely positive there is no machine on my LAN with .251 but, hey, 
 it works now.    Thanks for the help guys...    Gary   ------------------------------    Date: 23 Mar 2006 10:23:01 -0800) From: "William" <william.bader@gmail.com>  Subject: old uVAX needs a homeC Message-ID: <1143138181.373836.141400@g10g2000cwb.googlegroups.com>   G We have some old uVAXen that have an appointment with a trash compactor D unless someone can come and take them.  Today is March 23, 2006, andC the uVAXen have only a few days left.  The address is Nazareth, PA, ? 18064.  Call 610-746-7426 and ask for William or Frank or write  williambader@hotmail.com William    ------------------------------    Date: 23 Mar 2006 09:11:54 -0600- From: Kilgallen@SpamCop.net (Larry Kilgallen) 1 Subject: Re: OT:HUMOR VMS Just Add Power Campaign 3 Message-ID: <vqszVHo34VLm@eisner.encompasserve.org>   f In article <1143123392.403056.228870@t31g2000cwb.googlegroups.com>, "Ian Miller" <ijm@uk2.net> writes:G > HP Secure Server is a complete turn-key packaged system that provides @ > e-mail services, integrated virus scanning, and junk filtering > features, all in one box.  >   > http://www.trysecureserver.com  ( I signed up for a demonstration account.  I The spam measures (called Yorba) involve filtering rather than rejection:    	1. Not discouraging spammers D 	2. Not letting legitimate correspondents know about false positives   ------------------------------    Date: 23 Mar 2006 08:29:13 -0800 From: etmsreec@yahoo.co.uk1 Subject: Re: OT:HUMOR VMS Just Add Power Campaign C Message-ID: <1143131353.841594.306570@g10g2000cwb.googlegroups.com>   D It'd be even better if the samba server could act as the current dayE equivalent of a PDC.  That way you wouldn't need ANY windows servers!    ------------------------------    Date: 23 Mar 2006 11:46:48 +01006 From: peter@langstoeger.at (Peter 'EPLAN' LANGSTOEGER)- Subject: Re: What happened to the SYS V9 ECO? , Message-ID: <44228aa8$1@news.langstoeger.at>  f In article <1143109206.301494.292840@i39g2000cwa.googlegroups.com>, "Ian Miller" <ijm@uk2.net> writes:B >VMS732_SYS V9 has been superceeded by VMS732_SYS V10 because of a+ >problem with the SHOW MEMORY command - see  > : >http://www.openvms.org/stories.php?story=06/03/14/4417086   Thanks for the fast answer   --   Peter "EPLAN" LANGSTOEGER % Network and OpenVMS system specialist  E-mail  peter@langstoeger.atF A-1030 VIENNA  AUSTRIA              I'm not a pessimist, I'm a realist   ------------------------------    Date: 23 Mar 2006 10:42:15 +01006 From: peter@langstoeger.at (Peter 'EPLAN' LANGSTOEGER)@ Subject: [OpenVMS Alpha V7.3-2] What happened to the SYS V9 ECO?, Message-ID: <44227b87$1@news.langstoeger.at>  @ I just saw that yesterday the VMS732_SYS V9 got reentered in theK ALPHA_V732_MASTER_ECO_LIST. It was already there since 10-Mar-2006 I think.   I But the kit itself is no longer there and search on www.itrc.hp.com can't G (or can no longer) find it. So, is it ONHOLD now, or what has happened? B Do I have to worry (because I have it installed on a few systems)?  K (btw. INSTAL V1 which was ONHOLD is now replaced by INSTAL V2 since 3 days)    TIA    --   Peter "EPLAN" LANGSTOEGER % Network and OpenVMS system specialist  E-mail  peter@langstoeger.atF A-1030 VIENNA  AUSTRIA              I'm not a pessimist, I'm a realist   ------------------------------  # Date: Thu, 23 Mar 2006 15:30:52 GMT  From: Jim Duff <jim@127.0.0.1>D Subject: Re: [OpenVMS Alpha V7.3-2] What happened to the SYS V9 ECO?H Message-ID: <MazUf.611451$qk4.159506@bgtnsc05-news.ops.worldnet.att.net>    Peter 'EPLAN' LANGSTOEGER wrote:B > I just saw that yesterday the VMS732_SYS V9 got reentered in theM > ALPHA_V732_MASTER_ECO_LIST. It was already there since 10-Mar-2006 I think.  > K > But the kit itself is no longer there and search on www.itrc.hp.com can't I > (or can no longer) find it. So, is it ONHOLD now, or what has happened? D > Do I have to worry (because I have it installed on a few systems)? > M > (btw. INSTAL V1 which was ONHOLD is now replaced by INSTAL V2 since 3 days)  >   G VMS732_SYS-V1000 is out.  Unfortunately, it's in the wrong directory as  of 5 minutes ago.   G ftp://ftp.itrc.hp.com/openvms_patches/i64/V8.2/VMS732_SYS-V1000.txt and O ftp://ftp.itrc.hp.com/openvms_patches/i64/V8.2/VMS732_SYS-V1000.PCSI-DCX_AXPEXE    Jim.   ------------------------------   End of INFO-VAX 2006.164 ************************