思绪的空中生活

Debian开启IPv6
背景爱快系统里的虚拟机 ip4/6均自动获取开启ipv6方法在网络配置文件里添加配置 路径: /etc/netwo...
扫描右侧二维码阅读全文
27
2024/04

Debian开启IPv6

背景

爱快系统里的虚拟机 ip4/6均自动获取

开启ipv6方法

在网络配置文件里添加配置
路径:
/etc/network/interfaces
添加内容:
iface ens3 inet6 auto

例子:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug ens3
iface ens3 inet dhcp

iface ens3 inet6 auto

测试ipv6是否成功开启

查看本机获取到的ipv6地址
ip a

查看本机ipv6出口地址
curl ip.sb -6
  • 没有相关文章
  • Last modification:April 27th, 2024 at 09:57 pm
    If you think my article is useful to you, please feel free to appreciate

    Leave a Comment