Re: FTPS (FTP over SSL) Package for SLES9

2007-08-28 Thread José L . Ramírez
Hi,

The pure-ftpd package that comes with SLES9 supports FTP over SSL/TLS 
(http://www.pureftpd.org/project/pure-ftpd).

Regards,

Jose

-Original Message-
From: Clark, Douglas [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 27, 2007 11:07 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

Does anyone know of a FTPS (FTP over SSL) client package that will work
on SLES9 on the S390?  I need to send a file to a remote server who
requires ftp over ssl.  I made a mistake and assumed that sftp was the
same thing.  I understand vsftpd supports ftp over ssl but I don't see
how to setup a client to initiate the data transfer process.  Also, I
read in one of the threads sftp (using ssh) could also be configured to
support ssl.  I have not found any documentation the shows how to
configure that either.  Any help would be very much appreciated.

Doug

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: FTPS (FTP over SSL) Package for SLES9

2007-08-28 Thread José L . Ramírez
Opps, sorry, I didn't notice that what Douglas needs is an FTP SSL client.
 
Based on that I think that the ckermit package that comes with SLES9 will help 
you. We currently use the package to automatically download files from a 
FTP/SSL site. It provides lots of scripting capabilities... if you need some 
scripts examples just let me know...

-Jose 

-Original Message-
From: Mark Post [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 28, 2007 11:24 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

>>> On Tue, Aug 28, 2007 at  8:47 AM, in message
<[EMAIL PROTECTED]>, José
L.
Ramírez <[EMAIL PROTECTED]> wrote: 
> Hi,
> 
> The pure-ftpd package that comes with SLES9 supports FTP over SSL/TLS

> (http://www.pureftpd.org/project/pure-ftpd).

True, but that doesn't provide a _client_ which is what Douglas is
after.

I got some replies from my internal queries.  Amazingly (to me), SLES
doesn't have an FTP client that supports FTPS.  OpenSUSE does, but not
SLES.  :(

I'm going to be putting an internal RFE to have that added, or have
lukemftp rebuilt to support it (assuming the code is there).


Mark Post

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: FTPS (FTP over SSL) Package for SLES9

2007-08-28 Thread José L . Ramírez
Hi Mark,

 

This simple ckermit script receives several values as parameters (ip, port, 
user, etc.), it basically uploads the contents of a local directory, it will 
use TLS:

 

#!/usr/bin/kermit +

 

  SET FTP VERBOSE-MODE ON

  SET FTP AUTHTYPE TLS

  SET AUTH TLS CERTS-OK

  SET FTP AUTOAUTHENTICATION OFF

 

  SET TRANSACTION-LOG BRIEF

  LOG TRANSACTIONS /var/kermit_ftp.log APPEND

 

  .ip := \fcontents(\%1)

  .port   := \fcontents(\%2)

  .user   := \fcontents(\%3)

  .password   := \fcontents(\%4)

  .ldirectory := \fcontents(\%5)

  .rdirectory := \fcontents(\%6)

 

  ftp open \%1 \%2 /user:\%3 /password:\%4

  if fail exit 1 \%1: Connection failed

  if not \v(ftp_loggedin) exit 1 Login failed

 

  lcd \m(ldirectory)

  if fail exit 1 lcd: \v(errstring)

 

  ftp cd \m(rdirectory)   ; CD to desired server directory

  if fail exit 1 cd: \v(errstring)

 

  ftp mput /delete *

  if fail exit 1 ftp mput *: \v(ftp_message)

 

  ftp bye

 

  close transaction-log   ; Close log

  exit

 

 

 

Jose

 

-Original Message-
From: Mark Post [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 28, 2007 2:48 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

 

>>> On Tue, Aug 28, 2007 at  2:30 PM, in message

<[EMAIL PROTECTED]>, José

L.

Ramírez <[EMAIL PROTECTED]> wrote: 

> Opps, sorry, I didn't notice that what Douglas needs is an FTP SSL

client.

>  

> Based on that I think that the ckermit package that comes with SLES9

will 

> help you. We currently use the package to automatically download

files from a 

> FTP/SSL site. It provides lots of scripting capabilities... if you

need some 

> scripts examples just let me know...

 

I don't know if Douglas needs some script samples, but I would like to

see a few small ones, particularly how the SSL/TLS aspect gets invoked

within an FTP session.

 

 

Mark Post

 

--

For LINUX-390 subscribe / signoff / archive access instructions,

send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit

http://www.marist.edu/htbin/wlvindex?LINUX-390

 

 

Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: FTPS (FTP over SSL) Package for SLES9

2007-09-06 Thread José L . Ramírez
I will like to see the curl command line.

Regards,

Jose

-Original Message-
From: Clark, Douglas [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 05, 2007 8:35 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

I was unsuccessful in getting this script to work.  However, that could have 
been because all ftp traffic from my Linux system's IP Address was blocked at 
the firewall.  After that restriction was lifted, I tried and successfully 
transmitted a file via "ftp over ssl" using curl.  It worked beautifully.  
Thanks to all who shared their information with me.  If anyone is interested I 
would be happy to send the curl command line I used but after I was directed to 
try that utility it was pretty easy to figure out the command syntax.

Doug


-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of José L. Ramírez
Sent: Tuesday, August 28, 2007 12:24 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

Hi Mark,

 

This simple ckermit script receives several values as parameters (ip, port, 
user, etc.), it basically uploads the contents of a local directory, it will 
use TLS:

 

#!/usr/bin/kermit +

 

  SET FTP VERBOSE-MODE ON

  SET FTP AUTHTYPE TLS

  SET AUTH TLS CERTS-OK

  SET FTP AUTOAUTHENTICATION OFF

 

  SET TRANSACTION-LOG BRIEF

  LOG TRANSACTIONS /var/kermit_ftp.log APPEND

 

  .ip := \fcontents(\%1)

  .port   := \fcontents(\%2)

  .user   := \fcontents(\%3)

  .password   := \fcontents(\%4)

  .ldirectory := \fcontents(\%5)

  .rdirectory := \fcontents(\%6)

 

  ftp open \%1 \%2 /user:\%3 /password:\%4

  if fail exit 1 \%1: Connection failed

  if not \v(ftp_loggedin) exit 1 Login failed

 

  lcd \m(ldirectory)

  if fail exit 1 lcd: \v(errstring)

 

  ftp cd \m(rdirectory)   ; CD to desired server directory

  if fail exit 1 cd: \v(errstring)

 

  ftp mput /delete *

  if fail exit 1 ftp mput *: \v(ftp_message)

 

  ftp bye

 

  close transaction-log   ; Close log

  exit

 

 

 

Jose

 

-Original Message-
From: Mark Post [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 28, 2007 2:48 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

 

>>> On Tue, Aug 28, 2007 at  2:30 PM, in message

<[EMAIL PROTECTED]>, José

L.

Ramírez <[EMAIL PROTECTED]> wrote: 

> Opps, sorry, I didn't notice that what Douglas needs is an FTP SSL

client.

>  

> Based on that I think that the ckermit package that comes with SLES9

will 

> help you. We currently use the package to automatically download

files from a 

> FTP/SSL site. It provides lots of scripting capabilities... if you

need some 

> scripts examples just let me know...

 

I don't know if Douglas needs some script samples, but I would like to

see a few small ones, particularly how the SSL/TLS aspect gets invoked

within an FTP session.

 

 

Mark Post

 

--

For LINUX-390 subscribe / signoff / archive access instructions,

send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit

http://www.marist.edu/htbin/wlvindex?LINUX-390

 

 

Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains information that 
may be legally confidential and/or privileged. The information is intended 
solely for the individual or entity named above and access by anyone else is 
unauthorized. If you are not the intended recipient, any disclosure, copying, 
distribution, or use of the contents of this information is prohibited and may 
be unlawful. If you have received this electronic transmission in error, please 
reply immediately to the sender that you have received the message in error and 
delete it from your system.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: Changing password on multiple zLinux servers

2007-10-26 Thread José L . Ramírez
Hi James,

Maybe you can take a look at multixterm 
(http://expect.nist.gov/example/multixterm.man.html). I haven't used it but it 
seems to provide what you are looking for, before using the utility you need to 
install expect and tk.

Regards,

Jose

-Original Message-
From: RPN01 [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 26, 2007 9:28 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Changing password on multiple zLinux servers

Actually, for users across multiple systems, I think LDAP is your friend.
You can restrict users to specific Linux guests, a single password change
effects the user across all the systems, it enforces the uid being the same
across all the systems (important if you use nfs or ftp...) and you have a
single point for account maintenance.

There's some effort in setting it up, but in the end, it will save you
considerable time.

--
   .~.Robert P. Nix Mayo Foundation
   /V\RO-OE-5-55200 First Street SW
  /( )\   507-284-0844  Rochester, MN 55905
  ^^-^^   -
"In theory, theory and practice are the same, but
 in practice, theory and practice are different."




On 10/26/07 8:17 AM, "CHAPLIN, JAMES (CTR)"
<[EMAIL PROTECTED]> wrote:

> Running zLinux as Guests on zVM is fantastic until it comes time to
> reset your password across multiple servers. The guest servers are
> multiply like rabbits. We are a shop new to Linux on the mainframe and
> have a question.
>
> Is there a way to apply without using LDAP, or to issue a series of
> commands like passwd across multiple servers either through SSH or other
> method from a single server. Where should I point my "learning curve" to
> resolve this? I am new to scripting, but how different from REXX can it
> be?
>
> Thanks in advance for any comments and insight
> James Chaplin
> Systems Programmer
> USCBP
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: FTP client : can I download newer files only and skip if already exist on local site?

2007-11-07 Thread José L . Ramírez
Hi,

You can take a look at the ckermit package that is bundle in SLES, it can do 
what you are looking for.

Regards,

Jose

-Original Message-
From: Marco Bosisio [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 06, 2007 9:53 AM
To: LINUX-390@VM.MARIST.EDU
Subject: FTP client : can I download newer files only and skip if already exist 
on local site?

Hi,
from a Linux SLES9X  using  "ftp client" and   i.e.   " mget  *.txt "
all  files  from remote site are downloaded and replaced (with today date)
if already present  too.

My scope is to download  only  the newer  or  not  present  on local site
ans  skip  when  they  already exist.

I need to run ftp download manually and  I cannot use  rsync.

An  useful  tool like FILEZILLA  could be used using VNC session but  I
cannot find one for Linux SUSE SLES9X...

Reading  man ftp   SLES9X  we can find :

preserveToggle preservation of modification times on retrieved files

runique Toggle storing of files on the local system with unique file­
names.  If a file already exists with a name equal to
the
target local filename for a get or mget command, a ".1"
is..



Than FTP setting   "runique"   it rename  the file with a numeric extention
and  "preserve"  do not work as described.

The  FTP server could be WIN o UNIX...


Thanks in advance.

Cordiali saluti  / Best regards

Marco Bosisio
--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: ftp to zOS ignores LF

2008-05-08 Thread José L . Ramírez
Hi,

We had a similar situation, the correct syntax for the sbdataconn is:

quote site sbdataconn=.tcpxlbin

Regards,

jose

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of Fargusson.Alan
Sent: Tuesday, May 06, 2008 11:33 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: ftp to zOS ignores LF

We ran into this (and a couple of other things).  We fixed it by putting 
SBDATACON (IBM-1047,ISO8859-1) in SYS1.TCPPARMS(FTPDATA).  Your dataset name 
might be different.  It can be specified in the start proc.

I think you can specify SBDATACON in a site command, so you could test and see 
if it fixes your problem.  I don't remember the exact syntax, however a site 
help should show the syntax.

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] Behalf Of
Bernard Wu
Sent: Tuesday, May 06, 2008 5:05 AM
To: LINUX-390@VM.MARIST.EDU
Subject: ftp to zOS ignores LF


Hi List,
I am trying to ftp a plain txt file to zOS.
If I use the WARP option, the whole file is transfered as one continusous
string.
If I don't use the WARP option, the file is transfered as a continuous
string but it also gets truncated ( determined by blksize ).
Either way, it looks like ftp is not handling the linux LF properly.  It
ends up as a x'25' on the zOS platform.

Has anyone encountered this before ?







The information contained in this e-mail message is intended only for
the personal and confidential use of the recipient(s) named above. This
message may be an attorney-client communication and/or work product and
as such is privileged and confidential. If the reader of this message
is not the intended recipient or an agent responsible for delivering it
to the intended recipient, you are hereby notified that you have
received this document in error and that any review, dissemination,
distribution, or copying of this message is strictly prohibited. If you
have received this communication in error, please notify us immediately
by e-mail, and delete the original message.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

__

CONFIDENTIALITY NOTICE: This email from the State of California is for the sole 
use of the intended recipient and may contain confidential and privileged 
information.  Any unauthorized review or use, including disclosure or 
distribution, is prohibited.  If you are not the intended recipient, please 
contact the sender and destroy all copies of this email.  

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: z/Linux access to z/OS DASD

2008-05-19 Thread José L . Ramírez
In this link there is a driver that allows zLinux to access zOS data --> 
http://www.mvsdasd.org/index.html. 

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of McKown, John
Sent: Monday, May 19, 2008 1:25 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: z/Linux access to z/OS DASD

> -Original Message-
> From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On 
> Behalf Of Alan Ackerman
> Sent: Monday, May 19, 2008 12:09 PM
> To: LINUX-390@VM.MARIST.EDU
> Subject: z/Linux access to z/OS DASD
> 
> One of my managers told me that since you could make both ECKD (FICON)
> and SCSI (FCP) connections to the same IBM Storage subsystem, z/Linux
> should be able to read z/OS data off the z/OS volumes, without any
> special formatting by z/OS. I asked IBM and they said it couldn't be
> done - z/Linux cannot read z/OS data and vice-versa.
> 
> Is this correct?

No. 

z/OS cannot read Linux DASD if the DASD is "Open Systems" connected.
However, if it is ECKD, then z/OS could theoritically read it. However,
you'd need to implement the filesystem driver code on z/OS. This could
be "user space" code that actually does EXCP processing (or XDAP) or one
of the more advanced I/O methods. Come to think of it, BDAM might even
work. But remember that if the filesystem is read-write to some Linux
system at the time, the DASD may be "fuzzy" and not contain the actual
data as would be seen by a Linux program. This is due to the aggressive
caching done by Linux. Forget any read-write sharing. There be dragons
there. And blown filesystems, too.

There is a driver that runs on Linux which can read z/OS legacy
datasets, but not z/OS UNIX files. Interpreting the data is your
problem, not the I/O driver's! But I don't remember much about it. I
think that it is READ-ONLY.

Personal opinion time, doning Security Admin hat: There is NO way that I
would allow a Linux system to directly access my z/OS datasets. Why? No
ability to audit. No ability to restrict access and prove that access
was restricted to authorized users (thinking of HIPAA data).

Now, I __might__ consider it if only a very few z/OS volumes were even
accessable from the Linux system and I could assure myself that the
datasets on those volumes never contained any confidential information
that might require auditing.

> 
> If so, what would it take to make z/Linux able to read z/OS data
> directly?  New drivers?  A new file system?  How hard would this be to
> write?
> 
> I am aware that you can access z/OS data from z/Linux (or any Linux)
> over the network via one of:
> 
> *   NFS mount
> *   Samba mount
> *   Co:Z Co-Processing Toolkit
> 
> That's not what I am looking for here.  Our objective is to lower z/OS
> MIPS by moving workload to z/Linux.  A network "mount" would certainly
> cost some z/OS MIPS.  Moving workload to z/Linux without moving data
> would save money because IFLs cost less than standard engines and the
> software cost of Linux is lower than that of z/OS.
> 
> Alan Ackerman

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it.  

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: FTPS with SSL/TLS and Clear Command Channel

2008-06-13 Thread José L . Ramírez
Hi,

What distribution you are using?  We have SLES9 on zLinux running pure-ftpd and 
have it configured for only SSL/TLS connections.

Regards,

Jose

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of Fred Schmidt
Sent: Friday, June 13, 2008 2:29 AM
To: LINUX-390@VM.MARIST.EDU
Subject: FTPS with SSL/TLS and Clear Command Channel

Gidday,



We're looking to implement FTPS with certificates and SSL/TLS. We've tried
z/OS but it would appear that the server refuses to process Clear Command
Channel commands. So now we're looking for alternatives such as under z/VM
or z/Linux.

It seems that many FTPS servers under Linux are RFC 4217 compliant.

RFC 4217 (at http://tools.ietf.org/html/rfc4217#page-25) states...

15.3.  Issues with the CCC Command


   Using the CCC command can create security issues.  For a full
   description, see the "CLEAR COMMAND CHANNEL (CCC)" section of
   [RFC-2228].  Clients should not assume that a server will allow the
   CCC command to be processed.

   Server implementations may wish to refuse to process the CCC command
   on a session that has not passed through some form of client
   authentication (e.g., TLS client auth or FTP USER/PASS).  This can
   prevent anonymous clients from repeatedly requesting AUTH TLS
   followed by CCC to tie up resources on the server.

Can anyone advise whether there are packages available for z/Linux that
will allow CCC to be used, eg vsftpd?  We are SUSE SLES 10.1, if that
matters.

Regards,
Fred Schmidt
Department of Corporate and Information Services (DCIS)
Data Centre Services (DCS)
Northern Territory Government, Australia

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: New to zLinux... Backup solutions...

2008-07-17 Thread José L . Ramírez
What backup software you use for zOS backups? What we are currently doing is 
running weekly backups of Linux DASD from zOS using FDR. This works fine but 
you don't have the capability of doing file level restores, just the whole DASD.

Recently we defined a new virtual guest that is acting as an Amanda Master 
Server, Amanda is an Open Source backup utility which is part of basically all 
major distributions and is very well documented. After you have configured the 
server you just install the Amanda client on each guest you want to backup.

Regards, 

Jose

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of Brian O'Mahony
Sent: Thursday, July 17, 2008 11:08 AM
To: LINUX-390@VM.MARIST.EDU
Subject: New to zLinux... Backup solutions...

We have installed a single zLinux VM on our s390 here.

I want to take a backup of this system in case something drastic happens (ie 
the developers/testers break it).

The zOS sys admin has informed me he has taken a copy of the system. However as 
he is also new to zVM, he is unsure of the restore process.

Normally for our linux/UNIX servers we use backup applications, or in some 
cases use dd.

What is the suggested solution for the actual zLinux OS. Is there anything we 
should be wary about? Does it have to be restored to the same disks etc.

Any help or pointers would be great.

Thanks

B


The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee. Access to this email by anyone else
is unauthorized. If you are not the intended recipient, any disclosure,
copying, distribution or any action taken or omitted to be taken in reliance
on it, is prohibited and may be unlawful. If you are not the intended
addressee please contact the sender and dispose of this e-mail. Thank you.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: NFS on the Mainframe

2006-06-21 Thread José L . Ramírez
Hi Sipho,

Not sure what you are trying to accomplish, but assuming you want to run an NFS 
server under zOS and access the HFS filesystem from a Linux client running as a 
zVM guest, you will need the mvslogin RPM package so you can authenticate 
against RACF. In our shop we have be using this approach for several months and 
its works very good.

Regards,

-Jose

-Original Message-
From: Sibeko, Sipho S [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 21, 2006 3:46 AM
To: LINUX-390@VM.MARIST.EDU
Subject: NFS on the Mainframe

 
Hi List,

I have been task to implement the NFS and I have it in one of our test
box. It's currently up and running both the server and the client and
now I'm stacked in going forward. I know what NFS does but I'm
struggling to logon to it. Do I need a separate client installed in my
workstation in order to transfer the files between my workstation and
the mainframe? Please help off what client software can I use to
accomplish my experiment.

Thanks in advance.

Sipho
__

Standard Bank Disclaimer and Confidentiality Note

This e-mail, its attachments and any rights attaching hereto are, unless the 
context clearly indicates otherwise, the property of Standard Bank Group Limited
and/or its subsidiaries ("the Group"). It is confidential, private and intended 
for the addressee only. Should you not be the addressee and receive this e-mail 
by
mistake, kindly notify the sender, and delete this e-mail, immediately and do 
not disclose or use same in any manner whatsoever. Views and opinions
expressed in this e-mail are those of the sender unless clearly stated as those 
of the Group. The Group accepts no liability whatsoever for any loss or
damages whatsoever and howsoever incurred, or suffered, resulting, or arising, 
from the use of this email or its attachments. The Group does not warrant the 
integrity
of this e-mail nor that it is free of errors, viruses, interception or 
interference. Licensed divisions of the Standard Bank Group are authorised 
financial services providers
in terms of the Financial Advisory and Intermediary Services Act, No 37 of 2002 
(FAIS).
For information about the Standard Bank Group Limited visit our website 
http://www.standardbank.co.za
___

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: NFS on the Mainframe

2006-06-21 Thread José L . Ramírez
I did some testing with SFU and I won't use it for a production environment...

-Jose

-Original Message-
From: Mark Perry [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 21, 2006 10:52 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: NFS on the Mainframe

Eric Chevalier wrote:
> Actually, that's not completely true; there's at least one free NFS
> client for Windows: Microsoft's "Services For Unix" ("SFU") package:
>
>
> http://www.microsoft.com/technet/interopmigration/unix/sfu/default.mspx
>
> This free download for Windows 2000/XP includes both an NFS client
> *and* and server.
That looks very promising, anyone had any experience of  SFU?

Mark

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Secure FTP Server

2006-06-21 Thread José L . Ramírez
Hi Charlie,

We had basically the same situation; we ended using zOS as our corporate FTP 
server. That way we can use RACF to authenticate users and for external users 
it looks like just another UNIX server. The zOS FTP server has everything you 
need to provide SSL/TLS capabilities. 

In our case we receive many encrypted files (ej. PGP) directly to zOS and then 
using the zOS NFS server a zVM Linux guest performs decryption of the files 
using GnuPG.

Regards,

-Jose
 
-Original Message-
From: Charlie Crochet [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 21, 2006 10:23 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Secure FTP Server

Due to size restrictions that will soon be placed on email attachments, we are 
looking for a secure FTP server that runs on zLInux that will allow us to 
exchange large files.  The "product" should not require the outside user to 
have a "product" client.

We have looked at and like the features of Tumbleweed's SecureTransport but 
their literature states that in the Linux world only Redhat is supported. 

We run z/VM 5.2 and Suse Sles 9 SP3.  Comments on what other sites are using 
would be greatly appreciated.

Thanks,
Charlie Crochet
State of Wyoming

 

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: NFS on the Mainframe

2006-06-22 Thread José L . Ramírez
Hi Sipho,

Maybe you can clarify what you mean by saying that the "NFS server and client 
running in one LPAR( i.e. same LPAR)". Is that Lpar running under zOS, or Linux 
as a vm guest?

The zOS NFS client is capable of accessing any NFS server, no matter where that 
server resides, it may be the MVS NFS server, UNIX flavors (AIX, LINUX, 
Solaris, etc.). You may like to take a look at the z/OS Network File System 
User's Guide.

Regards,

-Jose

-Original Message-
From: Sibeko, Sipho S [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 22, 2006 3:13 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: NFS on the Mainframe

I've NFS server and client running in one LPAR( i.e. same LPAR). What I'm 
trying to understand is it possible for one to access the NFS sever on 
mainframe using the client mainframe that runs in the same LPAR as the server. 
If it's not possible, must I install the client in the different platform like 
in windows machine or LINUX.

Thanks

Sipho

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of José L. Ramírez
Sent: 21 June 2006 14:48
To: LINUX-390@VM.MARIST.EDU
Subject: Re: NFS on the Mainframe

Hi Sipho,

Not sure what you are trying to accomplish, but assuming you want to run an NFS 
server under zOS and access the HFS filesystem from a Linux client running as a 
zVM guest, you will need the mvslogin RPM package so you can authenticate 
against RACF. In our shop we have be using this approach for several months and 
its works very good.

Regards,

-Jose

-Original Message-
From: Sibeko, Sipho S [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 21, 2006 3:46 AM
To: LINUX-390@VM.MARIST.EDU
Subject: NFS on the Mainframe

 
Hi List,

I have been task to implement the NFS and I have it in one of our test box. 
It's currently up and running both the server and the client and now I'm 
stacked in going forward. I know what NFS does but I'm struggling to logon to 
it. Do I need a separate client installed in my workstation in order to 
transfer the files between my workstation and the mainframe? Please help off 
what client software can I use to accomplish my experiment.

Thanks in advance.

Sipho
__

Standard Bank Disclaimer and Confidentiality Note

This e-mail, its attachments and any rights attaching hereto are, unless the 
context clearly indicates otherwise, the property of Standard Bank Group 
Limited and/or its subsidiaries ("the Group"). It is confidential, private and 
intended for the addressee only. Should you not be the addressee and receive 
this e-mail by mistake, kindly notify the sender, and delete this e-mail, 
immediately and do not disclose or use same in any manner whatsoever. Views and 
opinions expressed in this e-mail are those of the sender unless clearly stated 
as those of the Group. The Group accepts no liability whatsoever for any loss 
or damages whatsoever and howsoever incurred, or suffered, resulting, or 
arising, from the use of this email or its attachments. The Group does not 
warrant the integrity of this e-mail nor that it is free of errors, viruses, 
interception or interference. Licensed divisions of the Standard Bank Group are 
authorised financial services providers in terms of the Financial Advisory and 
Intermediary Services Act, No 37 of 2002 (FAIS).
For information about the Standard Bank Group Limited visit our website 
http://www.standardbank.co.za 
___

--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
[EMAIL PROTECTED] with the message: INFO LINUX-390 or visit 
http://www.marist.edu/htbin/wlvindex?LINUX-390


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains information that 
may be legally confidential and/or privileged. The information is intended 
solely for the individual or entity named above and access by anyone else is 
unauthorized. If you are not the intended recipient, any disclosure, copying, 
distribution, or use of the contents of this information is prohibited and may 
be unlawful. If you have received this electronic transmission in error, please 
reply immediately to the sender that you have received the message in error and 
delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
[EMAIL PROTECTED] with the message: INFO LINUX-390 o

MVSLOGIN for x86 Linux

2006-07-07 Thread José L . Ramírez
Good evening,

 

I think a similar question has been posted on the past, but what I'm looking is 
to see if anybody has been able to create a binary of the mvslogin program on a 
x86 Linux using the sources provided by IBM on zOS. Our company will be doing 
the annual disaster recovery plan very soon and we will like to do some tests 
with a SUSE 9 linux guest that is currently running under zVM, but at the 
recovery site we will not have zVM, instead we will get an x86. The mvslogin 
program is crucial for us because in our production environment the zVM guests 
access data from zOS using the zOS NFS server.  Any feedback is really 
appreciated.

 

Regards,

 

Jose

 

José L. Ramírez, zServer Systems Programmer

(787) 277-1496 / [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 

 




-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: MVSLOGIN for x86 Linux

2006-07-07 Thread José L . Ramírez
Thanks, I know that recovering a Linux/390 system on an Intel platform is a 
little bit strange, but it's going to be just a test of a very simple server.

Regards,

Jose

-Original Message-
From: Post, Mark K [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 07, 2006 12:49 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: MVSLOGIN for x86 Linux

I've built it several times in the past, but not recently.  It worked for me.

I have to say that I find it mind-boggling that anyone thinks recovering a 
Linux/390 system to an Intel box is going to work very well.


Mark Post 

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of José L. Ramírez
Sent: Friday, July 07, 2006 12:45 PM
To: LINUX-390@VM.MARIST.EDU
Subject: MVSLOGIN for x86 Linux

Good evening,

 

I think a similar question has been posted on the past, but what I'm looking is 
to see if anybody has been able to create a binary of the mvslogin program on a 
x86 Linux using the sources provided by IBM on zOS. Our company will be doing 
the annual disaster recovery plan very soon and we will like to do some tests 
with a SUSE 9 linux guest that is currently running under zVM, but at the 
recovery site we will not have zVM, instead we will get an x86. The mvslogin 
program is crucial for us because in our production environment the zVM guests 
access data from zOS using the zOS NFS server.  Any feedback is really 
appreciated.

 

Regards,

 

Jose

 

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: MVSLOGIN for x86 Linux

2006-07-07 Thread José L . Ramírez
Hi,

The server we intend to recover is used to encrypt/decrypt data, basically it 
uses GPG. Initially this server was running on an Intel box but to access the 
data on zOS we used Samba instead of NFS. 

We need to access the zOS server in order to access some application data on 
HFS.

Thanks.

-Original Message-
From: Adam Thornton [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 07, 2006 1:20 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: MVSLOGIN for x86 Linux

On Jul 7, 2006, at 10:10 AM, Post, Mark K wrote:

> More than "a little strange."  It simply won't work at all.
>

Well, it depends on what they mean by "recovering."

If you already have the x86 equivalent of the app environment set up,
and all you're recovering is your data (or, possibly, some byte-
compiled applications--I mean, isn't that the promise of Java?
"Write once, crash anywhere") then, yeah, it could work.

Or, if you were really studly and had some way to recover your DASD
into Herc-compatible CKD files, then you could run your Linux guest
under Hercules (not likely, though, since you most likely have QDIO
devices coupled to a guest LAN or a Vswitch and Herc doesn't do QDIO
natively yet) on an x86 box.  Or Flex/ES plus a FlexCub would let you
do this directly, although in that case I'd argue that you aren't
*really* recovering to x86, you're recovering to s390/zSeries in a
funny-looking box.

However, yeah, the naive approach is certainly doomed.

Adam

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Reading a z/OS flat file from Linux?

2006-10-04 Thread José L . Ramírez
Hi,

You can configure the NFS server under zOS, then you can install this RPM on 
your linux guest (http://www.sinenomine.net/vm/mvslogin) and you should be able 
to connect...  We have several linux servers setup this way and it works very 
good...

Regards,

Jose

-Original Message-
From: Lee Stewart [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 04, 2006 3:49 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Reading a z/OS flat file from Linux?

Hi all...

 From Linux on z, can I read a z/OS flat file (DSORG=PS) on a pack where
I have read access to that DASD volume?

What about multiple extents across multiple volumes?  (It's a 50gig file.)

Thanks,
Lee
--

Lee Stewart, Senior SE
Sirius Enterprise Systems Group
Phone: (303) 798-2954
Fax: (720) 228-2321
[EMAIL PROTECTED]
www.siriuscom.com

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


No Communication Between Guests after aplying SUSE 9 SP3

2006-10-09 Thread José L . Ramírez
Hi,

 

We have been running SUSE 9 (no service pack) under zVM 4.4 for several months. 
Recently we added two more guests with SP3 installed, for some reason the SP3 
guests can't "see" the older servers and also there is no communication between 
the two SP3 servers. Both SP3 servers are able to "see" the whole internal 
network plus they have connection to the Internet. Any ideas???

 

Thanks in advance...

 

Regards,

 

José L. Ramírez, zServer Systems Programmer

(787) 277-1496 / [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 

 




-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: No Communication Between Guests after aplying SUSE 9 SP3

2006-10-10 Thread José L . Ramírez
Hi,

Thanks, as soon as I can I will shutdown and logoff the virtual machine. 
Anyway, I just reported the problem to Novell to see if they can find something.

Thanks... Regards, Jose.

-Original Message-
From: Scully, William P [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 10, 2006 10:19 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: No Communication Between Guests after aplying SUSE 9 SP3

We have reported a similar problem where a Linux server -will- ping a peer on 
the same Virtual Switch until such time as the Linux server shuts down and 
reboots.  After the reboot a Linux server can -no longer- ping another Linux 
server on the same Virtual Switch.  Odd.  But very repeatable.  The 
circumvention is to shutdown Linux, log the virtual machine off, log back onto 
VM, then reboot Linux.  

In other words, a virtual machine reIPL leaves to servers unable to speak to 
each other, although they can speak to the outside world.

I am suspicious of VM63895.  IBM suspects a difference in the VLAN tagging of 
the frames.  I wonder why a reIPL vs. a logoff/logon should matter, with regard 
to VLAN tagging.  But I readily admit that this is an area of TCP/IP where I 
have limited skills.  (PMR 57324 may be of interest to any IBMers.)

Hope this helps! 

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of José L. Ramírez
Sent: Monday, October 09, 2006 10:36 PM
To: LINUX-390@VM.MARIST.EDU
Subject: No Communication Between Guests after aplying SUSE 9 SP3

Hi,

 

We have been running SUSE 9 (no service pack) under zVM 4.4 for several months. 
Recently we added two more guests with SP3 installed, for some reason the SP3 
guests can't "see" the older servers and also there is no communication between 
the two SP3 servers. Both SP3 servers are able to "see" the whole internal 
network plus they have connection to the Internet. Any ideas???

 

Thanks in advance...

 

Regards,

 

José L. Ramírez, zServer Systems Programmer

(787) 277-1496 / [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 

 




-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains information that 
may be legally confidential and/or privileged. The information is intended 
solely for the individual or entity named above and access by anyone else is 
unauthorized. If you are not the intended recipient, any disclosure, copying, 
distribution, or use of the contents of this information is prohibited and may 
be unlawful. If you have received this electronic transmission in error, please 
reply immediately to the sender that you have received the message in error and 
delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
[EMAIL PROTECTED] with the message: INFO LINUX-390 or visit 
http://www.marist.edu/htbin/wlvindex?LINUX-390

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: help needed, can not ping itself during ipl

2006-10-18 Thread José L . Ramírez
Hi inci,

How Linux is running, Lpar mode or under zVM?

What hardware do you have? z/890? z/990? There is a known bug within the OSA 
card and one of the symptoms is that during installation the gateway address 
can't get pinged, check your OSA microcode level. See page 92 of this RedBook 
for more details: http://www.redbooks.ibm.com/abstracts/sg246695.html 

Regards,

Jose

-Original Message-
From: inci yeker selkan [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 18, 2006 6:10 AM
To: LINUX-390@VM.MARIST.EDU
Subject: help needed, can not ping itself during ipl

I am  still struggling on my first linux ipl from tape. Fortunately I could 
show my OSA card to linux 390 today.  
But still I have network problems.  During the network setup portion of the 
linux/390 ipl, linux  can not ping  its own ip address(gets unknown host), can 
not ping  the gateway ip address(gets unknown host),  pings the DNS server ip 
address and gets a proper reply.  But since it cannot successfully ping the 3 
addresses , network setup stops. 
It says,  I cannot ping all the required interfaces, correct the problem and 
stops. 

Then, a few seconds later,  I send the ping command to linux on the hmc 
console, it pings all the 3 addresses successfully.   Did anybody have this 
problem?  What should I do?

I have the ip address of linux placed in the lan dns server, still  have 
problem.
Thanks.
inci

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: pgp vs gpg

2006-11-09 Thread José L . Ramírez
Hi,

We have been using GPG for several years and we haven't had any issue of 
compatibility, first we start using gpg on RedHat Intel and now we are running 
gpg under zLinux (SUSE).

There are commercial products that runs under zOS that are compatible with PGP 
(Megacryption and Mcafee).

Regards,

Jose

-Original Message-
From: Rich Smrcina [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 08, 2006 6:18 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: pgp vs gpg

For PGP check out Patrick Townsend Associates.  They had a vendor
spotlight in the last issue of the zJournal.

Tom Duerbusch wrote:
> We are now looking at sending some bank data to Bank of America over the
> public Internet.
>
> BOA supports pgp.
> We have gpg, after all, it's free.
>
> My position is, "well, let's try it".
> But it is getting bogged down with technical people that are not
> technical in this area.
>
> My belief is gpg is, perhaps a couple years behind pgp as far as
> features go.  Unless we need the newer/better features, we can stay with
> gpg.  Of course, if one of the sites requires xxx bit encription, and if
> gpg doesn't support that, well, we may end up buying a copy of pgp.
>
> 1.  What other differences, that would make a difference, is there
> between pgp and gpg?
> 2.  If we needed pgp, we would only need 1 license.  Is there a vender
> of pgp for zLinux and what might be the cost of such product?
>
> Tom Duerbusch
> THD Consulting
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
>

--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com

Catch the WAVV!  http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Tomcat startup question

2007-02-05 Thread José L . Ramírez
Hi,

Did you check the tomcat logs? In SLES9 go to /var/log/tomcat.

Also check YAST/System/Runlevel Editor and be sure tomcat is enabled.

--Jose

-Original Message-
From: Spann, Elizebeth (Betsie) [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 05, 2007 1:22 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Tomcat startup question

Hi,

Sometimes tomcat does not start up after the system is booted.   SuSE
SLES 9

Linux scmlxlrf 2.6.5-7.244-s390x #1 SMP Mon Dec 12 18:32:25 UTC 2005
s390x s390x s390x GNU/Linux

 

The file the S13tomcat symlink (/etc/init.d/tomcat) points to is
different (date and size) than the startup.sh file in
/usr/share/tomcat/bin.

I manually create the /etc/rc.d/rc3.d  symlink to point to
/usr/share/tomcat/bin/startup.sh.   After a start failure, I check the
symlink and it's changed.  There is limited access to this server but
all three of us have root.   No one admits to changing it.   

 

Can running chkconfig delete and recreate the symlink?   Has anyone else
had this problem?

 

Betsie Spann


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: DST question

2007-02-08 Thread José L . Ramírez
Hi,

You should be able to find if the patch has been applied thru 
YAST/Software/Online Update, then filter by installable patches.

Regards,

Jose

-Original Message-
From: Luis La Torre [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 08, 2007 5:53 PM
To: LINUX-390@VM.MARIST.EDU
Subject: DST question

How do I check whether patch-10738 has been applied to our SLES-9 z/VM
Linux.

Regards,

Luis  F.   La Torre
Database Administrator
BAX Global Inc.
440 Exchange,  Irvine  Ca  92602
Phone: 714-442-7441
[EMAIL PROTECTED]


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Pure-ftpd & Firewall

2007-02-23 Thread José L . Ramírez
Hi,

 

We are trying to "open" a pure-ftpd server with SSL support (SLES9) so that 
external customers can transfer files to us in a secure manner. Internally 
everything is working fine; we are able to connect to the server using an SSL 
FTP client (Filezilla). The problem is with external connections, after the 
client accepts the certificate and authentication takes places, the connection 
is "broken", this happens with both active and passive mode. We are specifying 
the parameter PassivePortRange in the pure-ftpd.conf file and we also opened 
the port range specified in the PassivePortRange in the firewall. Does someone 
have been able to successfully implement something like this?

 

Thanks.

 

José L. Ramírez, zServer Systems Programmer

[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 

 




-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Pure-ftpd & Firewall

2007-02-23 Thread José L . Ramírez
Hi,

Yes, everything seems to work fine until a LIST command is issued from the 
client...

Thanks.

-Original Message-
From: Alan Altmark [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 23, 2007 4:12 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Pure-ftpd & Firewall

On Friday, 02/23/2007 at 03:57 AST, José L. Ramírez <[EMAIL PROTECTED]> 
wrote:
 
> We are trying to "open" a pure-ftpd server with SSL support (SLES9) so 
that 
> external customers can transfer files to us in a secure manner. 
Internally 
> everything is working fine; we are able to connect to the server using 
an SSL 
> FTP client (Filezilla). The problem is with external connections, after 
the 
> client accepts the certificate and authentication takes places, the 
connection 
> is "broken", this happens with both active and passive mode. We are 
specifying 
> the parameter PassivePortRange in the pure-ftpd.conf file and we also 
opened 
> the port range specified in the PassivePortRange in the firewall. Does 
someone 
> have been able to successfully implement something like this?

Has the client opened the necessary holes in their firewall as well?  The 
downside of encrypted FTP is that the PORT command can't be seen by 
stateful firewalls.  Hence the need for PassivePortRange.

As a guess, everything works until a DIR, NLST, GET, or PUT is issued? 
I.e. HELP and SYST work ok after sign-in?

Alan Altmark
z/VM Development
IBM Endicott

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Pure-ftpd & Firewall

2007-02-23 Thread José L . Ramírez
Definitively my problem isn't iptables cause I'm not using it on the ftp 
server, the firewall is on another box (Checkpoint).

-Original Message-
From: Mark Post [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 23, 2007 4:51 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Pure-ftpd & Firewall

>>> On Fri, Feb 23, 2007 at  3:31 PM, in message
<[EMAIL PROTECTED]>, "Peter Webb,
Toronto Transit Commission" <[EMAIL PROTECTED]> wrote: 
> Under CentOS 4.4 (and presumably RedHat 4.4), to get vsftpd to work you must 
> go into /etc/sysconfig/iptables-config and change IPTABLES_MODULES="" to 
> IPTABLES_MODULES="ip_conntrack_ftp" then enter /etc/init.d/iptables 
> condrestart.

I don't know if this happens automagically on SLES or not, but something 
similar has to be done on _any_ Linux system running iptables.  If you aren't 
running a firewall on your system, then of course it's not necessary to do 
this.  I.e., if the only firewalls involved are _external_ to your Linux system.


Mark Post

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Shell Script with FTP

2007-03-06 Thread José L . Ramírez
Hi,

Check the ckermit program, it has many scripting features... go to 
http://www.columbia.edu/kermit/ckututor.html

Regards,

Jose

-Original Message-
From: Tracy, David [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 06, 2007 11:46 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Shell Script with FTP

Hello,

Does anyone have a copy of a Shell Script with some FTP commands in
it that they can share?

FTP from UNIX to VM/CMS ID.

Thanks in advance 

Dave 

 


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Unable to ping from 1 guest

2007-03-13 Thread José L . Ramírez
Hi,

What version of zVM are you running? What is the maintenance level? Which Linux 
distribution are you running?

I had a similar situation in the past with a VSWITCH, basically I applied all 
the maintenance to zVM and also upgrade SLES9 to SLES9 SP3, after that no more 
problems...

Regards,

Jose

-Original Message-
From: Roach, Dennis [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 12, 2007 11:54 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Unable to ping from 1 guest

I have a configuration of z/VM  with a vswitch. There are 2 Linux guests 
(linux1 and linux2)
I can ping from VM to linux1 and linux2
I can ping from linux1 to VM and linux2
I can ping from linux2 to VM
I cannot ping from linux2 to linux1

Linux2 is running NFS, linux1 is not.
I have tried with linux2 not running NFS and had the same results.

Any ideas?

Dennis Roach
United Space Alliance
600 Gemini Avenue
Mail Code USH-4A3L
Houston, Texas 77058
Voice:   (281) 282-2975
Page:(713) 736-8275
Fax: (281) 282-3583
E-Mail:  [EMAIL PROTECTED]

All opinions expressed by me are mine and may not agree with my employer or any 
person, company, or thing, living or dead, on or near this or any other
planet, moon, asteroid, or other spatial object, natural or manufactured, since 
the beginning of time.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Sles9 network installation using SMB

2007-03-13 Thread José L . Ramírez
Hi,

SMB is an installation option but is not the recommended one; do you have an 
available Linux workstation/server available? NFS installation on a Linux box 
is easy, especially if you follow the instructions on the z/VM and Linux on IBM 
System z: The Virtualization Cookbook for SLES9 redbook.

Regards,

Jose

-Original Message-
From: Caleb C Ong [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 13, 2007 5:14 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Sles9 network installation using SMB

Hi,

I am trying to install sles9 on a z9 processor. I am doing a network
installation. my installation source file are in my win/xp pc.
Here is what i did.

1) Run the install.bat from the sles9 CD1  /dosutils/install/install.bat.
2) This created the directory structure and copied the files to my
harddrive

suseinstall
suseinstall/sles9/CD1
suseinstall/core9/CD1
suseinstall/core9/CD2
suseinstall/core9/CD3
suseinstall/core9/CD4
suseinstall/core9/CD5

3) I created sharename in winxp

share name:

suseinstall
sles9CD1
core9CD2
core9CD3
core9CD4
core9CD5
sp3CD1
sp3CD2
sp3CD3

4) updated the instorder and order file from the /suseinstall/yast
directory

my instorder looks like this:

/sles9/CD1
/core9/CD1
/core9/CD2
/core9/CD3
/core9/CD4
/core9/CD5
/sp3/CD1
/sp3/CD2
/sp3/CD3

my order file looks like this

/sles9/CD1 smb://winuser:[EMAIL PROTECTED]/sles9CD1
/core9/CD1 smb://winuser:[EMAIL PROTECTED]/core9CD1
/core9/CD2 smb://winuser:[EMAIL PROTECTED]/core9CD2
/core9/CD3 smb://winuser:[EMAIL PROTECTED]/core9CD3
/core9/CD4 smb://winuser:[EMAIL PROTECTED]/core9CD4
/core9/CD5 smb://winuser:[EMAIL PROTECTED]/core9CD5
/sp3/CD1 smb://winuser:[EMAIL PROTECTED]/sp3CD1
/sp3/CD2 smb://winuser:[EMAIL PROTECTED]/sp3CD2
/sp3/CD3 smb://winuser:[EMAIL PROTECTED]/sp3CD3

i boot up from cdrom, configure the network. when i am prompted for the
installation directory, i put 'suseinstall'
Then i enter userid and password and then start yast.
When i run YAST, after the disk configuration , i keep getting the
following error under "SOFTWARE":

Cannot read package data from installation media. Media error ?
error : No proposal

Can anyone tell me how to isolate this further ? Does this mean i have a
corrupted CD  (one of the them is corrupted) ?

I tried just putting the sles9/CD1 and core9/CD1 on the instorder and order
file. but i still get the same message.

TIA

Caleb






--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Backup & Restore

2007-03-29 Thread José L . Ramírez
Hi,

If you have zOS you can use the zOS NFS Server to be the backup of your linux 
guests, you mention that there are already backup procedure for traditional MVS.

-Jose

-Original Message-
From: KEETON Dave * OR SDC [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 28, 2007 7:51 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Backup & Restore

Not to sound coy, but I want the best of both worlds.  ;-)

Primarily I need a DR solution; mainly to be able to bring the system
back from a disaster in under a week. There are already DR processes in
place for other systems on the mainframe(s), such as MVS, CICS, etc. I
am behind on z/VM in that regard. I took Steve Frazier's suggestion to
heart and started reading up on DDR. I've backed up z/VM with DDR in the
past, but I have yet to try it with the DASD used by the Linux guests.
Given what I already know about using DDR with the system volumes, I'm
sure I could stumble through it. What I hoped to do is get some sort of
automated backup established for both DR and application data. I've sent
inquires to our VAR for information on BrightStor VM:Backup and IBM's
Backup and Restore for z/VM. We'll take a look at both of those products
and see what fits. My biggest interest was leveraging our VTS. I can
easily walk out on the raised floor and swap tapes, or perhaps have an
operator take care of it, but automation has so much appeal.  :-)

To answer a couple of questions already posed to me in this thread:

1. Yes, I am interested in learning more about the free front-ends for
DDR that have been written by folks on this list.

2. I didn't post to the VM list because I felt that cross-posting might
have been frowned upon...

3. Dennis asked if I was going to take the guests offline while doing a
backup. Yes, that was my plan. I have one day a week when there's no
workload on any of the guests, so I can take advantage of that in the
short term.

My sincere thanks to everyone that's responded to my questions.

Dave

-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of
Thomas Kern
Sent: Wednesday, March 28, 2007 4:31 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Backup & Restore

Are you looking for Disaster Recovery backups of z/VM and Linux DASD? Or
are
you looking for file level backup/restore for these systems? 

For DR purposes, DDR or other programs can dump/restore all of your DASD
to VTS
tapes. Mounting the VTS tapes requires DFSMS/RM and is enhanced by tape
management products (VM:Tape from CA, Tape Manager from IBM), but it can
be
done from scratch (not nicely yet). 

For file level restores, there is no one program that can help you. For
z/VM,
you can buy products (VM:Backup from CA, Backup/Restore Manager from
IBM) or
code your own around the CMS TAPE or VMFPLC2 commands. Again DFSMS/RM
talks to
the VTS and a tape management program helps. For the linux files, you
need a
linux program like Amanda or Bacula, both of which are free and can
write to
the VTS drives. You still need DFSMS/RM and an interface program from
Sine
Nomine (http://www.sinenomine.net). 

My bosses have not purchased any products to help backup/restore any
level of
z/VM or Linux data so I can sympathize with situation.

/Tom Kern
/301-903-2211


 
--- KEETON Dave * OR SDC <[EMAIL PROTECTED]> wrote:

> I'm trying to gather my options for backing up z/VM 5.2 & SLES 9 & 10
> guests to an IBM TotalStorage VTS. So far I've been able to deduce
that
> DFSMS/VM is required, though I'm still unclear as to whether or not
it's
> included with z/VM 5.2. There seem to be quite a selection of
commercial
> products available for VM & Linux, so the choices seem overwhelming.
I'm
> not sure which ones will fit my needs and which are overkill.
> 
> Can any one point me to some resources (How-tos, redbooks and the
like)
> for someone who doesn't have years of experience in the mainframe
world?
> I've been responsible for a z/VM system for about a year, having taken
> over for someone else when they left the organization. I've had some
> training, but my real strength is in the Linux arena. What I want to
be
> able to do backups and restores of VM & all my Linux guests to the
> virtual tape system. Is this something that can be accomplished using
> OSS at free or low cost? Has anyone been down this road that can share
> their experience and wisdom?
> 
> Many thanks,
> 
> Dave Keeton
> Linux Systems Administrator
> Enterprise Systems Group
> Oregon State Data Center
> (503) 373-0832
> 
> 
> 
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to [EMAIL PROTECTED] with the message: INFO LINUX-390
or
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> 



 


8:00? 8:25? 8:40? Find a flick in no time 
with the Yahoo! Search movie showtime shortcut.
http://tools.search.yahoo.com/shortcu

Re: How do you configure your WAS servers?

2007-03-30 Thread José L . Ramírez
Hi,

We have one guest running WAS, this is how my USER.DIRECT looks:

USER LINUX009  1536M 1536M G  
 INCLUDE LINDFLT 
 OPTION QUICKDSP 
 IUCV ANY
 IUCV ALLOW  
 LINK MAINT 0190 0190 RR 
 LINK MAINT 019D 019D RR 
 LINK MAINT 019E 019E RR 
 MDISK 191 3390 0401 00100 V2LX01 MR ALL SOME FEW
 MDISK 100 3390 0001 10016 VM500C MR ALL SOME FEW
 MDISK 102 3390 0001 03338 VM3195 MR ALL SOME FEW
 MDISK 103 3390 3339 03338 HT64D4 MR ALL SOME FEW
 MDISK 104 3390 6677 03338 HT64D4 MR ALL SOME FEW

Right now we are running the web server on the same WAS app server... but this 
is going to change because we just recently finished testing two apache servers 
(connected via heartbeat).

Regards,

-Jose

-Original Message-
From: Jon Brock [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 30, 2007 11:09 AM
To: LINUX-390@VM.MARIST.EDU
Subject: How do you configure your WAS servers?

(I am cross-posting this message to the linux-390 and IBMVM lists.)

We are going to be getting into using WebSphere and HATS at my shop.  
We have 1 IFL running VM, with Linux guests.  Most of the configuration 
information I have seen presumes standalone boxes rather than a virtualized 
environment.  I have a couple of questions for those of you who run WAS on 
Linux under z/VM, or at least those of you who are inclined to answer:

Do you run your web server(s) on the same image as your WebSphere app server or 
use a separate image strictly for the web server?

How big do you make your WebSphere images; that is, how much virtual storage do 
you assign in USER DIRECT?  How much swap space do you give them?  

Do you cluster your WAS images?  

Thanks in advance for any information.

Jon

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


[Scanned by McAfee]


-
Scanned by Triple-S
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Re: Increasing Size of DASD for Root Filesystem

2007-04-26 Thread José L . Ramírez
Hi,

The /home directory is also a good candidate to be on a separate filesystem.

Regards,

-Jose

-Original Message-
From: James Melin [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 26, 2007 1:55 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Increasing Size of DASD for Root Filesystem

Well do you have opt, var, tmp and usr broken out into separate file systems 
already? If not, moving those can help without having to re-do your root
device.

there's some nice how-to's on www.linuxvm.org for moving part of a file system 
to a new file system. I've used that extensively




 Judson West <[EMAIL PROTECTED]>
 Sent by: Linux on 390 Port
   
   To
 
LINUX-390@VM.MARIST.EDU

   cc
 04/26/2007 11:35 AM

  Subject
 Increasing 
Size of DASD for Root Filesystem
Please respond to
   Linux on 390 Port 








I have a SLES9X system with a root filesystem that has filled up the DASD
it resides on. What can I do to get more space for the root filesystem?

-
Judson West
Teradata, a division of NCR Corporation

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


SAMBA & Active Directory

2007-04-26 Thread José L . Ramírez
Hi,

 

I'm in the process of building a file server using SAMBA but will like to use 
our current Windows Active Directory for authentication purposes. Where can I 
find more information on how to accomplish this task? We are running SLES9 SP3.

 

Thanks.

 

José L. Ramírez, zServer Systems Programmer

(787) 277-1496 / [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 

 



Scanned by Triple-S SCM1


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


Re: Article for z/Journal

2007-05-03 Thread José L . Ramírez
Hi,
 
I have been working with mainframes for about 12 years (I'm 32)... I started as 
an application programmer and the moved to system programming about 8 years 
ago...
 
What I'm seeing is something similar to what Ruddy described. In my company we 
are running all the core systems on the mainframe but a decision has been 
already taken and now everything is going to be migrated to a .NET MS 
environment. What runs on a singe z890 will require at least 50 Intel servers 
and counting... 
 
For the last three years I have working directly with zVM and zLinux and we 
have been able to show management some of the benefits of an environment like 
this, but as Ruddy said, MS has a great marketing team... we even tried to 
start using Open Office on the desktop but as soon as MS saw the move they 
"convince" management to continue using MS Office.
 
Part of the problem is that people still think the mainframe is a BIG machine 
with green terminals... we have done an "experiment" here in the data center in 
which we ask people to identify the mainframe in the server room, almost nobody 
is able to identify the z890 and some people believe the mainframe is the air 
conditioner unit...

Let's hope that IBM can "revive" the mainframe so that it can continue to be 
the best server in the data center...

-Jose

-Original Message-
From: Melancon, Ruddy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 03, 2007 11:18 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Article for z/Journal

I am a graying mainframer.  I worked for IBM for 28 years as a hardware
servicer, marketing system engineer, and a mainframe contract employee.


I am concerned that three universities in my area were deeply involved
in mainframe systems education in the past but now focus only on
Microsoft products.  There is no effort in this area to educate students
on mainframes and their potential.

I currently work for a state agency that provides data processing
services to other state agencies (similar to a service bureau).
Although the core applications (finance, welfare, labor) are still
housed on the mainframe, there is a concerted effort by the CIO to move
all applications to a client/server/web environment.  To him this means
everything will run on an Intel platform with a Microsoft operating
system.

Everyone in my work section is 40 years old and up.  We recently had
five employees leave. One passed away, three retired and one reassign to
another area (help desk).  Only two people have been recruited to
replace these employees.  The replacements have been mainframers from
other agencies.  These agencies have been moving to Intel servers for
all new applications.

Microsoft has done a great job in marketing their products as the future
of data processing.  They did this by capturing the education of future
programmers and data processing employees in the universities.

The personal computer has helped by enabling everyone to think he is a
computer expert if he can load and run software on his own machine.  The
bulk of the people in the data processing industry have little or no
contact or exposure to the mainframe.  They have no concept of the
potential of a single mainframe processor.  Their concept is to run each
application on a separate server regardless of the interactions of the
numerous applications in each and every organization.  Whatever happened
to having a single source of data so that the data is in sync, up to
date and accurate?

Some of this has been caused by the cost of mainframe software and the
time required developing applications.  In today world this is no longer
the case.  We have desktop development tools for mainframe applications.
We can even develop web applications that are more reliable and faster
than their Microsoft counterparts.  CICS, IMS, and DB2 are still great
application environments.  Today's application developer just is unaware
of their potential and versatility.

Thanks for the opportunity to vent my frustrations.


Ruddy A. Melancon
IT System Specialist - ISD
State of Alabama
Suite 102
64 North Union Street
Montgomery, AL  36130
Office 334.353.7275
Fax 334.240.3177
 
When the only tool you have is a hammer, every problem begins to
resemble a nail.
-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of
Gabe Goldberg
Sent: Thursday, May 03, 2007 9:22 AM
To: LINUX-390@VM.MARIST.EDU
Subject: Article for z/Journal

I'm doing an article for Bob Thomas' z/Journal
 about next-generation mainframers, industry
and educational outreach initiatives for students and young
professionals, opportunities and obstacles for people exploring this
career area, etc.  is interesting if
you've not seen it.

A long-time and common topic on these lists (and I've cross-posted this
note to several) is the graying of mainframers and how there is or will
be a shortage of people to use/support/enhance big iron.

I'm interested in what you're seeing -- in industry

Re: Apache2

2007-05-03 Thread José L . Ramírez
Hi,

There are many books/howto's on this topic..., I personally recently bought 
"Pro Apache, Third Edition" (check amazon.com) and although I haven't finished 
it yet it looks like a very good resource.

-Jose

-Original Message-
From: Rich Smrcina [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 03, 2007 2:24 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Apache2

Start with apache.org or tldp.org.  If you actually want paper, oreilly.com.

Stephen Frazier wrote:
> I need to learn how to set up Apache2. Is there a good book or class on
> the topic?
>
> --
> Stephen Frazier
> Information Technology Unit
> Oklahoma Department of Corrections
> 3400 Martin Luther King
> Oklahoma City, Ok, 73111-4298
> Tel.: (405) 425-2549
> Fax: (405) 425-2554
> Pager: (405) 690-1828
> email:  stevef%doc.state.ok.us
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
>

--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com

Catch the WAVV!  http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


Re: FTPS (FTP over SSL) Package for SLES9

2007-05-16 Thread José L . Ramírez
Hi,

Along with vsftpd, SLES9 also comes with the pure-ftpd server which supports  
TLS/SSL.

Regars,

-Jose

-Original Message-
From: Jay Ableidinger [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 5:34 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: FTPS (FTP over SSL) Package for SLES9

Long story short, we're looking for an FTP server that will compile on SLES9 on 
the S/390. The server needs to support FTP over SSL so we can do some 
performance comparisons with an FTPS product that we are testing on VSE.

While we could test it easily on a Windows box, I don't consider that a valid 
comparison. I'd rather perform comparison on the same hardware platform.

Terry Spaulding <[EMAIL PROTECTED]> wrote: Jay, is your need to have a secured 
FTP with SSL for encryption or specific
to FTPS with SSL ?
If SSL is the issue you can setup your ssh logon to be SSL and the sftp
will then be encrypted.

As Mark pointed out I believe vsftpd is supposed to support FTPS.
Not sure if vsftpd has provided the full data encryption yet.
You may want to check out WS_FTP Pro I think it supports  FTPS with SSL but
is a fee based solution. They do have a trial period.


Jay replied:
>SFTP is SSH File Transfer Protocol. I am looking for FTPS (FTP over SSH).
Completely different animals. I have a very specific need >for FTPS and
SFTP will not suffice.
>
>Terry Spaulding  wrote: You can use sftp which works
very well. Command mode, native, and free.
>
>I have also used a GUI package on WIN/XP called WinSCP3. It is free on the
>internet and uses sftp. Nice point/click/drag between Win/XP and Linux
>zSeries or between Linux zSeries and another Linux zSeries using the
Win/XP
>as a go between.


Regards,
Terry L. Spaulding
[EMAIL PROTECTED]

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390



"If you don't know where you are going, any road will take you there." 
Lewis Carroll
"If you don't know where you are, a map won't help" Unknown
   
-
Boardwalk for $500? In 2007? Ha! 
Play Monopoly Here and Now (it's updated for today's economy) at Yahoo! Games.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM2



Scanned by Triple-S SCM1


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


Re: Wiki

2007-05-16 Thread José L . Ramírez
Hi,

We are running Mambo (www.mamboserver.com) on zLinux in our internal network, 
it's basically an Open Source CMS (similar so MS Share Point) and it has a wiki 
module.

Regards,

-Jose

-Original Message-
From: Stephen Frazier [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 5:30 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Wiki

I am considering using Wiki to organize and make available some of the IT 
documentation that is
spread all over my shop. After looking I fount that there are several Wiki 
engines available. Which
one is the best?  Is that like asking which editor is the best?

MediaWiki will run on Debian-390. Is anyone running a Wiki on a mainframe? Is 
that a good place to
run one?

--
Stephen Frazier
Information Technology Unit
Oklahoma Department of Corrections
3400 Martin Luther King
Oklahoma City, Ok, 73111-4298
Tel.: (405) 425-2549
Fax: (405) 425-2554
Pager: (405) 690-1828
email:  stevef%doc.state.ok.us

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


Re: Printer help

2007-06-01 Thread José L . Ramírez
What's the output if you issue the lpq command?

-Original Message-
From: Adam Thornton [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 01, 2007 1:24 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Printer help

On Jun 1, 2007, at 11:10 AM, Jones, Russell wrote:

> I have a network printer that I have installed through the cups web/
> gui
> interface. I am able to print a test page from the gui but I am not
> able
> to print from the command line. This is what I get:
>
> [EMAIL PROTECTED]:~# lpr test.print
> Status Information, attempt 1 of 3:
> sending job '[EMAIL PROTECTED]' to [EMAIL PROTECTED]
>  connecting to 'localhost', attempt 1
>  cannot open connection to localhost - No such file or directory
> Make sure the remote host supports the LPD protocol
>
> Any suggestions?

Do you have CUPS set up to do lpd emulation on port 515 (I think)?

If not, well, you can't print because nothing's listening to the lpd
port.  Cups by default uses IPP, which is 631, I think.

Adam

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM2



Scanned by Triple-S SCM2


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


Re: Printer help

2007-06-01 Thread José L . Ramírez
Hi,

Well, I have worked very little with lpr but just recently connected an SLES9 
Linux guest to a new Xerox network printer via lpr, this is what I did:

1. Thru YAST/hardware/printers
2. Configure LPD-Style Network Server
3. Enter the hostname & remote queue name
4. Enter Name (ex. test)

Then from the command line --> lpr -P name-of-printer document-to-be-printed 
(ex. lpr -P test yourfile.pdf)

Hope this helps...

Regards,

-Jose

-Original Message-
From: Jones, Russell [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 01, 2007 3:33 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Printer help

I think that you are right about not having the lpd emulation set up. I
found a How-To for setting up the cups-lpd helper server, but I have not
gotten it to work.

I tried starting it by "/usr/lib/cups/daemon/cups-lpd start", and the
process would hang and have to be killed. I also tried putting it in
inetd by adding " printer stream  tcp nowait lp
/usr/lib/cup/daemon/cups-lpd" to /etc/inetd.conf. inetd seemed to
restart okay, but I am still unable to do a lpr print and I am not sure
if cups-lpd is actually running. 

Is there another approach that I should try?

Russ



-Original Message-
From: Linux on 390 Port [mailto:[EMAIL PROTECTED] On Behalf Of
Adam Thornton
Sent: Friday, June 01, 2007 12:24 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Printer help

On Jun 1, 2007, at 11:10 AM, Jones, Russell wrote:

> I have a network printer that I have installed through the cups web/
> gui
> interface. I am able to print a test page from the gui but I am not
> able
> to print from the command line. This is what I get:
>
> [EMAIL PROTECTED]:~# lpr test.print
> Status Information, attempt 1 of 3:
> sending job '[EMAIL PROTECTED]' to [EMAIL PROTECTED]
>  connecting to 'localhost', attempt 1
>  cannot open connection to localhost - No such file or directory
> Make sure the remote host supports the LPD protocol
>
> Any suggestions?

Do you have CUPS set up to do lpd emulation on port 515 (I think)?

If not, well, you can't print because nothing's listening to the lpd
port.  Cups by default uses IPP, which is 631, I think.

Adam

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or
visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM2


-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.


Re: IOCDS for Redhat

2007-08-20 Thread José L . Ramírez
Hi,

You will also need your OSA cards and maybe some tape addresses. Are you going 
to be using native Lpar or zVM?

Regards,

-Jose

-Original Message-
From: Bauer, Bobby (NIH/CIT) [E] [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 20, 2007 1:14 PM
To: LINUX-390@VM.MARIST.EDU
Subject: IOCDS for Redhat

I just came back from Share and we would like to try to bring up Linux
on an lpar on our z9. I was told to remove all of the dasd except what
Linux would be using. What else should or should not be included in this
IOCDS? Anything else that might prove helpful?

We plan to try this with CentOS-5.


Bobby Bauer
Center for Information Technology
National Institutes of Health
Bethesda, MD 20892-5628
301-594-7474

 

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: IOCDS for Redhat

2007-08-20 Thread José L . Ramírez
zVM is definitively the way to go, our experience in zVM was none and still we 
were able to install/configure zVM without major problems. If your are still 
going to use CentOS instead of RedHat or SUSE you may want to take a look at 
the following RedBook, it's oriented to RedHat so it should also apply to 
CentOS. The first chapters talk about zVM installation:  
http://linuxvm.org/Present/misc/virt-cookbook-RH5.pdf.

Regards,

-Jose

-Original Message-
From: David Boyes [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 20, 2007 1:37 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: IOCDS for Redhat

> *) I've been trying to that VM "trial" for several weeks. IBM has not
> been helpful. If I ever get it, I'll have to learn VM but that's OK
with
> me.

I've forwarded your note to a couple IBMers who should be able to crack
something loose for you. If not, they'll find out why. 

Also, there's probably some one around DC who'll spare you a morning to
get you started on your VM install and ops. It's really one page; not
much to know, and remember, the first taste is free...8-) 

VM is addictive; one look and you'll wonder why you ever put up with
LPARs...8-)
 

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390


Scanned by McAfee SCM1



Scanned by Triple-S SCM1

-
*Attention*
This electronic message, including any attachments, contains
information that may be legally confidential and/or privileged. The
information is intended solely for the individual or entity named
above and access by anyone else is unauthorized. If you are not the
intended recipient, any disclosure, copying, distribution, or use
of the contents of this information is prohibited and may be
unlawful. If you have received this electronic transmission in
error, please reply immediately to the sender that you have
received the message in error and delete it from your system.

Re: Linux Network problem using VSWITCH

2007-08-20 Thread José L . Ramírez
Hi,

In the past I had a similar problem but don't really remember if I was still on 
zVM 4.4 or zVM 5.2. The problem was fixed after applying the latest maintenance 
to zVM.

Regards,

-Jose

-Original Message-
From: Hans Rempel [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 20, 2007 4:13 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Linux Network problem using VSWITCH

I have a default VSWITCH defined and connected to my OSA express card. z/VM 5.2.

The following userids are coupled to the VSWITCH. Q vswitch detail output at
end of note.

TCPIP (142.214.154.50)
LINUX02 (142.214.154.42) (SLES10)
SLES10 (142.214.154.51) (SLES10)
LINUX04 (142.214.154.44) (SELS10)
LINWAS (142.214.154.45) (SLES9) 

Gateway IP is 142.214.154.1 
Mask is 255.255.255.128

From LINUX04 I can ping TCPIP but not LINUX02 or SLES10 
From TCPIP I can ping all Linux systems
From LAN (142.214.195.65-different subnet) I can ping all. 
Problem: I can not ping from any of the linux guest to any other. 
My route on linux is a follows:
route
Kernel IP routing table
Destination Gateway Genmask Flags Metric RefUse Iface
142.214.154.0   *   255.255.255.128 U 0  00 eth0
link-local  *   255.255.0.0 U 0  00 eth0
loopback*   255.0.0.0   U 0  00 lo
default 142.214.154.1   0.0.0.0 UG0  00
eth0LinuxSLES10Controller:~ #
My IFCONFIG is
ifconfig
eth0  Link encap:Ethernet  HWaddr 02:00:00:00:00:02
  inet addr:142.214.154.51  Bcast:142.214.154.127  Mask:255.255.255.128

  inet6 addr: fe80::200:0:600:2/64 Scope:Link
  UP BROADCAST RUNNING MULTICAST  MTU:1492  Metric:1
  RX packets:3239 errors:0 dropped:0 overruns:0 frame:0
  TX packets:2816 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:1000
  RX bytes:724403 (707.4 Kb)  TX bytes:572241 (558.8 Kb)
loLink encap:Local Loopback
  inet addr:127.0.0.1  Mask:255.0.0.0
  inet6 addr: ::1/128 Scope:Host
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:328 errors:0 dropped:0 overruns:0 frame:0
  TX packets:328 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0
  RX bytes:47792 (46.6 Kb)  TX bytes:47792 (46.6 Kb)
I can't see why this shouldn't work 

Now here's the scary part: I changed the routes file on LINUX02 to 

Default 142.214.154.1 255.255.255.128

and recycled the network card. I was then able to ping LINUX04 and I think it
worked because it went out to the gateway. I was not able to ping LINUX02 from
a different subnet on the LAN so I changed back the route default to 0.0.0.0. 
By doing this both LINUX04 and LINUX02 can ping each other but I still cannot
ping SLES10. Did VSWITCH record/map the IP address to the MAC address or
something? Do I need a fix?

Any comments/suggested are greatly appreciated.

Thanks Hans Rempel

q vswitch detail
VSWITCH SYSTEM OSALIN1  Type: VSWITCH Connected: 5Maxconn: INFINITE
  PERSISTENT  RESTRICTEDNONROUTER Accounting: OFF
  VLAN Unaware
  State: Ready
  IPTimeout: 5 QueueStorage: 8
  Portname: OSATCP2RDEV: 8003 Controller: DTCVSW2  VDEV:  8003
VSWITCH Connection:
  RX Packets: 52009  Discarded: 0  Errors: 0
  TX Packets: 48246  Discarded: 0  Errors: 0
  RX Bytes: 8621914  TX Bytes: 9918226
  Device: 8003  Unit: 000   Role: DATA
Adapter Owner: LINUX02  NIC: EB00  Name: dontcare
  RX Packets: 2838   Discarded: 0  Errors: 0
  TX Packets: 2430   Discarded: 0  Errors: 0
  RX Bytes: 752172   TX Bytes: 319193
  Device: EB02  Unit: 002   Role: DATA
  Options: Broadcast Multicast IPv6 IPv4 VLAN
Unicast IP Addresses:
  142.214.154.42   MAC: 02-00-00-00-00-03
  FE80::200:0:100:3MAC: 02-00-00-00-00-03 Local
Multicast IP Addresses:
  FF02::1  MAC: 33-33-00-00-00-01
  FF02::1:FF00:3   MAC: 33-33-FF-00-00-03 Local
Adapter Owner: LINUX04  NIC: EB00  Name: dontcare
  RX Packets: 7918   Discarded: 0  Errors: 0
  TX Packets: 6329   Discarded: 0  Errors: 0
  RX Bytes: 2453281  TX Bytes: 2020475
  Device: EB02  Unit: 002   Role: DATA
  Options: Broadcast Multicast IPv6 IPv4 VLAN
Unicast IP Addresses:
  142.214.154.44   MAC: 02-00-00-00-00-04
  FE80::200:0:100:4MAC: 02-00-00-00-00-04 Local
Multicast IP Addresses:
  FF02::1  MAC: 33-33-00-00-00-01
  FF02::1:FF00:4   MAC: 33-33-FF-00-00-04 Local
Adapter Owner: LINWAS   NIC: EB00  Name: suselin7
  RX Packets: 88 Discarded: 0  Errors: 0
  TX Packets: 174Discarded: 0  Errors: 0
  RX Bytes: 6971 TX Bytes: 9448
  De