06-May-2020 19:19
I have a SSL VIP,I know that X-Forwarded-For can log the source address,but I want to log the source address and source port on F5.How can I get this by irule?thanks!
06-May-2020
21:16
- last edited on
04-Jun-2023
21:28
by
JimmyPackets
Below iRule will log the Source IP and Source Port and send to "/var/log/ltm"
when CLIENT_ACCEPTED {
log local0. "Source IP address and Port is [IP::client_addr]:[TCP::client_port]"
}
06-May-2020 21:38
thanks to Samir Jha,I have another question, I want to insert source addree and source port into the HTTP header,and send the package to server,How to write this irule?thanks!
06-May-2020
21:53
- last edited on
04-Jun-2023
21:28
by
JimmyPackets
Try below irule. Hpe it will work.
when HTTP_REQUEST {
log local0. "Source IP address and Port is [IP::client_addr]:[TCP::client_port]"
HTTP::header insert Client-IP [IP::client_addr]:[TCP::client_port]
}