Forum Discussion
Arnaud_Ciron_12
Nimbostratus
Dec 18, 2007Beginner : How to create an iRule to monitor SSL traffic ?
Hi,
I'm new to iRule and BIGIP and we're using this box to terminate specific SSL connections (for credit cards equipments). Everything just works fine except I'd like to know :
1/ Why ...
Arnaud_Ciron_12
Nimbostratus
Jan 18, 2008For a start, just a simple logging would be enough :
How can I log successul SSL connections ?
How can I log failed connections ?
I've tried some code to log HTTP connection which is working fine :
when CLIENT_ACCEPTED {
log local0. "client: [IP::remote_addr]:[TCP::remote_port] -> dest: [IP::local_addr]:[TCP::local_port]"
}
But I use HTTP only for testing purpose. When setup will be complete I will have to monitor SSL connections only.
Second problem : As far as I known logging to local0.* is written in /etc/var/tmm. We'll have thousand of connections going to that bigip and I wouldn't like to have not enough disk space. Instead I use a remote syslog server with this part of code inside syslog-ng.conf :
Send messages to localhost through udp port 514
destination d_remoteLogTunnel {
udp ("x.x.x.x" port (514));
};
Performing logging
log {
source (local);
filter (f_catchall);
destination (d_remoteLogTunnel);
};
How can I send connections logging only to remote server ?
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
