08-01-2011 11:34 PM
Hi All,
We need to create FBF routing instance using IPv6 converted from IPv4
here's my IPv4 configuration
root# show
PBR {
instance-type forwarding;
routing-options {
static {
route 0.0.0.0/0 next-hop 172.16.0.253;
}
}
}
and need to convert to IPv6
PBRv6 {
instance-type forwarding;
routing-options {
rib inet6.0 {
static {
route 0::0/0 next-hop 2005:0:0:0:0:0:ac10:fe;
}
}
}
}
however we still found an error
edit routing-instances]
root# commit
[edit routing-instances PBRv6 routing-options]
'rib inet6.0'
RT: rib inet6.0 is not in matching routing instance
error: configuration check-out failed
Please kindly advice us...
Thanks and Regards,
NNI
08-02-2011 04:29 AM
Hi,
You have to specify "PBRv6.inet6.0" instead of just "inet6.0" in the routing instance:
PBRv6 {
instance-type forwarding;
routing-options {
rib PBRv6.inet6.0 {
static {
route 0::0/0 next-hop 2005:0:0:0:0:0:ac10:fe;
}
}
}