Files
wiki/mobile/README.md
2025-02-04 00:17:49 +00:00

23 lines
288 B
Markdown

# iOS: iSH shell
```
apk add openssh
/etc/ssh/sshd_config
Port 2222
PermitRootLogin yes
AllowTcpForwarding yes
GatewayPorts yes
killall sshd
/usr/sbin/sshd
```
## Wireguard
## Client
```
ssh -vvv -D 1080 -qCN root@10.0.0.2 -p 2222
ssh -vvv -D '*:1080' -qCN root@10.0.0.2 -p 2222
```