404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.221.145.110: ~ $
#!/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.*)
				create_vlan_port
				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

Filemanager

Name Type Size Permission Actions
hwdb.d Folder 0755
rules.d Folder 0755
ata_id File 42.16 KB 0755
bcache-export-cached File 1.13 KB 0755
bcache-register File 5.99 KB 0755
bridge-network-interface File 952 B 0755
cdrom_id File 54.16 KB 0755
collect File 42.17 KB 0755
hdparm File 583 B 0755
hwclock-set File 776 B 0755
hwdb.bin File 8.56 MB 0444
libinput-device-group File 9.99 KB 0755
libinput-model-quirks File 9.99 KB 0755
mtd_probe File 5.98 KB 0755
probe-bcache File 9.99 KB 0755
scsi_id File 54.71 KB 0755
snappy-app-dev File 38.07 KB 0755
usb_modeswitch File 1.55 KB 0755
v4l_id File 14.08 KB 0755