pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/ntopng
Module Name: pkgsrc
Committed By: adam
Date: Wed Jun 10 13:18:13 UTC 2026
Modified Files:
pkgsrc/net/ntopng: Makefile PLIST distinfo
Added Files:
pkgsrc/net/ntopng/patches: patch-Makefile.in
Log Message:
ntopng: updated to 6.6
6.6
Breakthroughs
New Autonomous Systems Dashboards, Sankeys, and comprehensive AS statistics
Enhanced flow exporters and probes statistics with dedicated pages
Improved SNMP devices polling
Major flow collection code rework and optimizations
Native support for ClickHouse Cloud with SSL connections
Direct flows dump mode for real-time ClickHouse export
Improvements
Add comprehensive AS ranking detection and alerting with configurable thresholds
Implement ASN traffic rules for better AS-level traffic management
Enhance ASN live flow aggregation
Add conditional ASN aggregation type based on ASN mode
Add ASN alerts to alert system
Optimized SNMP access to interface names
Add Transit Only AS filter and tables
Add flow exporter/probe statistics with dedicated interfaces and exporters pages
Optimize SNMP polling by removing unnecessary double polling on system and interfaces
Add SNMP interface roles (core, distribution, access, etc.) for better network topology visualization
Implement SNMP devices CSV import/export with SNMPv3 support
Enhance asset inventory with SNMP Bridge MIB integration
Optimize SNMP caching and interface name lookup
Improve ClickHouse connection handling with SSL/TLS support for ClickHouse Cloud
Optimize exporters/probes statistics with better data structures and reduced memory footprint
Add support for nProbe Source ID (NPROBE_SOURCE_ID) custom field
Implement --direct-flows-dump option to dump flows directly when collected
Improve historical flow filtering and export capabilities
Add throughput charts based on interface probe stats
Improve Redis operations with optimized caching
Add safety checks across flow collection and statistics code
Optimize Host Pools with support for up to 4096 pools
Improve packet dumper for traffic extraction
Add more detailed flow exporter IP flow layout
Add support for HTTP methods other than GET/POST; reworked and simplified code
Improved chart visualization
Slightly improved visualization on mobile
Changes
Remove pre-NAT information display from flows and statistics
Rework exporters and probes statistics implementation
Unify all exporters interfaces pages
Rework flow collection with better probe/exporter/interface tracking
Change timeseries charts to stacked mode for better visualization
Remove VLAN 0 from various displays
Change MAC address formatting for consistency
Update flow aggregation with new aggregation functions
Add support for arbitrary nDPI protocol IDs in shapers
Remove obsolete code and cleanup
Disable various functionalities in ASN Mode
To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 pkgsrc/net/ntopng/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/ntopng/PLIST
cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/ntopng/distinfo
cvs rdiff -u -r0 -r1.11 pkgsrc/net/ntopng/patches/patch-Makefile.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/ntopng/Makefile
diff -u pkgsrc/net/ntopng/Makefile:1.87 pkgsrc/net/ntopng/Makefile:1.88
--- pkgsrc/net/ntopng/Makefile:1.87 Thu May 14 16:41:48 2026
+++ pkgsrc/net/ntopng/Makefile Wed Jun 10 13:18:13 2026
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.87 2026/05/14 16:41:48 ryoon Exp $
+# $NetBSD: Makefile,v 1.88 2026/06/10 13:18:13 adam Exp $
-DISTNAME= ntopng-6.4
-PKGREVISION= 6
+NTOPNG_VERSION= 6.6
+DISTNAME= ntopng-${NTOPNG_VERSION}
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=ntop/}
@@ -20,16 +20,18 @@ DEPENDS+= redis-[0-9]*:../../databases/r
# 5. uncomment the DISTFILES=... line and regen distinfo
.PHONY: update-ui
update-ui:
- cd ${WRKSRC} && npm install && npm run build && \
+ cd ${WRKSRC} && npm install --force && npm run build && \
cd .. && ${TAR} -czf ${HTTPDOCS_DIST} ${DISTNAME}/httpdocs/dist && \
${CP} ${HTTPDOCS_DIST} ${DISTDIR}/${HTTPDOCS_DIST} && \
${ECHO} "UI built. Run this command:" && \
${ECHO} "# scp ${DISTDIR}/${HTTPDOCS_DIST} ftp.netbsd.org:/pub/pkgsrc/distfiles/LOCAL_PORTS/."
-HTTPDOCS_DIST= ${DISTNAME}-httpdocs.tar.gz
-SITES.${HTTPDOCS_DIST}= ${MASTER_SITE_LOCAL}
+#HTTPDOCS_DIST= ${DISTNAME}-httpdocs.tar.gz
+#SITES.${HTTPDOCS_DIST}= ${MASTER_SITE_LOCAL}
# comment out this when running make update-ui
+HTTPDOCS_DIST= ntopng-dist-${NTOPNG_VERSION}-stable.tar.gz
DISTFILES= ${DEFAULT_DISTFILES} ${HTTPDOCS_DIST}
+SITES.${HTTPDOCS_DIST}= -${MASTER_SITES}ntopng-dist/archive/refs/heads/${NTOPNG_VERSION}-stable.tar.gz
USE_CXX_FEATURES= c++11
USE_LANGUAGES= c c++
@@ -60,6 +62,10 @@ SUBST_FILES.fix-vers= configure.ac.in
SUBST_SED.fix-vers= -e 's,@VERSION@,${PKGVERSION},g'
SUBST_SED.fix-vers+= -e 's,@SHORT_VERSION@,${PKGVERSION_NOREV},g'
+post-extract:
+ ${RM} -fr ${WRKSRC}/httpdocs/dist
+ ${LN} -s ${WRKDIR}/ntopng-dist-${NTOPNG_VERSION}-stable ${WRKSRC}/httpdocs/dist
+
pre-configure:
cd ${WRKSRC} && ${CP} configure.ac.in configure.ac && autoreconf -fiv
@@ -69,6 +75,7 @@ post-build:
post-install:
${RM} ${DESTDIR}${PREFIX}/share/ntopng/httpdocs/misc/ntopng-utils-manage-updates.in.orig
+.include "../../adam/clickhouse/buildlink3.mk"
.include "../../archivers/zstd/buildlink3.mk"
.include "../../databases/hiredis/buildlink3.mk"
.include "../../databases/rrdtool/buildlink3.mk"
Index: pkgsrc/net/ntopng/PLIST
diff -u pkgsrc/net/ntopng/PLIST:1.11 pkgsrc/net/ntopng/PLIST:1.12
--- pkgsrc/net/ntopng/PLIST:1.11 Thu Aug 7 05:05:58 2025
+++ pkgsrc/net/ntopng/PLIST Wed Jun 10 13:18:13 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2025/08/07 05:05:58 adam Exp $
+@comment $NetBSD: PLIST,v 1.12 2026/06/10 13:18:13 adam Exp $
bin/ntopng
man/man8/ntopng.8
share/ntopng/httpdocs/css/README.md
@@ -51,14 +51,12 @@ share/ntopng/httpdocs/inc/geolocation_di
share/ntopng/httpdocs/inc/host_to_server_id.inc
share/ntopng/httpdocs/inc/host_to_server_top.inc
share/ntopng/httpdocs/inc/hosts_stats_id.inc
-share/ntopng/httpdocs/inc/http_servers_stats_id.inc
share/ntopng/httpdocs/inc/index_TopASNs.inc
share/ntopng/httpdocs/inc/index_TopApplications.inc
share/ntopng/httpdocs/inc/index_TopFlowSenders.inc
share/ntopng/httpdocs/inc/index_TopHosts.inc
share/ntopng/httpdocs/inc/index_TopPorts.inc
share/ntopng/httpdocs/inc/mac_stats_id.inc
-share/ntopng/httpdocs/inc/network_stats_id.inc
share/ntopng/httpdocs/inc/os_stats_id.inc
share/ntopng/httpdocs/inc/pool_stats_id.inc
share/ntopng/httpdocs/inc/processes_stats_id.inc
@@ -67,6 +65,7 @@ share/ntopng/httpdocs/inc/sprobe_process
share/ntopng/httpdocs/inc/vlan_stats_id.inc
share/ntopng/httpdocs/misc/alert_store_schema.sql
share/ntopng/httpdocs/misc/alert_view_store_schema.sql
+share/ntopng/httpdocs/misc/db_schema_as_sqlite.sql
share/ntopng/httpdocs/misc/db_schema_clickhouse.sql
share/ntopng/httpdocs/misc/db_schema_clickhouse_cluster.sql
share/ntopng/httpdocs/misc/lists/builtin/abuse_ch.list
@@ -108,6 +107,7 @@ share/ntopng/httpdocs/tables_config/acti
share/ntopng/httpdocs/tables_config/aggregated_live_flows.json
share/ntopng/httpdocs/tables_config/alert_all.json
share/ntopng/httpdocs/tables_config/alert_am_host.json
+share/ntopng/httpdocs/tables_config/alert_as.json
share/ntopng/httpdocs/tables_config/alert_flow.json
share/ntopng/httpdocs/tables_config/alert_host.json
share/ntopng/httpdocs/tables_config/alert_interface.json
@@ -116,14 +116,19 @@ share/ntopng/httpdocs/tables_config/aler
share/ntopng/httpdocs/tables_config/alert_snmp_device.json
share/ntopng/httpdocs/tables_config/alert_system.json
share/ntopng/httpdocs/tables_config/alert_user.json
+share/ntopng/httpdocs/tables_config/all_exporters_interfaces.json
share/ntopng/httpdocs/tables_config/as_stats.json
+share/ntopng/httpdocs/tables_config/as_stats_ixp_mode.json
share/ntopng/httpdocs/tables_config/assets.json
+share/ntopng/httpdocs/tables_config/assets_snmp.json
share/ntopng/httpdocs/tables_config/blacklists.json
share/ntopng/httpdocs/tables_config/countries_stats.json
share/ntopng/httpdocs/tables_config/device_exclusions.json
+share/ntopng/httpdocs/tables_config/dhcp_leases.json
+share/ntopng/httpdocs/tables_config/exporter_interfaces.json
share/ntopng/httpdocs/tables_config/exporters.json
-share/ntopng/httpdocs/tables_config/exporters_details.json
-share/ntopng/httpdocs/tables_config/exporters_interfaces.json
+share/ntopng/httpdocs/tables_config/exporters_interfaces_stats.json
+share/ntopng/httpdocs/tables_config/exporters_interfaces_stats_ixp_mode.json
share/ntopng/httpdocs/tables_config/flow_exporters_list.json
share/ntopng/httpdocs/tables_config/flow_historical.json
share/ntopng/httpdocs/tables_config/flow_historical_aggregated.json
@@ -132,14 +137,24 @@ share/ntopng/httpdocs/tables_config/flow
share/ntopng/httpdocs/tables_config/flows_list_enterprise_l.json
share/ntopng/httpdocs/tables_config/flows_list_with_exporters.json
share/ntopng/httpdocs/tables_config/flows_list_with_exporters_enterprise_l.json
+share/ntopng/httpdocs/tables_config/flows_list_with_exporters_enterprise_l_ixp_mode.json
+share/ntopng/httpdocs/tables_config/host_pools.json
share/ntopng/httpdocs/tables_config/hosts_list.json
share/ntopng/httpdocs/tables_config/hosts_list_with_vlans.json
share/ntopng/httpdocs/tables_config/hosts_to_scan.json
+share/ntopng/httpdocs/tables_config/ingress_egress_as_stats.json
share/ntopng/httpdocs/tables_config/limits_table.json
share/ntopng/httpdocs/tables_config/local_hosts_report.json
+share/ntopng/httpdocs/tables_config/macs_list.json
+share/ntopng/httpdocs/tables_config/manage_host_pool.json
+share/ntopng/httpdocs/tables_config/nedge_hosts_list.json
+share/ntopng/httpdocs/tables_config/nedge_hosts_list_with_vlans.json
+share/ntopng/httpdocs/tables_config/nedge_macs_list.json
share/ntopng/httpdocs/tables_config/network_discovery.json
+share/ntopng/httpdocs/tables_config/networks_list.json
share/ntopng/httpdocs/tables_config/observation_points.json
share/ntopng/httpdocs/tables_config/open_ports.json
+share/ntopng/httpdocs/tables_config/probe_exporters_interfaces.json
share/ntopng/httpdocs/tables_config/probes.json
share/ntopng/httpdocs/tables_config/redis_stats.json
share/ntopng/httpdocs/tables_config/server_ports.json
@@ -150,11 +165,16 @@ share/ntopng/httpdocs/tables_config/snmp
share/ntopng/httpdocs/tables_config/snmp_similarity.json
share/ntopng/httpdocs/tables_config/snmp_topology.json
share/ntopng/httpdocs/tables_config/snmp_usage.json
+share/ntopng/httpdocs/tables_config/table_exporter_as_stats.json
share/ntopng/httpdocs/tables_config/top_interface_applications.json
share/ntopng/httpdocs/tables_config/top_interface_categories.json
+share/ntopng/httpdocs/tables_config/traffic_between_ases.json
+share/ntopng/httpdocs/tables_config/traffic_profiles.json
+share/ntopng/httpdocs/tables_config/user_traffic_breakdown.json
share/ntopng/httpdocs/tables_config/vs_reports.json
share/ntopng/httpdocs/templates/analyze_db.template
share/ntopng/httpdocs/templates/analyze_pcap.template
+share/ntopng/httpdocs/templates/dropdown_snmp_type.html
share/ntopng/httpdocs/templates/htmlPages/hostDetails/hosttraffic.html
share/ntopng/httpdocs/templates/htmlPages/hostDetails/listening-ports.template
share/ntopng/httpdocs/templates/import_modal.html
@@ -222,7 +242,6 @@ share/ntopng/httpdocs/templates/pages/li
share/ntopng/httpdocs/templates/pages/manage_configurations.template
share/ntopng/httpdocs/templates/pages/manage_configurations_backup.template
share/ntopng/httpdocs/templates/pages/manage_data.template
-share/ntopng/httpdocs/templates/pages/manage_host_members.template
share/ntopng/httpdocs/templates/pages/modals/alerts/acknowledge_alert.template
share/ntopng/httpdocs/templates/pages/modals/alerts/acknowledge_alerts.template
share/ntopng/httpdocs/templates/pages/modals/alerts/delete_alert_exclusion_modal.template
@@ -281,7 +300,6 @@ share/ntopng/httpdocs/templates/pages/no
share/ntopng/httpdocs/templates/pages/notifications/wechat/wechat_recipient.template
share/ntopng/httpdocs/templates/pages/observation_points_config.template
share/ntopng/httpdocs/templates/pages/recipients_list.template
-share/ntopng/httpdocs/templates/pages/sankey_vlan.template
share/ntopng/httpdocs/templates/pages/server_ports.template
share/ntopng/httpdocs/templates/pages/simple_widgets_list.template
share/ntopng/httpdocs/templates/pages/table_pools.template
@@ -292,6 +310,7 @@ share/ntopng/httpdocs/templates/pages/ta
share/ntopng/httpdocs/templates/pages/tabs/manage_data/system_interface_data.template
share/ntopng/httpdocs/templates/pages/test_gui_widgets.template
share/ntopng/httpdocs/templates/pages/top_sites.template
+share/ntopng/httpdocs/templates/pages/ts_overview.template
share/ntopng/httpdocs/templates/pages/vue_page.template
share/ntopng/httpdocs/templates/prefs_search.template
share/ntopng/httpdocs/templates/traffic_extraction_dialog.html
@@ -324,7 +343,6 @@ share/ntopng/scripts/callbacks/daily-del
share/ntopng/scripts/callbacks/daily-delayed/interface/timeseries_retention.lua
share/ntopng/scripts/callbacks/daily-delayed/system/backup_configurations.lua
share/ntopng/scripts/callbacks/daily-delayed/system/fetch_blog_feed.lua
-share/ntopng/scripts/callbacks/daily-delayed/system/mysql_retention.lua
share/ntopng/scripts/callbacks/daily-delayed/system/stats_retention.lua
share/ntopng/scripts/callbacks/daily-delayed/system/system_checks.lua
share/ntopng/scripts/callbacks/daily/system/reset_blacklists.lua
@@ -446,7 +464,8 @@ share/ntopng/scripts/lua/admin/users.lua
share/ntopng/scripts/lua/admin/validate_new_user.lua
share/ntopng/scripts/lua/alert_details.lua
share/ntopng/scripts/lua/alert_stats.lua
-share/ntopng/scripts/lua/analyze_pcap.lua
+share/ntopng/scripts/lua/alerts_geomap.lua
+share/ntopng/scripts/lua/as_overview.lua
share/ntopng/scripts/lua/as_stats.lua
share/ntopng/scripts/lua/authorize_captive.lua
share/ntopng/scripts/lua/blacklists_stats.lua
@@ -508,7 +527,6 @@ share/ntopng/scripts/lua/get_host_traffi
share/ntopng/scripts/lua/get_hosts_data.lua
share/ntopng/scripts/lua/get_hosts_stats.lua
share/ntopng/scripts/lua/get_http_hosts.lua
-share/ntopng/scripts/lua/get_http_hosts_data.lua
share/ntopng/scripts/lua/get_icmp_data.lua
share/ntopng/scripts/lua/get_internals_checks_stats.lua
share/ntopng/scripts/lua/get_internals_hash_tables_stats.lua
@@ -516,8 +534,6 @@ share/ntopng/scripts/lua/get_internals_p
share/ntopng/scripts/lua/get_internals_queues_stats.lua
share/ntopng/scripts/lua/get_macs_data.lua
share/ntopng/scripts/lua/get_macs_stats.lua
-share/ntopng/scripts/lua/get_network_data.lua
-share/ntopng/scripts/lua/get_networks_data.lua
share/ntopng/scripts/lua/get_os_data.lua
share/ntopng/scripts/lua/get_pods_data.lua
share/ntopng/scripts/lua/get_pool_data.lua
@@ -527,7 +543,6 @@ share/ntopng/scripts/lua/get_processes_g
share/ntopng/scripts/lua/get_recipients_endpoint.lua
share/ntopng/scripts/lua/get_system_interfaces_stats.lua
share/ntopng/scripts/lua/get_timeseries_list.lua
-share/ntopng/scripts/lua/get_top_talkers.lua
share/ntopng/scripts/lua/get_treemap.lua
share/ntopng/scripts/lua/get_unknown_devices_data.lua
share/ntopng/scripts/lua/get_username_data.lua
@@ -547,7 +562,6 @@ share/ntopng/scripts/lua/hosts_compariso
share/ntopng/scripts/lua/hosts_geomap.lua
share/ntopng/scripts/lua/hosts_stats.lua
share/ntopng/scripts/lua/hotspot-detect.lua
-share/ntopng/scripts/lua/http_servers_stats.lua
share/ntopng/scripts/lua/http_status_code.lua
share/ntopng/scripts/lua/if_pkt_distro.lua
share/ntopng/scripts/lua/if_stats.lua
@@ -559,7 +573,6 @@ share/ntopng/scripts/lua/iface_ports_lis
share/ntopng/scripts/lua/inc/add_user_dialog.lua
share/ntopng/scripts/lua/inc/container_columns.lua
share/ntopng/scripts/lua/inc/delete_user_dialog.lua
-share/ntopng/scripts/lua/inc/ebpf_flows_stats.lua
share/ntopng/scripts/lua/inc/edit_categories.lua
share/ntopng/scripts/lua/inc/edit_ndpi_applications.lua
share/ntopng/scripts/lua/inc/edit_presets.lua
@@ -638,6 +651,7 @@ share/ntopng/scripts/lua/modules/alert_d
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_malicious_fingerprint.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_malicious_sha1_certificate.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_malware_host_contacted.lua
+share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_mismatching_protocol_with_ip.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_numeric_ip_host.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_periodic_flow.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_possible_exploit.lua
@@ -658,10 +672,12 @@ share/ntopng/scripts/lua/modules/alert_d
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_tls_suspicious_extension.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_tls_uncommon_alpn.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_unidirectional_traffic.lua
+share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_unresolved_hostname.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_unsafe_protocol.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_url_possible_rce_injection.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_url_possible_sql_injection.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_ndpi_url_possible_xss.lua
+share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_nedge_policy_violation.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_packets_issues.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_periodicity_changed.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_qoe_degraded.lua
@@ -670,7 +686,6 @@ share/ntopng/scripts/lua/modules/alert_d
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_remote_to_local_insecure_flow.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_remote_to_remote.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_tcp_connection_no_answer.lua
-share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_tcp_connection_refused.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_tcp_flow_reset.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_tls_certificate_expired.lua
share/ntopng/scripts/lua/modules/alert_definitions/flow/alert_tls_certificate_mismatch.lua
@@ -709,6 +724,8 @@ share/ntopng/scripts/lua/modules/alert_d
share/ntopng/scripts/lua/modules/alert_definitions/host/host_alert_unexpected_gateway.lua
share/ntopng/scripts/lua/modules/alert_definitions/other/alert_acl_violation_arp.lua
share/ntopng/scripts/lua/modules/alert_definitions/other/alert_am_threshold_cross.lua
+share/ntopng/scripts/lua/modules/alert_definitions/other/alert_as_ranking_changed.lua
+share/ntopng/scripts/lua/modules/alert_definitions/other/alert_asn_rule_threshold_crossed.lua
share/ntopng/scripts/lua/modules/alert_definitions/other/alert_attack_mitigation_via_snmp.lua
share/ntopng/scripts/lua/modules/alert_definitions/other/alert_broadcast_domain_too_large.lua
share/ntopng/scripts/lua/modules/alert_definitions/other/alert_cidr_rule_threshold_crossed.lua
@@ -791,6 +808,7 @@ share/ntopng/scripts/lua/modules/alert_s
share/ntopng/scripts/lua/modules/alert_store/alert_store_utils.lua
share/ntopng/scripts/lua/modules/alert_store/all_alert_store.lua
share/ntopng/scripts/lua/modules/alert_store/am_alert_store.lua
+share/ntopng/scripts/lua/modules/alert_store/as_alert_store.lua
share/ntopng/scripts/lua/modules/alert_store/flow_alert_store.lua
share/ntopng/scripts/lua/modules/alert_store/host_alert_store.lua
share/ntopng/scripts/lua/modules/alert_store/interface_alert_store.lua
@@ -803,14 +821,17 @@ share/ntopng/scripts/lua/modules/alert_u
share/ntopng/scripts/lua/modules/alerts_api.lua
share/ntopng/scripts/lua/modules/am_import_export.lua
share/ntopng/scripts/lua/modules/am_utils.lua
+share/ntopng/scripts/lua/modules/as_utils.lua
share/ntopng/scripts/lua/modules/auth.lua
share/ntopng/scripts/lua/modules/auth_sessions_utils.lua
share/ntopng/scripts/lua/modules/base64.lua
share/ntopng/scripts/lua/modules/behavior_utils.lua
share/ntopng/scripts/lua/modules/blog_utils.lua
+share/ntopng/scripts/lua/modules/cache_utils.lua
share/ntopng/scripts/lua/modules/callback_utils.lua
share/ntopng/scripts/lua/modules/captive_portal_utils.lua
share/ntopng/scripts/lua/modules/categories_utils.lua
+share/ntopng/scripts/lua/modules/check_definitions/as/PLACEHOLDER
share/ntopng/scripts/lua/modules/check_definitions/flow/binary_application_transfer.lua
share/ntopng/scripts/lua/modules/check_definitions/flow/blacklisted.lua
share/ntopng/scripts/lua/modules/check_definitions/flow/blacklisted_client_contact.lua
@@ -932,8 +953,11 @@ share/ntopng/scripts/lua/modules/checks_
share/ntopng/scripts/lua/modules/classes.lua
share/ntopng/scripts/lua/modules/code_editor.lua
share/ntopng/scripts/lua/modules/companion_interface_utils.lua
+share/ntopng/scripts/lua/modules/conf_handlers/isc_dhcp_server.lua
+share/ntopng/scripts/lua/modules/conf_handlers/kea_dhcp_server.lua
share/ntopng/scripts/lua/modules/conf_handlers/netplan.lua
share/ntopng/scripts/lua/modules/conf_handlers/network_ifaces.lua
+share/ntopng/scripts/lua/modules/conf_handlers/smcroute.lua
share/ntopng/scripts/lua/modules/conf_handlers/wireless.lua
share/ntopng/scripts/lua/modules/configuration_utils.lua
share/ntopng/scripts/lua/modules/connectivity_utils.lua
@@ -941,6 +965,7 @@ share/ntopng/scripts/lua/modules/consts.
share/ntopng/scripts/lua/modules/continent_codes.lua
share/ntopng/scripts/lua/modules/control_groups.lua
share/ntopng/scripts/lua/modules/country_codes.lua
+share/ntopng/scripts/lua/modules/country_keys.lua
share/ntopng/scripts/lua/modules/country_utils.lua
share/ntopng/scripts/lua/modules/cpu_utils.lua
share/ntopng/scripts/lua/modules/custom_column_utils.lua
@@ -953,22 +978,28 @@ share/ntopng/scripts/lua/modules/datasou
share/ntopng/scripts/lua/modules/datatable_utils.lua
share/ntopng/scripts/lua/modules/db_utils.lua
share/ntopng/scripts/lua/modules/delete_data_utils.lua
-share/ntopng/scripts/lua/modules/dhcp_service_utils.lua
+share/ntopng/scripts/lua/modules/dhcp_server_utils.lua
share/ntopng/scripts/lua/modules/dhcp_utils.lua
share/ntopng/scripts/lua/modules/discover_utils.lua
share/ntopng/scripts/lua/modules/dkjson.lua
share/ntopng/scripts/lua/modules/dns_utils.lua
share/ntopng/scripts/lua/modules/dscp_consts.lua
share/ntopng/scripts/lua/modules/ebpf_utils.lua
+share/ntopng/scripts/lua/modules/exporters_utils.lua
share/ntopng/scripts/lua/modules/field_units.lua
share/ntopng/scripts/lua/modules/file_utils.lua
share/ntopng/scripts/lua/modules/fingerprint_utils.lua
share/ntopng/scripts/lua/modules/flow_consts.lua
+share/ntopng/scripts/lua/modules/flow_data.lua
+share/ntopng/scripts/lua/modules/flow_data_historical.lua
+share/ntopng/scripts/lua/modules/flow_data_preset.lua
share/ntopng/scripts/lua/modules/flow_field_value_maps.lua
share/ntopng/scripts/lua/modules/flow_field_value_maps/sonicwall_app_id.lua
+share/ntopng/scripts/lua/modules/flow_pie.lua
share/ntopng/scripts/lua/modules/flow_risk_simple_alert_definition.lua
share/ntopng/scripts/lua/modules/flow_risk_simple_check_definition.lua
share/ntopng/scripts/lua/modules/flow_risk_utils.lua
+share/ntopng/scripts/lua/modules/flow_sankey.lua
share/ntopng/scripts/lua/modules/flow_utils.lua
share/ntopng/scripts/lua/modules/format_utils.lua
share/ntopng/scripts/lua/modules/graph_common.lua
@@ -976,6 +1007,7 @@ share/ntopng/scripts/lua/modules/graph_u
share/ntopng/scripts/lua/modules/gui_utils.lua
share/ntopng/scripts/lua/modules/historical_flow_details_formatter.lua
share/ntopng/scripts/lua/modules/historical_flow_utils.lua
+share/ntopng/scripts/lua/modules/historical_format_utils.lua
share/ntopng/scripts/lua/modules/host_pools_nedge.lua
share/ntopng/scripts/lua/modules/host_utils.lua
share/ntopng/scripts/lua/modules/http_bridge_conf_utils.lua
@@ -1067,7 +1099,6 @@ share/ntopng/scripts/lua/modules/rrd_pat
share/ntopng/scripts/lua/modules/rrd_utils.lua
share/ntopng/scripts/lua/modules/script_manager.lua
share/ntopng/scripts/lua/modules/scripts_triggers.lua
-share/ntopng/scripts/lua/modules/smcroute_service_utils.lua
share/ntopng/scripts/lua/modules/snmp_consts.lua
share/ntopng/scripts/lua/modules/snmp_mappings.lua
share/ntopng/scripts/lua/modules/stats_utils.lua
@@ -1155,10 +1186,13 @@ share/ntopng/scripts/lua/rest/v2/acknowl
share/ntopng/scripts/lua/rest/v2/acknowledge/system/alerts.lua
share/ntopng/scripts/lua/rest/v2/acknowledge/user/alerts.lua
share/ntopng/scripts/lua/rest/v2/add/host/pool.lua
+share/ntopng/scripts/lua/rest/v2/add/host/pool_member.lua
share/ntopng/scripts/lua/rest/v2/add/host/to_scan.lua
+share/ntopng/scripts/lua/rest/v2/add/ntopng/analyze_pcap.lua
share/ntopng/scripts/lua/rest/v2/add/ntopng/user.lua
share/ntopng/scripts/lua/rest/v2/add/tables/user_columns_config.lua
share/ntopng/scripts/lua/rest/v2/bind/host/pool/member.lua
+share/ntopng/scripts/lua/rest/v2/blacklist/reload.lua
share/ntopng/scripts/lua/rest/v2/connect/test.lua
share/ntopng/scripts/lua/rest/v2/create/ntopng/api_token.lua
share/ntopng/scripts/lua/rest/v2/create/ntopng/session.lua
@@ -1167,12 +1201,14 @@ share/ntopng/scripts/lua/rest/v2/delete/
share/ntopng/scripts/lua/rest/v2/delete/all/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/am_host/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/application/application.lua
+share/ntopng/scripts/lua/rest/v2/delete/as/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/endpoints.lua
share/ntopng/scripts/lua/rest/v2/delete/flow/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/host/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/host/delete_host_to_scan.lua
share/ntopng/scripts/lua/rest/v2/delete/host/new_devices.lua
share/ntopng/scripts/lua/rest/v2/delete/host/pool.lua
+share/ntopng/scripts/lua/rest/v2/delete/host/pool_member.lua
share/ntopng/scripts/lua/rest/v2/delete/interface/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/mac/alerts.lua
share/ntopng/scripts/lua/rest/v2/delete/network/alerts.lua
@@ -1185,6 +1221,7 @@ share/ntopng/scripts/lua/rest/v2/disable
share/ntopng/scripts/lua/rest/v2/edit/application/application.lua
share/ntopng/scripts/lua/rest/v2/edit/category/category.lua
share/ntopng/scripts/lua/rest/v2/edit/host/pool.lua
+share/ntopng/scripts/lua/rest/v2/edit/host/pool/member.lua
share/ntopng/scripts/lua/rest/v2/edit/host/update_va_scan_period.lua
share/ntopng/scripts/lua/rest/v2/edit/ntopng/incr_flows.lua
share/ntopng/scripts/lua/rest/v2/edit/ntopng/incr_hosts.lua
@@ -1215,9 +1252,16 @@ share/ntopng/scripts/lua/rest/v2/get/all
share/ntopng/scripts/lua/rest/v2/get/all/alert/ts.lua
share/ntopng/scripts/lua/rest/v2/get/am_host/alert/list.lua
share/ntopng/scripts/lua/rest/v2/get/am_host/alert/ts.lua
+share/ntopng/scripts/lua/rest/v2/get/as/alert/alert_details.lua
+share/ntopng/scripts/lua/rest/v2/get/as/alert/list.lua
+share/ntopng/scripts/lua/rest/v2/get/as/alert/ts.lua
share/ntopng/scripts/lua/rest/v2/get/asn/asn_info.lua
share/ntopng/scripts/lua/rest/v2/get/asn/asn_name.lua
+share/ntopng/scripts/lua/rest/v2/get/asn/config.lua
share/ntopng/scripts/lua/rest/v2/get/asn/get_as_data.lua
+share/ntopng/scripts/lua/rest/v2/get/asn/get_top_asn.lua
+share/ntopng/scripts/lua/rest/v2/get/asn/pie.lua
+share/ntopng/scripts/lua/rest/v2/get/asn/sankey.lua
share/ntopng/scripts/lua/rest/v2/get/category/list.lua
share/ntopng/scripts/lua/rest/v2/get/checks/config.lua
share/ntopng/scripts/lua/rest/v2/get/checks/subdirs.lua
@@ -1286,6 +1330,7 @@ share/ntopng/scripts/lua/rest/v2/get/int
share/ntopng/scripts/lua/rest/v2/get/interface/alert/ts.lua
share/ntopng/scripts/lua/rest/v2/get/interface/arp.lua
share/ntopng/scripts/lua/rest/v2/get/interface/bcast_domains.lua
+share/ntopng/scripts/lua/rest/v2/get/interface/current_interface.lua
share/ntopng/scripts/lua/rest/v2/get/interface/data.lua
share/ntopng/scripts/lua/rest/v2/get/interface/dscp/stats.lua
share/ntopng/scripts/lua/rest/v2/get/interface/l7/cat_data.lua
@@ -1301,12 +1346,17 @@ share/ntopng/scripts/lua/rest/v2/get/l7/
share/ntopng/scripts/lua/rest/v2/get/mac/alert/list.lua
share/ntopng/scripts/lua/rest/v2/get/mac/alert/ts.lua
share/ntopng/scripts/lua/rest/v2/get/mac/data.lua
+share/ntopng/scripts/lua/rest/v2/get/mac/mac_filters.lua
+share/ntopng/scripts/lua/rest/v2/get/mac/macs_list.lua
+share/ntopng/scripts/lua/rest/v2/get/ndpi/export/categories.lua
+share/ntopng/scripts/lua/rest/v2/get/ndpi/export/protocols.lua
share/ntopng/scripts/lua/rest/v2/get/network/alert/list.lua
share/ntopng/scripts/lua/rest/v2/get/network/alert/ts.lua
share/ntopng/scripts/lua/rest/v2/get/network/config.lua
share/ntopng/scripts/lua/rest/v2/get/network/discovery/discover.lua
share/ntopng/scripts/lua/rest/v2/get/network/discovery/run_discovery.lua
share/ntopng/scripts/lua/rest/v2/get/network/networks.lua
+share/ntopng/scripts/lua/rest/v2/get/network/networks_stats.lua
share/ntopng/scripts/lua/rest/v2/get/ntopng/applications.lua
share/ntopng/scripts/lua/rest/v2/get/ntopng/get_preferences.lua
share/ntopng/scripts/lua/rest/v2/get/ntopng/interfaces.lua
@@ -1336,6 +1386,7 @@ share/ntopng/scripts/lua/rest/v2/get/sys
share/ntopng/scripts/lua/rest/v2/get/system/health/redis.lua
share/ntopng/scripts/lua/rest/v2/get/system/health/stats.lua
share/ntopng/scripts/lua/rest/v2/get/system/logs.lua
+share/ntopng/scripts/lua/rest/v2/get/system/reload_ndpi.lua
share/ntopng/scripts/lua/rest/v2/get/system/status.lua
share/ntopng/scripts/lua/rest/v2/get/tables/user_columns_config.lua
share/ntopng/scripts/lua/rest/v2/get/timeseries/date_format.lua
@@ -1361,6 +1412,7 @@ share/ntopng/scripts/lua/rest/v2/reset/p
share/ntopng/scripts/lua/rest/v2/reset/snmp/config.lua
share/ntopng/scripts/lua/rest/v2/reset/snmp_data/config.lua
share/ntopng/scripts/lua/rest/v2/set/active_monitoring/measurement.lua
+share/ntopng/scripts/lua/rest/v2/set/asn/config.lua
share/ntopng/scripts/lua/rest/v2/set/checks/config.lua
share/ntopng/scripts/lua/rest/v2/set/device/alias.lua
share/ntopng/scripts/lua/rest/v2/set/host/alias.lua
@@ -1392,6 +1444,7 @@ share/ntopng/scripts/lua/system_stats.lu
share/ntopng/scripts/lua/system_stats_data.lua
share/ntopng/scripts/lua/toggle_all_checks.lua
share/ntopng/scripts/lua/traffic_recording_config.lua
+share/ntopng/scripts/lua/ts_overview.lua
share/ntopng/scripts/lua/unknown_devices.lua
share/ntopng/scripts/lua/update_blog_posts.lua
share/ntopng/scripts/lua/update_prefs.lua
@@ -1403,8 +1456,8 @@ share/ntopng/scripts/lua/vulnerability_s
share/ntopng/scripts/shell/README
share/ntopng/scripts/templates/dashboard/assets.json
share/ntopng/scripts/templates/dashboard/community.json
-share/ntopng/scripts/templates/dashboard/enterprise-with-db.json
share/ntopng/scripts/templates/dashboard/enterprise.json
+share/ntopng/scripts/templates/dashboard/enterprise_as_mode.json
share/ntopng/scripts/templates/dashboard/infrastructure.json
share/ntopng/scripts/templates/dashboard/nedge-enterprise.json
share/ntopng/scripts/templates/dashboard/nedge.json
Index: pkgsrc/net/ntopng/distinfo
diff -u pkgsrc/net/ntopng/distinfo:1.18 pkgsrc/net/ntopng/distinfo:1.19
--- pkgsrc/net/ntopng/distinfo:1.18 Thu Aug 7 05:05:58 2025
+++ pkgsrc/net/ntopng/distinfo Wed Jun 10 13:18:13 2026
@@ -1,11 +1,12 @@
-$NetBSD: distinfo,v 1.18 2025/08/07 05:05:58 adam Exp $
+$NetBSD: distinfo,v 1.19 2026/06/10 13:18:13 adam Exp $
-BLAKE2s (ntopng-6.4-httpdocs.tar.gz) = 65e7eee5286a6d59df2e186f2b81be8fdb7764e9b1b3178427fe8f0183c66176
-SHA512 (ntopng-6.4-httpdocs.tar.gz) = d518b3e1f95312a5a250a7c09de303a39b58b0ffbf1386c13a29962ce0d0cecdecd2ba77207eada095a5b4ae6f387979a22dbba4f6448019feb10f7969446725
-Size (ntopng-6.4-httpdocs.tar.gz) = 7999962 bytes
-BLAKE2s (ntopng-6.4.tar.gz) = d5e6ca8463a701295fc6766aba54d3f0e36ea622691d43b7f702283450a65226
-SHA512 (ntopng-6.4.tar.gz) = a4ff3058b9a10677485808ac51c67a728b1df536df7e818925ff0515b597d5fad4dedacd1c80a62c0408606c86376d73bb38986d85f68385e2e2de3ba82e03a4
-Size (ntopng-6.4.tar.gz) = 80787345 bytes
+BLAKE2s (ntopng-6.6.tar.gz) = 602f8ab521d51e59bd7a8f9636829d25275805bda22e741bdbb4bc79610f31fd
+SHA512 (ntopng-6.6.tar.gz) = 7e3f9fce3a88b245bcea6b471e2f0ed85fab7577ebfd92bd85b774a89514aa168d703057725ccedd5dbd8e00ebf4bb034e21cf0c9ad345e317c30674f832aa29
+Size (ntopng-6.6.tar.gz) = 82387035 bytes
+BLAKE2s (ntopng-dist-6.6-stable.tar.gz) = 505807cc47f9f5d268b717bedc03c2f85a291d7763d9f078e19b94bfafb58608
+SHA512 (ntopng-dist-6.6-stable.tar.gz) = 4510c351a88a8ae2f9145ef5bae8ab023894bbadcd1f98c9e03ab46cf667b14a7c0efaee41eb3519df3d991eb0cd140fd12dbf5a1f5ac6d7cedc4155abda8bb7
+Size (ntopng-dist-6.6-stable.tar.gz) = 7145478 bytes
+SHA1 (patch-Makefile.in) = 29e8f23b9147bc744570e7093f0effc27d7ee986
SHA1 (patch-configure.ac.in) = 08ba8383478fe58ce8cedf8c5466bbb6a1be59c3
SHA1 (patch-httpdocs_misc_ntopng-utils-manage-updates.in) = c6a4bf93c0464d2c2e8493f3b5de9b5c243a1e52
SHA1 (patch-include_Redis.h) = cf73f5e53abdeb096d93449327365931ba99ae2b
Added files:
Index: pkgsrc/net/ntopng/patches/patch-Makefile.in
diff -u /dev/null pkgsrc/net/ntopng/patches/patch-Makefile.in:1.11
--- /dev/null Wed Jun 10 13:18:13 2026
+++ pkgsrc/net/ntopng/patches/patch-Makefile.in Wed Jun 10 13:18:13 2026
@@ -0,0 +1,24 @@
+$NetBSD: patch-Makefile.in,v 1.11 2026/06/10 13:18:13 adam Exp $
+
+Use correct clickhouse-cpp.
+
+--- Makefile.in.orig 2026-06-08 11:44:52.455150303 +0000
++++ Makefile.in
+@@ -34,15 +34,9 @@ LUA_HOME=${PWD}/third-party/lua-5.4.6
+ LUA_INC=-I$(LUA_HOME)/src
+ LUA_LIB=$(LUA_HOME)/src/liblua.a
+
+-CLICKHOUSE_HOME=@CLICKHOUSE_HOME@
+-CLICKHOUSE_INC=
+-CLICKHOUSE_LIB=
++CLICKHOUSE_INC=-I${prefix}/include/clickhouse
++CLICKHOUSE_LIB=-lclickhouse-cpp-lib
+ CLICKHOUSE_DEP_LIBS=
+-#ifeq ($(OS),Linux)
+-CLICKHOUSE_INC=-I$(CLICKHOUSE_HOME) -I$(CLICKHOUSE_HOME)/contrib/absl
+-CLICKHOUSE_LIB=$(CLICKHOUSE_HOME)/build/clickhouse/libclickhouse-cpp-lib.a
+-CLICKHOUSE_DEP_LIBS=$(CLICKHOUSE_HOME)/build/contrib/cityhash/cityhash/libcityhash.a $(CLICKHOUSE_HOME)/build/contrib/lz4/lz4/liblz4.a
+-#endif
+
+ ifeq ($(OS),Linux)
+ LUA_PLATFORM=linux
Home |
Main Index |
Thread Index |
Old Index