Options

Is there a way to log snat transations

We just moved our LDAP service to our new A10 load balancers. Our PROD partition (which is where our LDAP virtual server is on) is running in one arm mode utilizing a snat pool. Every thing is working fine but our LDAP administrator is asking if there is a way to save a log file of the snat translations for the LDAP virtual server to a remote logging server? Or is there a way for the servers to see the client IP address when snat is configured?

I would appreciate your help. Thank you.

Comments

  • Options
    edited February 2014
    Hello

    As you probably know when you have the AX configured in one arm mode you need to use source NAT, One way would be to disable source NAT and configure server to point to the AX as its gateway; however, if that is not possible you may be able to use syslog to log the session. One last option would be to use aflex to insert the IP address. Plus there may be some additional aflex capabilities along these line in a future release.
  • Options
    edited February 2014
    In 2.7.0 A10 added example aFlex rules to log the client IP addresses to the syslog when using SNAT. You would then send the syslog to a syslog server to capture that data. Here's the xample aFlex. Keep in mind that this could potentially cause impact as it could increase the CPU utilization. Please test in your environment first to understand the impact.

    # This aFleX logs Client/Server IP/Port information for security when using Source NAT
    when CLIENT_ACCEPTED {
    set timestamp [clock format [clock seconds] -format {%Y-%m-%d %H:%M:%S}]
    set cip [IP::client_addr]
    set cport [TCP::client_port]
    set vip [IP::local_addr]
    set vport [TCP::local_port]
    }

    when SERVER_CONNECTED {
    set sip [IP::server_addr]
    set sport [TCP::server_port]
    set snat_ip [IP::local_addr]
    set snat_port [TCP::local_port]

    log "$timestamp - $cip:$cport -> $vip:$vport to $snat_ip:$snat_port -> $sip:$sport"
    }
  • Options
    cfernandezcfernandez Member
    edited February 2014
    ssacchi and jraasch,

    My apologies for the very late reply (I didn't get an email notification someone had responded to my post). I want to thank you for your reply. I will test out your proposed aFlex and let you know the results. Once again, thank you.
  • Options
    Ahemd StarAhemd Star Member
    edited February 2014
    Dear cfernandez ,please do you test the above solution or not as I'm facing the same problem now.
Sign In or Register to comment.