mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
21 lines
574 B
Lua
21 lines
574 B
Lua
--
|
|
-- (C) 2020 - ntop.org
|
|
--
|
|
|
|
return {
|
|
unexpected_dns_description = "Trigger an alert when not allowed DNS server is detected",
|
|
unexpected_dns_title = "Unexpected DNS",
|
|
|
|
-- ####################### Input builder strings
|
|
|
|
title = "Allowed DNS",
|
|
description = "Comma separated values of allowed DNS IPs. Example: 8.8.8.8,8.8.4.4,1.1.1.1",
|
|
|
|
-- ####################### Status strings
|
|
|
|
status_unexpected_dns_description = "Unexpected DNS server found: %{server}",
|
|
|
|
-- ####################### Alert strings
|
|
|
|
alert_unexpected_dns_title = "Unexpected DNS found"
|
|
}
|