Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
ifupdown /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
bridge
364
B
-rw-r--r--
2021-09-14 13:27
check-mac-address.sh
397
B
-rw-r--r--
2022-12-09 20:37
generate-interfaces.pl
4.02
KB
-rw-r--r--
2021-09-14 13:27
get-mac-address.sh
312
B
-rw-r--r--
2022-12-09 20:37
network-interfaces
6.09
KB
-rw-r--r--
2021-09-14 13:27
pattern-matching
831
B
-rw-r--r--
2021-09-14 13:27
pcmcia-compat.sh
491
B
-rw-r--r--
2021-09-14 13:27
ping-places.sh
598
B
-rw-r--r--
2023-01-23 21:14
Save
Rename
#!/bin/sh if [ `id -u` -ne 0 ] || [ "$1" = "" ]; then exit 1; fi if [ -x "$(command -v fping)" ]; then PING="fping" else PING="ping -c 2" fi iface="$1" which="" while read addr pingme scheme; do if [ "$which" ]; then continue; fi #echo " Trying $addr & $pingme ($scheme)" >&2 ip addr add $addr dev $iface >/dev/null 2>&1 ip link set $iface up >/dev/null 2>&1 if $PING $pingme >/dev/null 2>&1; then which="$scheme" fi ip link set $iface down >/dev/null 2>&1 ip addr del $addr dev $iface >/dev/null 2>&1 done if [ "$which" ]; then echo $which; exit 0; fi exit 1