%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.216.45 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/cehaburo/www/images/product/anon_sym/anon/etc/network/if-down.d/ |
Upload File : |
#!/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