SRX

last person joined: yesterday 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  IPv6 default gateway

    Posted 12-12-2011 07:08

    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

     

     



  • 2.  RE: IPv6 default gateway
    Best Answer

     
    Posted 12-12-2011 07:25

    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



  • 3.  RE: IPv6 default gateway

    Posted 12-12-2011 07:32

    Fantastique!!!

     

    Thanks Mattia that worked a treat,

     

    Paul