├── .gitignore
├── web
├── images
│ ├── index.jpg
│ ├── spacer.gif
│ ├── index_r1_c1.jpg
│ ├── index_r2_c1.jpg
│ ├── index_r2_c2.jpg
│ ├── index_r2_c3.jpg
│ ├── index_r2_c4.jpg
│ ├── index_r3_c1.jpg
│ ├── index_r3_c2.jpg
│ ├── index_r3_c3.jpg
│ ├── index_r3_c4.jpg
│ ├── index_r3_c5.jpg
│ ├── index_r4_c1.jpg
│ ├── index_r4_c2.jpg
│ ├── index_r4_c3.jpg
│ ├── index_r4_c4.jpg
│ ├── index_r4_c5.jpg
│ └── _notes
│ │ ├── index.jpg.mno
│ │ ├── index_r1_c1.jpg.mno
│ │ ├── index_r2_c4.jpg.mno
│ │ ├── index_r3_c2.jpg.mno
│ │ ├── index_r2_c1.jpg.mno
│ │ ├── index_r2_c2.jpg.mno
│ │ ├── index_r2_c3.jpg.mno
│ │ ├── index_r3_c1.jpg.mno
│ │ ├── index_r4_c1.jpg.mno
│ │ ├── index_r4_c2.jpg.mno
│ │ ├── index_r4_c3.jpg.mno
│ │ ├── index_r3_c3.jpg.mno
│ │ ├── index_r3_c4.jpg.mno
│ │ ├── index_r3_c5.jpg.mno
│ │ ├── index_r4_c4.jpg.mno
│ │ └── index_r4_c5.jpg.mno
├── include
│ ├── refresh.php
│ ├── connect.php
│ ├── hora.php
│ ├── estilo.css
│ ├── SAL.inc
│ ├── functionLayout.php
│ └── functions.php
├── index.php
├── cab.html
├── graphics.php
├── main.php
├── menu.php
└── graficos.php
├── misc
├── screenshots
│ ├── netactuator1.png
│ ├── netactuator2.png
│ ├── netactuator3.png
│ ├── netactuator4.png
│ └── netactuator5.png
├── 3rd-software
│ ├── pmacct
│ │ └── pmacct-0.12.5.tar.gz
│ └── README
└── academic-work
│ ├── articles
│ ├── SIRC-Artigo16.pdf
│ └── Revista-Unicruz-Artigo26.pdf
│ ├── graduation-conclusion-work
│ ├── NETACT-TC2.pdf
│ └── NETACT-TC2_Defesa.ppt
│ ├── README
│ └── LINKS
├── sql
├── repair.sh
└── netactuator-mysql.sql
├── netactuator-apache.conf-dist
├── netactuator.conf-dist
├── proto.h
├── CREDITS
├── COPYING
├── timing.c
├── wrapper.c
├── eventos.c
├── README
├── scripts
└── netactuator.sh
├── TODO
├── mysql_driver.c
├── pattern.c
├── Makefile
├── file.c
├── blacklist.c
├── netmask.c
├── defs.h
├── action.c
├── datastruct.c
├── INSTALL
├── limit.c
├── config.c
├── netactuator.c
├── topusers.c
├── graph.c
└── LICENSE
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/web/images/index.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index.jpg
--------------------------------------------------------------------------------
/web/images/spacer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/spacer.gif
--------------------------------------------------------------------------------
/web/images/index_r1_c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r1_c1.jpg
--------------------------------------------------------------------------------
/web/images/index_r2_c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r2_c1.jpg
--------------------------------------------------------------------------------
/web/images/index_r2_c2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r2_c2.jpg
--------------------------------------------------------------------------------
/web/images/index_r2_c3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r2_c3.jpg
--------------------------------------------------------------------------------
/web/images/index_r2_c4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r2_c4.jpg
--------------------------------------------------------------------------------
/web/images/index_r3_c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r3_c1.jpg
--------------------------------------------------------------------------------
/web/images/index_r3_c2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r3_c2.jpg
--------------------------------------------------------------------------------
/web/images/index_r3_c3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r3_c3.jpg
--------------------------------------------------------------------------------
/web/images/index_r3_c4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r3_c4.jpg
--------------------------------------------------------------------------------
/web/images/index_r3_c5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r3_c5.jpg
--------------------------------------------------------------------------------
/web/images/index_r4_c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r4_c1.jpg
--------------------------------------------------------------------------------
/web/images/index_r4_c2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r4_c2.jpg
--------------------------------------------------------------------------------
/web/images/index_r4_c3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r4_c3.jpg
--------------------------------------------------------------------------------
/web/images/index_r4_c4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r4_c4.jpg
--------------------------------------------------------------------------------
/web/images/index_r4_c5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/web/images/index_r4_c5.jpg
--------------------------------------------------------------------------------
/misc/screenshots/netactuator1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/screenshots/netactuator1.png
--------------------------------------------------------------------------------
/misc/screenshots/netactuator2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/screenshots/netactuator2.png
--------------------------------------------------------------------------------
/misc/screenshots/netactuator3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/screenshots/netactuator3.png
--------------------------------------------------------------------------------
/misc/screenshots/netactuator4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/screenshots/netactuator4.png
--------------------------------------------------------------------------------
/misc/screenshots/netactuator5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/screenshots/netactuator5.png
--------------------------------------------------------------------------------
/misc/3rd-software/pmacct/pmacct-0.12.5.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/3rd-software/pmacct/pmacct-0.12.5.tar.gz
--------------------------------------------------------------------------------
/misc/academic-work/articles/SIRC-Artigo16.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/academic-work/articles/SIRC-Artigo16.pdf
--------------------------------------------------------------------------------
/misc/academic-work/articles/Revista-Unicruz-Artigo26.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/academic-work/articles/Revista-Unicruz-Artigo26.pdf
--------------------------------------------------------------------------------
/misc/academic-work/graduation-conclusion-work/NETACT-TC2.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/academic-work/graduation-conclusion-work/NETACT-TC2.pdf
--------------------------------------------------------------------------------
/misc/academic-work/graduation-conclusion-work/NETACT-TC2_Defesa.ppt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stockrt/netactuator/HEAD/misc/academic-work/graduation-conclusion-work/NETACT-TC2_Defesa.ppt
--------------------------------------------------------------------------------
/misc/3rd-software/README:
--------------------------------------------------------------------------------
1 | The work below this directory is not part of netactuator
2 | and is not under same licensing. Please refer to the copyright
3 | and author's notes inside each document.
4 |
--------------------------------------------------------------------------------
/misc/academic-work/README:
--------------------------------------------------------------------------------
1 | The work below this directory is not part of netactuator
2 | and is not under same licensing. Please refer to the copyright
3 | and author's notes inside each document.
4 |
--------------------------------------------------------------------------------
/sql/repair.sh:
--------------------------------------------------------------------------------
1 | # Para reparar tabelas "crashed" do mysql
2 |
3 | myisamchk -r /var/db/mysql/netactuator/storage_mass.MYI
4 | myisamchk -r /var/db/mysql/netactuator/*.MYI
5 |
6 | # Ou em /var/lib/db/mysql, /var/lib/mysql
7 |
--------------------------------------------------------------------------------
/web/include/refresh.php:
--------------------------------------------------------------------------------
1 | ";
8 | ?>
9 |
--------------------------------------------------------------------------------
/web/images/_notes/index.jpg.mno:
--------------------------------------------------------------------------------
1 |
2 |
![]() |
22 | |||||