Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.12.152.100
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
lib /
udev /
[ HOME SHELL ]
Name
Size
Permission
Action
hwdb.d
[ DIR ]
drwxr-xr-x
rules.d
[ DIR ]
drwxr-xr-x
ata_id
38.42
KB
-rwxr-xr-x
bridge-network-interface
1.05
KB
-rwxr-xr-x
cdrom_id
50.42
KB
-rwxr-xr-x
collect
22.34
KB
-rwxr-xr-x
console-setup-tty
4.52
KB
-rwxr-xr-x
hotplug.functions
1.15
KB
-rw-r--r--
hwclock-set
776
B
-rwxr-xr-x
hwdb.bin
6.52
MB
-r--r--r--
ifupdown-hotplug
3.07
KB
-rwxr-xr-x
mtd_probe
10.25
KB
-rwxr-xr-x
scsi_id
50.95
KB
-rwxr-xr-x
snappy-app-dev
38.52
KB
-rwxr-xr-x
v4l_id
14.34
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bridge-network-interface
#!/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
Close