Forum Discussion

yuanqiang_22112's avatar
yuanqiang_22112
Icon for Nimbostratus rankNimbostratus
Dec 14, 2016

how to send rst to client

hello everyone , I created a virtual server, the type is "reject",I think when client send a request to vs_ip ,F5 send "rst" to client . The expeirment show that F5 no response by capture.Do you know why ?

 

2 Replies

  • Did you try using a CURL to the VS or telnet to check response ? You can also use the developer tools within a browser like Chrome to identify the response.

     

  • Hi yuanqiang,

    a

    reject
    Virtual Server should simply respond with an
    TCP-RST
    packet to every connection attempt.

    To troubleshoot your configuration you may try to ping the Virtual IP Address 192.168.20.12 and attach an debugging iRule to your VS to see if you're reaching the Virtual Server.

    when CLIENT_ACCEPTED {
        log local0.debug "Hello World"
    }
    

    Cheers, Kai