约 221 字 预计阅读 2 分钟
autossh
autossh安装
ssh反向隧道脚本
1
2
3
4
5
6
7
8
|
root@aaa:/opt/ssh_manager# cat autossh.sh
#!/bin/bash
autossh -M 7000 \
-o "ServerAliveInterval 60" \
-o "ServerAliveCountMax 3" \
-N -R 8000:127.0.0.1:22 \
root@internet-ip -p 22 \
-i /root/.ssh/id_rsa
|
1
|
ssh root@internet-ip -p 8000
|
配置开机自启动
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Ubuntu
# 配置文件地址
# /etc/systemd/system/remote-autossh.service
[Unit]
Description=AutoSSH service for remote tunnel
After=network-online.target
[Service]
User=root
ExecStart=/opt/autossh.sh
[Install]
WantedBy=multi-user.target
|
启动服务
1
2
3
|
systemctl daemon-reload
systemctl enable remote-autossh
systemctl start remote-autossh
|
查看服务状态
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
root@test:/opt/ssh_manager# systemctl status remote-autossh
● remote-autossh.service - AutoSSH service for remote tunnel
Loaded: loaded (/etc/systemd/system/remote-autossh.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2025-01-04 14:38:52 CST; 1min 0s ago
Main PID: 23567 (autossh.sh)
Tasks: 3 (limit: 2225)
Memory: 720.0K
CGroup: /system.slice/remote-autossh.service
├─23567 /bin/bash /opt/ssh_manager/autossh.sh
├─23568 /usr/lib/autossh/autossh -M 7000 -o ServerAliveInterval 60 -o ServerAliveCountMax 3 -N -R 8000:127.0.0.1:22 root@192.168.3.71 -p 22 -i /root/.ssh/id_rsa
└─23571 /usr/bin/ssh -L 7000:127.0.0.1:7000 -R 7000:127.0.0.1:7778 -o ServerAliveInterval 60 -o ServerAliveCountMax 3 -N -R 8000:127.0.0.1:22 -p 22 -i /root/.ssh/id_rsa root@192.168.3.71
Jan 04 14:38:52 test systemd[1]: Started AutoSSH service for remote tunnel.
Jan 04 14:38:52 test autossh[23568]: starting ssh (count 1)
Jan 04 14:38:52 test autossh[23568]: ssh child pid is 23571
|