- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Anyone one else using SSH Tectia on HP-UX 11.3...
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
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
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
08-10-2011 11:02 AM
08-10-2011 11:02 AM
Anyone one else using SSH Tectia on HP-UX 11.31?
Before anyone yells at me I have to support CAC logins therefore Tectia. Also I'm not allowed to use remsh on the network.
I'm setting up one of my machines as an Ignite Server and I'm having an issue when I try to "Add New Client for Recovery" using ssh.
Tectia does not understand the -oBatchMode and the process fails.
sshg3: The `-oBatchMode=yes` option is not supported."
Does anyone know a way around this?
- Tags:
- ssh2 & ignite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2011 04:14 AM
08-11-2011 04:14 AM
Re: Anyone one else using SSH Tectia on HP-UX 11.31?
The "sshg3" in the error message suggests that the plain "ssh" command may be a symlink or a wrapper of some sort, that executes the actual binary named "sshg3". (We're not using SSH Tectia currently, but I seem to recall that some old versions of Tectia SSH at least used to do this.)
Ignite-UX certainly calls the SSH client with "ssh <some options>".
You could replace the symlink with a custom script that silently removes the offending option from the command line, but passes the rest of the command line as-is. If -oBatchMode=yes is the first option on the command line issued by Ignite, it might be as simple as:
#!/bin/sh if [ "$1" = "-oBatchMode=yes" ]; then shift fi exec /where/ever/sshg3 "$@"
If the offending option is not the first one, trickier processing may be required.