我正在开发一个需要使用SSH集成的iPhone应用程序。我有可以使用密码连接服务器的演示,但我无法获得如何使用公钥连接它。
我可以使用以下命令通过MAC终端连接它。
ssh -i(KeyFilePath)username @(domainname or IP)
但遗憾的是,我无法使用Xcode进行连接。
谢谢,
答案 0 :(得分:1)
您可能需要考虑首先将私钥(或密钥)添加到身份验证代理。从那时起,所有ssh命令都将重用缓存的密钥:
# Add a new key to the authentication agent
$ ssh-add <path to private key>
# List current keys
$ ssh-add -l
# Delete all loaded keys
$ ssh-add -D
# Add a new key and store the passphrase in your keychain
$ ssh-add -K <path to private key1>
$ ssh-add -K <path to private key2>
# After storing the private keys passphrase in the keychain,
# you can load them all, at any time
$ ssh-add -k
当身份验证代理加载了私钥时,您应该能够使用Xcode连接到(域名或IP)而没有任何问题。