Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
udev /
Delete
Unzip
Name
Size
Permission
Date
Action
hwdb.d
[ DIR ]
drwxr-xr-x
2021-12-04 13:16
rules.d
[ DIR ]
drwxr-xr-x
2025-07-15 07:05
ata_id
38.42
KB
-rwxr-xr-x
2021-04-02 17:51
bcache-register
6.15
KB
-rwxr-xr-x
2015-06-27 01:10
cdrom_id
50.42
KB
-rwxr-xr-x
2021-04-02 17:51
collect
22.34
KB
-rwxr-xr-x
2021-04-02 17:51
console-setup-tty
4.52
KB
-rwxr-xr-x
2016-04-19 21:21
hdparm
583
B
-rwxr-xr-x
2016-03-17 11:18
hotplug.functions
1.15
KB
-rw-r--r--
2021-04-02 04:39
hwclock-set
776
B
-rwxr-xr-x
2020-01-27 15:27
hwdb.bin
6.52
MB
-r--r--r--
2021-12-04 13:17
ifupdown-hotplug
3.07
KB
-rwxr-xr-x
2016-11-30 18:15
mtd_probe
10.25
KB
-rwxr-xr-x
2021-04-02 17:51
probe-bcache
10.2
KB
-rwxr-xr-x
2015-06-27 01:10
scsi_id
50.95
KB
-rwxr-xr-x
2021-04-02 17:51
snappy-app-dev
2.5
KB
-rwxr-xr-x
2021-02-08 05:39
v4l_id
14.34
KB
-rwxr-xr-x
2021-04-02 17:51
vlan-network-interface
1.36
KB
-rwxr-xr-x
2018-05-10 16:19
Save
Rename
#!/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