Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
NetworkManager /
dispatcher.d /
Delete
Unzip
Name
Size
Permission
Date
Action
no-wait.d
[ DIR ]
drwxr-xr-x
2025-08-26 09:47
pre-down.d
[ DIR ]
drwxr-xr-x
2025-08-26 09:47
pre-up.d
[ DIR ]
drwxr-xr-x
2025-08-26 09:47
11-dhclient
1.04
KB
-rwxr-xr-x
2024-05-22 16:12
20-chrony-dhcp
1.73
KB
-rwxr-xr-x
2024-11-05 07:47
20-chrony-onoffline
787
B
-rwxr-xr-x
2023-12-05 13:22
Save
Rename
#!/bin/bash # run dhclient.d scripts in an emulated environment PATH=/bin:/usr/bin:/sbin ETCDIR=/etc/dhcp SAVEDIR=/var/lib/dhclient interface=$1 for optname in "${!DHCP4_@}"; do newoptname=${optname,,}; newoptname=new_${newoptname#dhcp4_}; export "${newoptname}"="${!optname}"; done [ -f /etc/sysconfig/network ] && . /etc/sysconfig/network [ -f /etc/sysconfig/network-scripts/ifcfg-"${interface}" ] && \ . /etc/sysconfig/network-scripts/ifcfg-"${interface}" if [ -d $ETCDIR/dhclient.d ]; then for f in $ETCDIR/dhclient.d/*.sh; do if [ -x "${f}" ]; then subsystem="${f%.sh}" subsystem="${subsystem##*/}" . "${f}" if [ "$2" = "up" ]; then "${subsystem}_config" elif [ "$2" = "dhcp4-change" ]; then if [ "$subsystem" = "chrony" -o "$subsystem" = "ntp" ]; then "${subsystem}_config" fi elif [ "$2" = "down" ]; then "${subsystem}_restore" fi fi done fi