好吧,这在技术上可能是题外话,因为我实际上是在家里做的,但我可以很容易地看到在小型企业类型的设置中出现完全相同的情况......
使用 SRX210 作为 Time Warner Cable 连接的路由器(在 SRX 上使用 DOCSIS mini-pim,但我认为这实际上与此无关)。运行 12.1X46-D10.2。试图让 IPv6 在电缆设置上工作(确认 TWC 在我们地区通过 DHCPv6 提供 IPv6)。
这是我在相关配置部分的内容(如果您想查看配置的任何其他部分,请随时询问,但我想我已经了解了所有相关内容):
interfaces {
cm-1/0/0 {
unit 0 {
family inet {
dhcp-client;
}
family inet6 {
dad-disable;
dhcpv6-client {
client-type statefull;
client-ia-type ia-na;
client-ia-type ia-pd;
rapid-commit;
client-identifier duid-type duid-llt;
req-option dns-server;
req-option fqdn;
retransmission-attempt 9;
}
}
}
}
}
security {
forwarding-options {
family {
inet6 {
mode flow-based;
}
}
}
zones {
security-zone untrust {
interfaces {
cm-1/0/0.0 {
host-inbound-traffic {
system-services {
dhcp;
dns;
ntp;
ping;
ssh;
traceroute;
dhcpv6;
bootp;
}
protocols {
router-discovery;
}
}
}
}
}
}
}
“show dhcpv6 client statistics”显示正在发送的 DHCPV6_SOLICIT 消息,但绝对没有别的。
我知道 SRXen 中的 dhcpv6 客户端支持非常新,但是其他人有解决此问题的经验吗?
我试图检查的一个假设是它显然正在发送带有 0x00000000 的 IAID(无论是 IA-NA 还是 IA-PD)的 DHCP 请求。也许 TWC 的 DHCPv6 服务器不喜欢这个值?
有人有想法么?