The OpenNET Project / Index page

[ ������� /+++ | ����� | ���� | ]

�������� ���� IPv6 link-local ������� �� ���� ������� ����������� � Linux
���������

0) ��� �� �������� ������� ��������������� ����������. SLAAC, discovery, APIPA, ��� ��� ��� ���.
1) ��� sysctl, ����� ����������� ������������� ��������� IPv6 link-local
������,  �������� ������ �� ��������� ������� ���� ���� �� �������� ������.
2) ����� ����������� ���� ��� ��������� IPv6, ����� IPv6 link-local �������
����� �� �����. �� ��� ��������.

���������� ������
���������� �� /etc/rc.local.
�������� systemd ����� ������� ���� ��������������.

   #!/bin/sh
   AIF=$( ip link show | grep '^[0-9]' | cut -f 2 -d ':' | cut -f 1 -d '@' | sed -e 's:\\ ::g'  )

   for I in $AIF ; do
     ALL=$( ip a show dev $I | grep inet6 | grep scope | grep link | grep fe80 | cut -f 6 -d ' ' )
     for A in $ALL ; do
        ip addr del "$A" dev "$I" > /dev/null 2>&1
     done
   done

   exit 0
 
27.02.2026 , �����: blin_glitor
�����: ipv6, linklocal / ��������: CC-BY
������:    ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ / �������������� / ������� ����������, ������������� / �������� ������ ����

���������� [ �������� ����� | �������� ��� | RSS ]
  • 1.1, ������ (1), 14:37, 01/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +2 +/
    ������ � ������: � White IPv6 ����� ����� ����� ��������� ��������? � �� ARP ��� v6 �� ���. ��� ���-�� � ������� link-local ������ ���� ����������� �����-�� IPv6.
     
     
  • 2.4, OpenEcho (?), 09:37, 02/03/2026 [^] [^^] [^^^] [��������]  
  • +1 +/
    > � �� ARP ��� v6 �� ���.

    👆 � IPv6 ��� ��� ����

        ip -6 neigh show

     
  • 2.5, Zulu (?), 13:53, 02/03/2026 [^] [^^] [^^^] [��������]  
  • +3 +/
    � ����� ������ ���.

    �� "��� �� ��������".

     

  • 1.2, ������ (2), 15:46, 01/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +8 +/
    � �� ����� ��������� ipv6 ������� 'ipv6.disable=1' � kernel cmdline ?
    �������� �� ���� ����� ������� � 2.6
     
     
  • 2.8, ������ (8), 12:02, 04/03/2026 [^] [^^] [^^^] [��������]  
  • +/
    > � �� ����� ��������� ipv6 ������� 'ipv6.disable=1' � kernel cmdline ?
    > �������� �� ���� ����� ������� � 2.6

    ���� �� �ģ� ������ ��� link-local ������. � ��� ������ IPv6 �����������.

     
     
  • 3.10, ������ (2), 17:26, 05/03/2026 [^] [^^] [^^^] [��������]  
  • +3 +/
    ���� ������������ ������������ ���������� ���� � ������������ ipv6, �� ���� �� ������ � link-local.
     
  • 3.18, ������ (-), 11:25, 07/04/2026 [^] [^^] [^^^] [��������]  
  • +1 +/
    > ���� �� �ģ� ������ ��� link-local ������. � ��� ������ IPv6 �����������.

    �� ��� ������� �� ������� � �������� �������. �, ��, ������ �� ����� � ������ DAD/autoconf � ���� ���������-���������. � /proc/sys/net/ipv6/conf/default ������� �������, ����� � /all ����� ��� ��� ���� ������� � ������� ����� �������. ��� � /iface0 - ������ ��� iface0 ���������. ��������� � ����� ��������� autoconf � link-local ����� ��� ��������.

    � ����� ����� �� ��������� - ���� �� �����...

     

  • 1.3, ������ (3), 01:55, 02/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +1 +/
    � �� ����� ��:
    ip addr flush dev $IFACE
     
     
  • 2.6, ������ (6), 09:12, 03/03/2026 [^] [^^] [^^^] [��������]  
  • +1 +/
    ip -6 addr flush dev $IFACE
     
     
  • 3.7, ������ (8), 11:58, 04/03/2026 [^] [^^] [^^^] [��������]  
  • +/
    ���� �� �ģ� ������ ��� link-local. � � flush ��������� ��� ������.
     
     
  • 4.19, ������ (-), 11:34, 07/04/2026 [^] [^^] [^^^] [��������]  
  • +/
    > ���� �� �ģ� ������ ��� link-local. � � flush ��������� ��� ������.

    ip addr del fe80::/8 (��� ��� ��� ��� ���������) ��� �� ��������?

     

  • 1.9, ������ (9), 17:45, 04/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    �������� ��� ���:
    ip -br link show|awk '{print $1}'|while read I; do ip a show dev $I|awk -v I=$I '/inet6/&&/scope/&&/link/&&/fe80/{printf "ip addr del %s dev %s\n",$2,I}'; done
     
  • 1.11, ������ (11), 17:40, 05/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +2 +/
    �������, ��! ����� ��������� ���� ���� �� ������ �����, ����� ���� �� ��� ���. ��������� ������ �� ����������� ��������� ����������, ������.
     
     
  • 2.14, blin_glitor (-), 06:29, 07/03/2026 [^] [^^] [^^^] [��������]  
  • –1 +/
    > ��������� ���� ����

    ����.
    �������� ���� IPv4 only + sit-������� ���� ����.
    ��� ����� �� IPv6 only - ���� ��������� (� ������ ��������� ��������),
    �� ����� ����������� �� ����.
    ����� �� ����������� IPv6 � �� �� ���� ������.

    ps: Microsoft ���� "�� �����������" ������� IPv6 �� �����,
    �� � ������ �� �� ������������ � ����� �� ���� ����� ������������� ����.

     
     
  • 3.20, myster (ok), 17:58, 08/04/2026 [^] [^^] [^^^] [��������]  
  • +/
    > ����� �� ����������� IPv6 � �� �� ���� ������.

    ������? ������ �������������, ��������� ��������.

     

  • 1.12, ��� ����� (?), 23:27, 06/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +1 +/
    echo -n 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6
     
  • 1.15, ������ (15), 21:31, 08/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +1 +/
    sysctl -w net.ipv6.conf.lo.disable_ipv6=1
     
  • 1.16, Alex (??), 15:01, 10/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +1 +/
    GRUB_CMDLINE_LINUX_DEFAULT="...�ipv6.disable=1"
    GRUB_CMDLINE_LINUX="...�ipv6.disable=1"
     
  • 1.17, ������ (17), 02:58, 29/03/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    ��� ���� ��� �����? ������� link-local ������ � ��������� �������. ����� �� ��������� ��������� ipv6 � grub
     
  • 1.21, ������ (21), 00:53, 20/04/2026 [��������] [﹢﹢﹢] [ · · · ]  
  • +/
    IP6 ���� ������� �� ��������, ��� �� ����� �� 6(.66).
     


     ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ �����������
    ���:
    E-Mail:
    ���������:
    �����:




    ������:
    PostgresPro
    Inferno Solutions
    Hosting by Hoster.ru
    �������:

    �������� �� �����
    ���������� �� ���������
    Created 1996-2026 by Maxim Chirkov
    ��������, ����������, ����������