⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.112
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
snap
/
core
/
17210
/
etc
/
rc0.d
/
View File Name :
K01ubuntu-fan
#!/bin/sh - # # ubuntu-fan Start/Stop Ubuntu FAN Networking # # chkconfig: 345 98 01 # description: Starts/Stops Ubuntu FAN Network Bridge # ### BEGIN INIT INFO # Provides: ubuntu-fan # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Required-Start: $network $remote_fs # Required-Stop: $remote_fs $network # Short-Description: Bring up/down Ubuntu FAN Network Bridge and Overlay # Description: Bring up/down Ubuntu FAN Network Bridge and Overlay ### END INIT INFO # Source function library. . /lib/lsb/init-functions # provide action() fallback if ! type action >/dev/null 2>&1; then # Real basic fallback for sysvinit "action" verbage. action() { echo -n "$1 " shift "$@" && echo "OK" || echo "Failed" } fi start() { action $"Starting Ubuntu FAN network bridge: " /usr/lib/ubuntu-fan/fan-net start } stop() { action $"Stopping Ubuntu FAN network bridge: " /usr/lib/ubuntu-fan/fan-net stop } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart|reload|force-reload) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart|reload|force-reload}" exit 2 ;; esac exit $?