博客
关于我
ubuntu16.04使用ipv6
阅读量:647 次
发布时间:2019-03-14

本文共 602 字,大约阅读时间需要 2 分钟。

Ubuntu上无法访问IPv6地址的解决步骤

在尝试修复Ubuntu上无法访问IPv6地址的问题时,我按照以下步骤进行了操作:

  • 测试IPv6连接性

    在终端中输入ping6并尝试访问IPv6网址。发现IPv6地址无法响应,说明IPv6可能存在配置问题。

  • 查阅技术资源

    参考相关博客,了解到可能需要使用静态IPv6地址。根据博客,当前使用的是校园网动态分配的IPv6地址,需要改为静态地址。

  • 修改配置文件

    打开文件/etc/sysctl.d/10-ipv6-privacy.conf,将net.ipv6.conf.default.use_tempaddr设置为0,以启用静态IPv6地址。修改完成后,执行sudo sysctl --system以重新加载配置。

  • 检查网络接口设置

    确认网络接口的IPv6配置是否正确。发现lo接口的IPv6地址配置可能有误,尝试手动设置并重启网络服务。

  • 验证IPv6访问权限

    再次测试ping6,发现IPv6地址仍无法响应。怀疑可能是网络路由器未正确配置IPv6路由,联系网络管理员确认路由设置是否正确。

  • 进一步排查问题

    确认路由器是否正确指向校园网的IPv6地址。由于路由问题,IPv6地址在本地网络内无法访问,需要网络管理员协助调整路由配置。

  • 通过以上步骤,我确认了问题的根源在于网络路由器的IPv6配置,目前尚未解决。需要进一步的网络支持或配置调整才能实现IPv6访问。

    转载地址:http://iwylz.baihongyu.com/

    你可能感兴趣的文章
    npm install 报错 EEXIST File exists 的解决方法
    查看>>
    npm install 报错 ERR_SOCKET_TIMEOUT 的解决方法
    查看>>
    npm install 报错 Failed to connect to github.com port 443 的解决方法
    查看>>
    npm install 报错 fatal: unable to connect to github.com 的解决方法
    查看>>
    npm install 报错 no such file or directory 的解决方法
    查看>>
    npm install 权限问题
    查看>>
    npm install报错,证书验证失败unable to get local issuer certificate
    查看>>
    npm install无法生成node_modules的解决方法
    查看>>
    npm install的--save和--save-dev使用说明
    查看>>
    npm node pm2相关问题
    查看>>
    npm run build 失败Compiler server unexpectedly exited with code: null and signal: SIGBUS
    查看>>
    npm run build报Cannot find module错误的解决方法
    查看>>
    npm run build部署到云服务器中的Nginx(图文配置)
    查看>>
    npm run dev 和npm dev、npm run start和npm start、npm run serve和npm serve等的区别
    查看>>
    npm run dev 报错PS ‘vite‘ 不是内部或外部命令,也不是可运行的程序或批处理文件。
    查看>>
    npm scripts 使用指南
    查看>>
    npm should be run outside of the node repl, in your normal shell
    查看>>
    npm start运行了什么
    查看>>
    npm WARN deprecated core-js@2.6.12 core-js@<3.3 is no longer maintained and not recommended for usa
    查看>>
    npm 下载依赖慢的解决方案(亲测有效)
    查看>>