12-12-2011 07:07 AM
Hi there,
I've a SRX with a IPv4 default gateway pointing to my IPsec tunnel. Now I've added IPv6 and want to create an IPv6 default gateway that points to the GRE tunnel interface.
How do I do this in junos?
Thanks,
Paul
Solved! Go to Solution.
12-12-2011 07:25 AM
Hi Paul,
these are the commands needed in Junos in order to create a static route for IPv6 traffic (therefore into the inet6.0 table), wich points to the GRE interface:
routing-options {
rib inet6.0 {
static {
route ::/0 next-hop gr-0/0/0.0;
}
}
Hope it helps,
Mattia
12-12-2011 07:32 AM
Fantastique!!!
Thanks Mattia that worked a treat,
Paul