Added specific interface binding

This commit is contained in:
Ryan Michela 2014-08-03 13:20:00 -07:00
parent f9a3ddec43
commit be9c53bf6f
4 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,7 @@
<groupId>com.ryanmichela</groupId> <groupId>com.ryanmichela</groupId>
<artifactId>SSHD</artifactId> <artifactId>SSHD</artifactId>
<version>1.1</version> <version>1.1.1</version>
<url>http://dev.bukkit.org/server-mods/sshd/</url> <url>http://dev.bukkit.org/server-mods/sshd/</url>
<!-- Repositories --> <!-- Repositories -->

View File

@ -35,6 +35,8 @@ public class SshdPlugin extends JavaPlugin {
sshd = SshServer.setUpDefaultServer(); sshd = SshServer.setUpDefaultServer();
sshd.setPort(getConfig().getInt("port", 22)); sshd.setPort(getConfig().getInt("port", 22));
String host = getConfig().getString("host", "");
sshd.setHost(host == "" ? null : host);
File hostKey = new File(getDataFolder(), "hostkey"); File hostKey = new File(getDataFolder(), "hostkey");
File authorizedKeys = new File(getDataFolder(), "authorized_keys"); File authorizedKeys = new File(getDataFolder(), "authorized_keys");

View File

@ -1,4 +1,6 @@
# This is the port the SSH server will listen on. # The interface the SSH server will listen on. Leave blank for all interfaces.
host:
# The port the SSH server will listen on.
port: 22 port: 22
# By default, only public key authentication is enabled. This is the most secure mode. # By default, only public key authentication is enabled. This is the most secure mode.

View File

@ -1,4 +1,4 @@
name: SSHD name: SSHD
version: "1.1" version: "1.1.1"
author: Ryan Michela author: Ryan Michela
main: com.ryanmichela.sshd.SshdPlugin main: com.ryanmichela.sshd.SshdPlugin