我配置了瞻博网络 SRX 防火墙以从上游路由器接收 IPv6 前缀:
family inet6 {
dhcpv6-client {
client-type statefull;
client-ia-type ia-pd;
update-router-advertisement {
interface vlan.20;
interface vlan.30;
interface vlan.40;
}
client-identifier duid-type duid-ll;
req-option dns-server;
req-option domain;
}
}
收到的 IPv6 前缀是 /56 地址池
Client IP Prefix: xxxx:xxxx:xxxx:x000::/56
对于vlan.20. vlan.30并且vlan.40,我需要将接收到的前缀进一步子网化为 /64。有没有办法做到这一点?
BTW:在思科设备中,上述任务可以用
ipv6 address prefix-from-provider 0:0:0:01::/64 eui-64
在接口配置。