SynoCli Network Tools provides essential command-line networking utilities.
| Property |
Value |
| Package Name |
synocli-net |
| License |
Various (GPL, BSD) |
| Tool |
Description |
| screen |
Terminal multiplexer |
| tmux |
Modern terminal multiplexer |
| socat |
Multipurpose relay |
| nmap |
Network scanner |
| arp-scan |
ARP network scanner |
| mtr |
Network diagnostic tool |
| links |
Text-mode web browser |
| rsync |
Fast file copying |
| xxhsum |
xxHash checksum utility |
| autossh |
Automatic SSH reconnection |
| openssh |
SSH client and server tools |
| sftp |
Secure file transfer |
| scp |
Secure copy |
| etherwake |
Wake-on-LAN utility |
| telnet |
Telnet client |
| whois |
Domain lookup |
| sshfs |
Mount filesystems over SSH |
| IMAPFilter |
IMAP mail filtering |
Installation
- Install SynoCli Network Tools from Package Center
- Tools are added to system PATH
- Use via SSH terminal
Usage Examples
tmux - Terminal Multiplexer
# Start new session
tmux new -s mysession
# Detach: Ctrl-b d
# Reattach
tmux attach -t mysession
# List sessions
tmux ls
nmap - Network Scanner
# Scan local network
nmap -sn 192.168.1.0/24
# Scan specific host
nmap -A 192.168.1.100
rsync - File Synchronization
# Sync local folders
rsync -avz /source/ /destination/
# Sync to remote
rsync -avz /local/path/ user@remote:/path/
mtr - Network Diagnostics
# Trace route with statistics
mtr google.com
sshfs - Mount Remote Filesystem
# Mount remote directory
sshfs user@remote:/path /local/mountpoint
# Unmount
fusermount -u /local/mountpoint