| Server IP : 127.0.1.1 / Your IP : 216.73.216.152 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/recovery-mode/options/ |
Upload File : |
#!/bin/sh
if [ "$1" = "test" ]; then
. /lib/recovery-mode/l10n.sh
echo $(eval_gettext "Enable networking")
exit 0
fi
# Check for existing connectivity
check_connectivity() {
ip route get 1.2.3.4 >/dev/null 2>&1
retval_route=$?
grep ^nameserver -q /etc/resolv.conf
retval_resolve=$?
if [ "$retval_route" = "0" ] && [ "$retval_resolve" ]; then
exit 0
fi
}
# Try handling networking using systemd
if [ -d /run/systemd/system ]; then
echo "Enabling networking..."
for i in dbus.socket systemd-udevd.service systemd-sysctl.service resolvconf-pull-resolved.path systemd-resolved.service networking.service systemd-networkd.service NetworkManager.service; do
systemctl is-enabled -q $i && systemctl start --no-ask-password --job-mode=ignore-dependencies $i
done
echo "Waiting for networking to be configured..."
systemctl is-enabled -q NetworkManager.service && systemctl start --no-ask-password NetworkManager-wait-online.service
systemctl is-enabled -q systemd-networkd.service && systemctl start --no-ask-password systemd-networkd-wait-online.service
echo "Done."
exit 0
fi
# Start by trying to bring everything up
ifup -a
check_connectivity
# Then try Network Manager
if type NetworkManager >/dev/null 2>&1; then
echo "Trying to start NetworkManager..."
mkdir -p /run/dbus
chown messagebus:messagebus /run/dbus
dbus-daemon --system --nopidfile
NetworkManager
trap "killall dbus-daemon NetworkManager" EXIT HUP INT QUIT PIPE
timeout=15
while [ $timeout -ge 0 ]; do
check_connectivity
sleep 1
timeout=$((timeout-1))
done
fi
# Try running dhclient on everything else
cd /sys/class/net/
for interface in *; do
dhclient -1 $interface
check_connectivity
done
exit 0