Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
etc /
network /
if-down.d /
[ HOME SHELL ]
Name
Size
Permission
Action
avahi-autoipd
1015
B
-rwxr-xr-x
bind9
289
B
-rwxr-xr-x
openvpn
372
B
-rwxr-xr-x
wpasupplicant
4.59
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : avahi-autoipd
#!/bin/sh set -e # Description: Remove routes to allow communication between machines which # only have an IPv4LL address assigned and those which only # have a routable address assigned. These were added by # /etc/network/if-up.d/avahi-autoipd. # # See http://developer.apple.com/qa/qa2004/qa1357.html for # more information. [ -x /usr/sbin/avahi-autoipd ] || exit 0 [ "$IFACE" != "lo" ] || exit 0 case "$ADDRFAM" in inet) ;; *) exit 0 ;; esac case "$METHOD" in static|dhcp|NetworkManager) ;; *) exit 0 ;; esac if [ -x /bin/ip ]; then # route already present? ip route show | grep -q '^169.254.0.0/16[[:space:]]' && exit 0 /bin/ip route del 169.254.0.0/16 dev $IFACE metric 1000 scope link || true elif [ -x /sbin/route ]; then # route already present? /sbin/route -n | grep -q "^169.254.0.0[[:space:]]" && exit 0 /sbin/route del -net 169.254.0.0 netmask 255.255.0.0 dev $IFACE metric 1000 || true fi
Close