Upload files to "/"

This commit is contained in:
2026-05-11 11:33:26 +00:00
parent 88ce6dd934
commit e5e9e05c63
2 changed files with 41 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#!/bin/bash
# NETWORK TEST
clear
echo "==============================="
echo "TESTING NETWORK CONNECTION..."
echo "==============================="
echo "_______________________________"
echo "CHECKING IP ADDRESS..."
echo "IP ADDRESS:"
curl ifconfig.me; echo
echo "-------------------------------"
echo "_______________________________"
echo "TESTING CLOUDFLARE DNS..."
ping -c 3 1.1.1.1
echo "-------------------------------"
echo "_______________________________"
echo "TESTING GOOGLE DNS..."
ping -c 3 8.8.8.8
echo "-------------------------------"
echo "_______________________________"
echo "TESTING QUAD9 DNS..."
ping -c 3 9.9.9.9
echo "-------------------------------"
echo "_______________________________"
echo "TESTING NETWORK SPEED..."
speedtest-cli
echo "-------------------------------"
echo "DONE."
echo "==============================="