Are you running both IPv6 and Ipv4 between your ospf neighbors?
root@R1_re# show protocols ospf3
realm ipv4-unicast {
export test;
area 0.0.0.0 {
interface ge-0/0/4.0;
}
}
area 0.0.0.0 {
interface ge-0/0/4.0;
}
[edit]
root@R1_re#
root@R1_re# show policy-options
policy-statement test {
from {
protocol static;
route-filter 10.100.100.100/32 exact;
}
then accept;
}
[edit]
root@R1_re#
root@R2_re# show protocols ospf3
realm ipv4-unicast {
area 0.0.0.0 {
interface ge-0/0/1.0;
}
}
area 0.0.0.0 {
interface ge-0/0/1.0;
}
[edit]
root@R2_re#
[edit]
root@R2_re# run show route 10.100.100.100
inet.0: 19 destinations, 19 routes (19 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
10.0.0.0/8 *[Static/5] 5d 06:48:10
> to 10.49.127.254 via fxp0.0
[edit]
root@R2_re# activate interfaces ge-0/0/1.0 family inet
[edit]
root@R2_re# commit
commit complete
[edit]
root@R2_re# run show route 10.100.100.100
inet.0: 25 destinations, 25 routes (25 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both
10.100.100.100/32 *[OSPF3/150] 00:00:05, metric 0, tag 0
> to 10.0.0.2 via ge-0/0/1.0
You need to enable realm ipv4-unicast neighborship as well between your ospf3 neighbours.
HTH.