Back to product page
- Introduction
- Overview
- License Agrement
- Getting Started
- Objects
- Enumerations
- wodSSH
- Methods
- Properties
- AllocatePty
- Authentication
- Blocking
- ClientName
- Columns
- Command
- Compression
- DataOut
- DataReady
- Encoding
- Encryption
- EncryptionList
- ErrorText
- ExitSignal
- ExitStatus
- FIPS
- ForwardHost
- ForwardPort
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeyForward
- KeySignatureList
- LastError
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- PrivateKey
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- Rows
- ShowStdErrorMessages
- State
- StateText
- StripANSI
- StripNull
- Subsystem
- TerminalSpeed
- TerminalType
- Timeout
- UseIPv6
- Version
- Events
- IwodSSHNotify
- How to get support?
- Technical information
- Fast notifications interface
- Error list
RemoteIdentification property
Holds the remote identification string.
Type
A String value. Identification string provided by the server.Syntax
- Basic
object.RemoteIdentification
The RemoteIdentification(object) syntax has these parts:
The RemoteIdentification(object) syntax has these parts:
object | An expression evaluating to an object of type wodSSH. |
Remarks
Once an initial connection is established with the server, the SSH protocol specifies that both parties should exchange version information. This information includes server/client type, and version supported. Typically this would be something like:SSH-1.99-OpenSSH_2.9p2
which means that the server does support SSH protocol versions SSH1 and SSH2, and server type if OpenSSH_2.9p2. Other values can apply here too. The important thing is the first part of the string,
SSH-1.99
1.99 means that the server supports both SSH1 and SSH2 protocols. If only SSH1 is supported, then the server would reply with SSH-1.5 (usually), and if just SSH2 is supported it would reply with SSH-2.0 (usually).
Reading the RemoteIdentification property does not affect wodSSH's behavior - but helps you to determine the type of remote server.