- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 01:56 AM
тАО06-01-2007 01:56 AM
The VMS online help of SSH is not useful. Is there any VMS manual describes SSH in details?
Most of the SSH examples from google apply to UNIX only and it does not work in OpenVMS.
VMS SSH version is:
archer_kwok$ ssh -v
ARCHER$DKA0:[SYS0.SYSCOMMON.][SYSEXE]TCPIP$SSH_SSH2.EXE: SSH Secure Shell OpenVM
S (V5.5) 3.2.0 on HP rx2600 (1.40GHz/1.5MB) - VMS V8.3
TCP version is:
HP TCP/IP Services for OpenVMS Industry Standard 64 Version V5.6
on an HP rx2600 (1.40GHz/1.5MB) running OpenVMS V8.3
Linux is Ubuntu 7.0.4.
Many thanks in advance for your help.
Barney Kwok
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 02:44 AM
тАО06-01-2007 02:44 AM
Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA64)
(older) system when dealing with a Solaris
system (which should also have case-sensitive
user names):
alp $ ssh "-V"
alp$dka0:[sys0.syscommon.][sysexe]tcpip$ssh_ssh2.exe: SSH Secure Shell OpenVMS (
V5.5) 3.2.0 on COMPAQ Professional Workstation - VMS V7.3-2
I am a bit puzzled by your "ssh -v" report,
however. Around here:
alp $ ssh -v
debug: Ssh2/SSH2.C:1906: CRTL version (SYS$SHARE:DECC$SHR.EXE ident) is V7.3-2-0
3
[...]
which is why I said '"-V"' above. You seem
to have more case confusion than I'd've
expected.
"SHOW SYMBOL SSH*"? (Should be none.)
I don't see any differences with SET PROC /PARSE = TRAD, either, so I doubt that
that's the cause.
Normally, I'd suggest trying it again with a
"-v" option in the "ssh" command, but your
"-v" doesn't seem to have the right case,
either. You could try quoting more things,
but I don't see why this should be needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 02:48 AM
тАО06-01-2007 02:48 AM
Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA64)
names, did you?
SHOW LOGI DECC$*
HELP CRTL Feature_Logical_Names
[...]
o Do not set C RTL feature logical names for the system.
Set them only for the applications that need them,
because other applications including OpenVMS components
depend on the default behavior of these logical names.
[...]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 02:48 AM
тАО06-01-2007 02:48 AM
Solutionto begin with:
Welcome to the VMS Forum!
As you have alredy found out, VMS defaults to uppercasing (nearly) everything.
If you want to preserve case, the the old (and for VMSers easiest) way is to put that string between double quotes:
$ ssh "bkwok"@linuxbox
for someone more used to Unix, perhaps
$ SET PROCES/parse_style=extended
will result in a more used style.
It may have effects on other VMS commands though.
Try them both, and decide for yourself which you prefer.
hth
Proost.
Have one on me.
jpe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 03:15 AM
тАО06-01-2007 03:15 AM
Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA64)
alp $ set proc /pars = exte
alp $ ssh sms@sol
Authentication successful.
[...]
alp $ set proc /pars = trad
alp $ ssh sms@sol
Authentication successful.
[...]
Interestingly:
alp $ ssh SMS@sol
Authentication successful.
[...]
But:
alp $ ssh "SMS@sol"
SMS's password:
SMS's password:
SMS's password:
warning: Authentication failed.
Again, SET PROC /PARS has no effect.
However:
alp $ defi DECC$ARGV_PARSE_STYLE enable
alp $ ssh -v
ALP$DKA0:[SYS0.SYSCOMMON.][SYSEXE]TCPIP$SSH_SSH2.EXE: SSH Secure Shell OpenVMS (
V5.5) 3.2.0 on COMPAQ Professional Workstation - VMS V7.3-2
Note the case change in the program name.
And:
alp $ ssh sms@sol
SMS's password:
SMS's password:
SMS's password:
warning: Authentication failed.
[...]
So, I'm betting on DECC$something rather
than SET PROC /PARS.
Now, quotation will overcome even this:
alp $ ssh "sms@sol"
Authentication successful.
but the _right_ answer is not to define any
DECC$feature logical names when they're not
needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 06:25 AM
тАО06-01-2007 06:25 AM
Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA64)
ssh "bkwok"@linuxbox does the trick.
I can't use "SET PROCESS/PARSE=EXTEND" because it affects an old application. So I stick with double quotes for now.
Cheers,
Barney Kwok
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 06:29 AM
тАО06-01-2007 06:29 AM
Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA64)
ssh "bkwok"@linuxbox
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-01-2007 06:38 AM
тАО06-01-2007 06:38 AM
Re: SSH login to Ubuntu Linux from OpenVMS 8.3 (IA64)
And, as has been shown, it wouldn't help.
SHOW LOGI DECC$*
I'm still betting that that's the real
problem.