This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Active IP addresses

Dear all.

We have a Hardware Licence for an ASG 220 with unlimited users and unlimited connections... When I now check the Active IP Addresses tab I cannot see the amount of active ip addresses... Is it probably possible to see the amount of used ip addresses although I have a unlimited ip licence.


This thread was automatically locked due to age.
Parents Reply Children
  • Of course. We have clever guys from Medocino (Aachen) as Support (Astaro Partner) which help us wherever they can!
  • Came across this post whilst doing research on the max amount of IPs used over a given month. The debug switch in FernandeZ post pointed out the SQL script run against the reporting database. I modified that script a little to find the maximum amount of IPs we were using from multiple subnets (wireless and wired) in a given day. The steps taken:

    1. launch a secure shell session and login as root
    2. change user to postgres: su - postgres
    3. connect to reporting database: psql reporting
    4. enter the following script:

    select x.logday, count(x.srcip) as ips_per_day from (select srcip, logday from accounting where raw_in_pktcount > 0 and raw_out_pktcount > 0 and (srcip 


    of course, change the ips to suit your environment.

    cheers!