Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
network /
if-up.d /
Delete
Unzip
Name
Size
Permission
Date
Action
bind9
283
B
-rwxr-xr-x
2018-01-15 22:40
clamav-freshclam-ifupdown
1.64
KB
-rwxr-xr-x
2021-04-14 09:54
ntpdate
900
B
-rwxr-xr-x
2018-02-15 12:45
openssh-server
972
B
-rwxr-xr-x
2017-10-17 10:56
postfix
1.09
KB
-rwxr-xr-x
2020-02-16 20:59
upstart
1.45
KB
-rwxr-xr-x
2015-06-02 09:32
Save
Rename
#! /bin/sh # Reload the OpenSSH server when an interface comes up, to allow it to start # listening on new addresses. set -e # Don't bother to restart sshd when lo is configured. if [ "$IFACE" = lo ]; then exit 0 fi # Only run from ifup. if [ "$MODE" != start ]; then exit 0 fi # OpenSSH only cares about inet and inet6. Get ye gone, strange people # still using ipx. if [ "$ADDRFAM" != inet ] && [ "$ADDRFAM" != inet6 ]; then exit 0 fi # Is /usr mounted? if [ ! -e /usr/sbin/sshd ]; then exit 0 fi if [ ! -f /run/sshd.pid ] || \ [ "$(ps -p "$(cat /run/sshd.pid)" -o comm=)" != sshd ]; then exit 0 fi # We'd like to use 'reload' here, but it has some problems; see #502444. On # the other hand, repeated restarts of ssh make systemd unhappy # (#756547/#757822), so use reload in that case. if [ -d /run/systemd/system ]; then systemctl reload --no-block ssh.service >/dev/null 2>&1 || true else invoke-rc.d ssh restart >/dev/null 2>&1 || true fi exit 0