Forum Discussion
robert_78370
Nimbostratus
Apr 27, 2017Need help with SERVERSSL_DATA
I'm trying to get the irule example for the event SERVERSSL_DATA working without any luck. I need to look at the data stream being returned to the client. Here's my code: when SERVERSSL_HANDSHAK...
May 08, 2017
Hi Robert, I got a bit further with this. Try this iRule:
when CLIENTSSL_DATA {
binary scan [SSL::payload] c* packet
log local0.info "clientssl: ----------"
log local0.info "clientssl_data000: $packet"
SSL::release
SSL::collect
serverside { SSL::collect }
}
when SERVERSSL_HANDSHAKE {
log local0.info "serverssl_handshake"
clientside { SSL::collect }
}
when SERVERSSL_DATA {
binary scan [SSL::payload] c* packet
log local0.info "serverssl:----------"
log local0.info "serverssl_data000: $packet"
SSL::release
SSL::collect
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects