设置看起来像这样。
目标是让多台计算机从 iSCSI 目标安装单个 LUN。理想情况下安装读/写并具有 ACL 支持。
服务器运行 GNU/Linux,因此最好是在 vanilla 内核中可用的文件系统。虽然我可以在必要时处理编译第三方模块。
我希望有人可以帮助阐明ping6
在 GNU/Linux 机器上展示的不同行为。
该机器是一台Linode主机,已分配了 IPv4 和 IPv6 地址。它在双栈配置中运行。Linode 人提供了两个 IPv4 解析器和两个 IPv6 解析器。(对于这个问题,我只会使用每种类型中的一种)。
当我将/etc/resolv.conf
文件配置为使用 IPv4 解析器时;
# /etc/resolv.conf
nameserver 72.14.179.5
Run Code Online (Sandbox Code Playgroud)
ping6
对每个回显回复执行反向查找,并相应地显示地址。(这是我所期望的。)
$ ping6 -c 6 google.com
PING google.com(dfw06s33-in-x05.1e100.net) 56 data bytes
64 bytes from dfw06s33-in-x05.1e100.net: icmp_seq=1 ttl=49 time=34.7 ms
64 bytes from dfw06s33-in-x05.1e100.net: icmp_seq=2 ttl=49 time=34.7 ms
64 bytes from dfw06s33-in-x05.1e100.net: icmp_seq=3 ttl=49 time=34.7 ms
64 bytes from dfw06s33-in-x05.1e100.net: icmp_seq=4 ttl=49 time=34.7 ms
64 bytes from dfw06s33-in-x05.1e100.net: icmp_seq=5 ttl=49 time=34.7 ms
64 bytes …
Run Code Online (Sandbox Code Playgroud)