Added small help file for Ubuntu distros and improved tool security

This commit is contained in:
Pavel Odintsov 2019-07-11 20:01:45 +01:00
parent efdbf24c0e
commit a20b2ec7ae

View File

@ -246,6 +246,15 @@ sub main {
apt_get("fastnetmon");
# Switch off sflow and netflow plugins enabled by default
system("sed -i 's/sflow = on/sflow = off/' /etc/fastnetmon.conf");
system("sed -i 's/netflow = on/netflow = off/' /etc/fastnetmon.conf");
print "FastNetMon was installed and started correctly\n";
print "You can find configuration file at /etc/fastnetmon.conf\n";
print "You can restart FastNetMon this way: systemctl restart fastnetmon\n";
print "You can run client tool this way: fastnetmon_client\n";
send_tracking_information('finished');
exit(0);
}