SRX

last person joined: 4 days ago 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  Allow TCP half-completed connection on SRX

    Posted 07-06-2014 18:57

    Hi guys

    As we all know the firewall needs to see both directions of a flow (client-server and server-client), otherwise these checks will block legitimate packets.

    In my network  there is a real requirement that  one of the both directions of a flow (server-client)through the firewall.

    I want to permit the traffic half-completed connection,how i go ahead ?

    Thanks !



  • 2.  RE: Allow TCP half-completed connection on SRX

     
    Posted 07-06-2014 19:33

    Hi ,

     

    You can try disabling "syn-check" and "seq-check"

     

    set security flow tcp-session no-syn-check
    set security flow tcp-session no-sequence-check

     

    Thanks,

    Suraj



  • 3.  RE: Allow TCP half-completed connection on SRX

    Posted 07-06-2014 19:52



  • 4.  RE: Allow TCP half-completed connection on SRX
    Best Answer

    Posted 07-06-2014 21:50

    Hi Nicolash-q,

     

    I dont think ,half opened connections can be kept on the SRX.it will drop it within few seconds.

     

    But as a work around , you can use selective packet mode for that traffic using firewall filter:

     

    Using this technique, you can use both packet mode for this stream  and flow mode for rest.


    set firewall filter PACKET-MODE term 1 from source-address X.X.X.X/32

    set firewall filter PACKET-MODE term 1 from destination-address y.y.y.y/32

    set firewall filter PACKET-MODE term 1 then packet-mode

    set firewall filter PACKET-MODE term 2 then accept

     

    Now apply the filter PACKET-MODE in required interface in inbound or outbound direction.

     

    So traffic coming from particular source address of X.X.X.X/32 will only be processed as packet mode by SRX, rest will be processed as flow mode.

     

    Regards
    rparthi
     

    Please Mark My Solution Accepted if it Helped, Kudos are Appreciated Too



  • 5.  RE: Allow TCP half-completed connection on SRX

    Posted 07-07-2014 00:58

    Yeah, It is the only solution.

     

    Thank you!