this plugin for spigot creates ssh tunnel between server that contains a service that you will like to link without exposing on the internet
Go to file
mohammed jasem alaajel 1442f37df8 add logs 2022-02-04 15:51:25 +04:00
src/main add logs 2022-02-04 15:51:25 +04:00
.gitignore finish! 2022-01-31 03:34:33 +04:00
README.md minor changes (again) 2022-02-04 09:27:39 +04:00
pom.xml finish! 2022-01-31 03:34:33 +04:00

README.md

How to setup

  • create user in your system using the command provided below

    useradd xrambad --shell=/bin/true

    this will make the user have no shell + sftp and scp access.

  • create ssh key for the user.

  • there will be issue that user can't login to fix this add /bin/true to /etc/shells

  • start your minecraft server with the plugin installed. but you will notice that it will not load the plugins as shown down below.

    [09:16:17 WARN]: [AppleTunneler] no Identities files found, please put them in plugins/AppleTunneler/Identities
    [09:16:17 ERROR]: Error occurred while enabling AppleTunneler v1.0-SNAPSHOT (Is it up to date?)
    
  • place your user that you created private key into plugins/AppleTunneler/Identities folder

  • start server again, but you will be met with another error as shown below

      [09:20:16 ERROR]: [AppleTunneler] FILE at path: /home/test/Desktop/test-server/plugins/AppleTunneler/.known_hosts Does not exists
      [09:20:16 ERROR]: Error occurred while enabling AppleTunneler v1.0-SNAPSHOT (Is it up to date?)
      java.lang.RuntimeException: Known host file does not exists in plugin folder
    

    as you can see the error created path for us which will be easy for us to create the file, now copy the path.

  • run this command to create the host file ssh-keyscan limework.net >> /home/test/Desktop/test-server/plugins/AppleTunneler/.known_hosts

  • now modify the config of the plugins for your needs by setting host, port, username of ssh server and setting tunneling needed.

and done.