Remote shell through nats written by rust. The use scenarios include iot device with no fixed ip, home computer behind local network, etc. with remote shell installed on slave machine, you can access from host like normal ssh process.
nats-server --user test --pass test
``` SLAVEID= yourid
TRANS=pass
PASS_URL = http://192.168.177.1:8084
NATSURL = localhost NATSACCOUNT = username NATS_PWD= password ``` SLAVEID is id for slave, the slave only response for request which specified by 'use' command.
When TRANS=nats, SLAVEID field is only needed for slave side. NATS_URL is nats host,and the account,password is auth method provided by nats-io. When TRANS=pass,SLAVEID should not conflict with topics in pass msg queue,better use uuid as SLAVEID or any string you can sure will not duplicate.
To use remote shell, 2 kinds of binary are needed to be build, the salve and the host. Step 3 is for slave side.
To use remote shell, 2 kinds of binary are needed to be build, the salve and the host. Step 4 is for host side.
First specify slave id by "use
The remoteshell use color scheme might result in errors on win10 cmd or powershell. But test is passed when use cmder instead.
The buildin function include:
This command will specify the slave you want to control.You should run step3 on slave pc and config the slave id in the .env file. This salve_id (use arg) should be same with id in the .env file.
example: use remote
If true,the shell should demo result immediately.If false,the order is sent async and wait no result, you should consider false when run damon application or forever loop programme.
example: wait true/false
Send local file to remote.
example: send C://test.txt /home/test.txt
Receive file from remote.
example: rec C://test1.txt /home/test2.txt
Send local directory and all sub-dirs,sub-files to remote. Command send_all is the combinations of command send. If suffix given, the file with given suffix will be sent,otherwise all files will be sent. However, NATS message queue limit default transfer size 1m, any file transfer beyond size will fail.
example: sendall C://test /home/test example: sendall C://test /home/test py;html;js
Will restart remote computer.This command is sent by async message pub channel and act as the final rescue when shell crash. Pay attention to restart remote_shell automatically after system reboot.
example: restart