ip | | ip addr show |
ifconfig | | ifconfig eth0 up |
ping | | ping -c 4 google.com |
traceroute | | traceroute google.com |
netstat | | netstat -tulnp |
ss | | ss -tuln |
nslookup | | nslookup google.com |
dig | | dig google.com ANY |
host | | host google.com |
telnet | | telnet 192.168.1.1 80 |
nc | | nc -zv google.com 80 |
curl | | curl -O https://example.com/file.zip |
wget | | wget https://example.com/file.zip |
scp | | scp file.txt user@remote:/home/user/ |
rsync | | rsync -avz source/ dest/ |
ssh | | ssh user@192.168.1.100 |
sftp | | sftp user@remote |
ftp | | ftp 192.168.1.100 |
route | | route -n |
iptables | | iptables -L -n |
ufw | | ufw allow 22/tcp |