Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
openvswitch /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
ifupdown.sh
3.7
KB
-rwxr-xr-x
2023-06-30 00:51
ovs-bugtool-daemons-ver
872
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-fdb-show
852
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-get-dpdk-nic-numa
977
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-get-port-stats
395
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-ovs-appctl-dpif
919
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-ovs-bridge-datapath-type
834
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-ovs-ofctl-loop-over-bridges
1.24
KB
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-ovs-vswitchd-threads-affinity
825
B
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-qos-configs
1.02
KB
-rwxr-xr-x
2026-03-25 00:13
ovs-bugtool-tc-class-show
981
B
-rwxr-xr-x
2026-03-25 00:13
ovs-check-dead-ifs
2.92
KB
-rwxr-xr-x
2026-03-25 00:13
ovs-ctl
18.49
KB
-rwxr-xr-x
2026-03-25 00:13
ovs-kmod-ctl
5.95
KB
-rwxr-xr-x
2026-03-25 00:13
ovs-lib
21.63
KB
-rw-r--r--
2026-03-25 00:13
ovs-save
5.57
KB
-rwxr-xr-x
2026-03-25 00:13
ovs-systemd-reload
1.13
KB
-rwxr-xr-x
2023-06-30 00:51
Save
Rename
#! /bin/sh # Copyright (c) 2012, 2013 Nicira, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Have a look at /usr/share/doc/openvswitch-switch/README.Debian # for more information about configuring the /etc/network/interfaces. if [ -z "${IF_OVS_TYPE}" ]; then exit 0 fi ovs_vsctl() { ovs-vsctl --timeout=5 "$@" } if (ovs_vsctl --version) > /dev/null 2>&1; then :; else exit 0 fi SERVICE_UNIT=/lib/systemd/system/openvswitch-switch.service if [ -f $SERVICE_UNIT ] && [ -x /bin/systemctl ]; then if ! systemctl --quiet is-active openvswitch-switch.service; then systemctl start openvswitch-switch.service fi else if service openvswitch-switch status > /dev/null 2>&1; then service openvswitch-switch start fi fi if [ "${MODE}" = "start" ]; then eval OVS_EXTRA=\"${IF_OVS_EXTRA}\" case "${IF_OVS_TYPE}" in OVSBridge) ovs_vsctl -- --may-exist add-br "${IFACE}" ${IF_OVS_OPTIONS}\ ${OVS_EXTRA+-- $OVS_EXTRA} if [ ! -z "${IF_OVS_PORTS}" ]; then ifup --allow="${IFACE}" ${IF_OVS_PORTS} fi ;; OVSPort) ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ "${IFACE}" ${IF_OVS_OPTIONS} \ ${OVS_EXTRA+-- $OVS_EXTRA} ifconfig "${IFACE}" up ;; OVSIntPort) ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}"\ type=internal ${OVS_EXTRA+-- $OVS_EXTRA} ifconfig "${IFACE}" up ;; OVSBond) ovs_vsctl -- --fake-iface add-bond "${IF_OVS_BRIDGE}"\ "${IFACE}" ${IF_OVS_BONDS} ${IF_OVS_OPTIONS} \ ${OVS_EXTRA+-- $OVS_EXTRA} ifconfig "${IFACE}" up for slave in ${IF_OVS_BONDS} do ifconfig "${slave}" up done ;; OVSPatchPort) ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}" \ type=patch options:peer="${IF_OVS_PATCH_PEER}" \ ${OVS_EXTRA+-- $OVS_EXTRA} ;; OVSTunnel) ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\ "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}" \ type=${IF_OVS_TUNNEL_TYPE} ${IF_OVS_TUNNEL_OPTIONS} \ ${OVS_EXTRA+-- $OVS_EXTRA} ;; *) exit 0 ;; esac elif [ "${MODE}" = "stop" ]; then case "${IF_OVS_TYPE}" in OVSBridge) if [ ! -z "${IF_OVS_PORTS}" ]; then ifdown --allow="${IFACE}" ${IF_OVS_PORTS} fi ovs_vsctl -- --if-exists del-br "${IFACE}" ;; OVSPort|OVSIntPort|OVSBond|OVSPatchPort|OVSTunnel) ovs_vsctl -- --if-exists del-port "${IF_OVS_BRIDGE}" "${IFACE}" ;; *) exit 0 ;; esac fi exit 0