A10Networks.com
Support Portal
Partner Portal
toggle menu
Forums
Tips & Configurations
Resources
User Guides
Blogs
Training
Sign In
·
Register
A10Networks.com
Support Portal
Partner Portal
Sign In
·
Register
Forums
Tips & Configurations
Resources
User Guides
Blogs
Training
Sign In
·
Register
×
Home
›
aFleX
Discussion
Detect HTTPS traffic
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Detect HTTPS traffic
willoutte
Member
✭
March 2017
in
aFleX
Hi,
I'm after a variable that can differentiate httpS traffic from http traffic.
Is this possible with http::host or http::uri?
Thanks,
William
Tagged:
HTTPS
aFleX
http
0
Comments
diederik
Member
✭
March 2017
edited March 2017
http::host or http::uri only work on cleartext (HTTP) so for them to work on HTTPS traffic, you already have the SSL:: commands you can work with.
Try:
# as can be found in the 4.1.1-P1 documentation
when HTTP_REQUEST {
log "The SSL mode is [SSL::mode]."
}
# SSL:mode returns 1 when SSL is used, 2 when there's no SSL used.
0
Sign In
or
Register
to comment.
Comments
Try:
# as can be found in the 4.1.1-P1 documentation
when HTTP_REQUEST {
log "The SSL mode is [SSL::mode]."
}
# SSL:mode returns 1 when SSL is used, 2 when there's no SSL used.