Back to product page
- Introduction
- Overview
- License agreement
- Getting Started
- Objects
- Enumerations
- wodSSHD
- Methods
- Properties
- Events
- Connecting
- CryptoInformation
- Disconnected
- LoginGSSAPI
- LoginPassword
- LoginPubkey
- PortBindRequest
- PortForwardConnect
- PortForwardDisconnect
- PortForwardRequest
- Received
- ServiceRequest
- ServiceStart
- SftpDeleteFile
- SftpDownloadFile
- SftpFileTransferData
- SftpListDir
- SftpListDirData
- SftpMakeDir
- SftpProgress
- SftpRemoveDir
- SftpRename
- SftpTransferComplete
- SftpUploadFile
- StateChanged
- IwodSSHDNotify
- Methods
- Connecting
- CryptoInformation
- Disconnected
- LoginGSSAPI
- LoginPassword
- LoginPubkey
- PortBindRequest
- PortForwardConnect
- PortForwardDisconnect
- PortForwardRequest
- Received
- ServiceRequest
- ServiceStart
- SftpDeleteFile
- SftpDownloadFile
- SftpFileTransferData
- SftpListDir
- SftpListDirData
- SftpMakeDir
- SftpProgress
- SftpRemoveDir
- SftpRename
- SftpTransferComplete
- SftpUploadFile
- StateChanged
- Methods
- SSHKeyPair
- SSHUser
- SSHUsers
- How to get support
- Technical information
- Fast notifications
- Error list
BindIP property
Holds IP address used for listening.
Type
A String value. Represents IP address of local interfaceSyntax
- Basic
object.BindIP [= value]
The BindIP(object,value) syntax has these parts:
The BindIP(object,value) syntax has these parts:
object | An expression evaluating to an object of type wodSSHD. |
value | A String value. |
Remarks
When you don't want your SSH server to be publicly accessible (during testing or implementation, for instance) you can make it use only one of your network interfaces. For instance, if you have local network on IP address 192.168.1.1, and one interface is connected to internet with IP 100.101.102.103, you can make only users from your local network access SSH server by settingwodSSHD1.BindIP = "192.168.1.1"
As a result, connections from Internet will be denied (by your OS, not application) and furthermore you will be allowed to run some other SSH server on same port - on different interface.
If you want your server to be accessible only from your computer, set it up like this:
wodSSHD1.BindIP = "127.0.0.1"
To make SSH server bind to all interfaces, just leave this property empty. You can also specify IPv6 addresses when UseIPv6 is set to True.