OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
etc
/
network
/
if-up.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:54 PM
rwxr-xr-x
📄
000resolvconf
817 bytes
11/29/2017 06:26:46 PM
rwxr-xr-x
📄
openssh-server
980 bytes
05/13/2020 02:12:28 PM
rwxr-xr-x
📄
ubuntu-fan
548 bytes
04/23/2019 10:35:14 AM
rwxr-xr-x
📄
upstart
1.45 KB
11/30/2016 05:15:30 PM
rwxr-xr-x
📄
wpasupplicant
4.59 KB
08/05/2024 12:27:49 PM
rwxr-xr-x
Editing: openssh-server
Close
#! /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 /var/run/sshd.pid ] || \ [ "$(ps -p "$(cat /var/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