Skip to main content

Create Connection

Creates a new SFTP session

Function CreateConnection(Val SSHSettings, Val Proxy = "") Export

ParameterCLI optionTypeRequiredDescription
SSHSettings-Structure Of KeyAndValueConnection settings structure
Proxy-Structure Of KeyAndValueProxy settings structure, if necessary

Returns: Arbitrary, Map of KeyAndValue - Create Connection


tip

Get the connection configuration using the functions GetSettingsLoginPassword, GetSettingsPrivateKey, GetSettingsViaAgent

caution

NOCLI: this method is not available in CLI version


1C:Enterprise/OneScript code example
    Host = "172.33.0.13";
Port = "2222";

UseProxy = True;
ProxySettings = Undefined;
AuthorizationType = "By login and password";

If AuthorizationType = "By login and password" Then

Login = "bayselonarrend";
Password = "12we...";

SFTPSettings = OPI_SFTP.GetSettingsLoginPassword(Host, Port, Login, Password);

ElsIf AuthorizationType = "By key" Then

Login = "bayselonarrend";
PrivateKey = "./ssh_key";
PublicKey = "./ssh_key.pub";

SFTPSettings = OPI_SFTP.GetSettingsPrivateKey(Host, Port, Login, PrivateKey, PublicKey);

Else

Login = "bayselonarrend";
SFTPSettings = OPI_SFTP.GetSettingsViaAgent(Host, Port, Login);

EndIf;

If UseProxy Then

ProxyType = "http"; // http, socks5, socks4

ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";

ProxySettings = OPI_SFTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);

EndIf;

Result = OPI_SFTP.CreateConnection(SFTPSettings, ProxySettings);
Result
"AddIn.OPI_SSH.Main"