public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] IDS: Add GREEN and BLUE addresses to the list of DNS servers.
@ 2020-04-03 14:59 Stefan Schantl
  2020-04-05  7:51 ` Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2020-04-03 14:59 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1241 bytes --]

Fixes #12349.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 config/cfgroot/ids-functions.pl | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions.pl
index 5bc3e77ec..f124b12be 100644
--- a/config/cfgroot/ids-functions.pl
+++ b/config/cfgroot/ids-functions.pl
@@ -718,13 +718,28 @@ sub generate_dns_servers_file() {
 	# Get the used DNS servers.
 	my @nameservers = &General::get_nameservers();
 
+	# Get network settings.
+	my %netsettings;
+	&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
+
 	# Format dns servers declaration.
 	my $line = "";
 
 	# Check if the system has configured nameservers.
 	if (@nameservers) {
+		# Add the GREEN address as DNS servers.
+		push(@nameservers, $netsettings{'GREEN_ADDRESS'});
+
+		# Check if a BLUE zone exists.
+		if ($netsettings{'BLUE_ADDRESS'}) {
+			# Add the BLUE address to the array of nameservers.
+			push(@nameservers, $netsettings{'BLUE_ADDRESS'});
+		}
+
+		# Generate the line which will be written to the DNS servers file.
 		$line = join(",", @nameservers);
 	} else {
+		# External net simply contains (any).
 		$line = "\$EXTERNAL_NET";
 	}
 
-- 
2.26.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] IDS: Add GREEN and BLUE addresses to the list of DNS servers.
  2020-04-03 14:59 [PATCH] IDS: Add GREEN and BLUE addresses to the list of DNS servers Stefan Schantl
@ 2020-04-05  7:51 ` Peter Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Müller @ 2020-04-05  7:51 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1412 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> Fixes #12349.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>  config/cfgroot/ids-functions.pl | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
> 
> diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions.pl
> index 5bc3e77ec..f124b12be 100644
> --- a/config/cfgroot/ids-functions.pl
> +++ b/config/cfgroot/ids-functions.pl
> @@ -718,13 +718,28 @@ sub generate_dns_servers_file() {
>  	# Get the used DNS servers.
>  	my @nameservers = &General::get_nameservers();
>  
> +	# Get network settings.
> +	my %netsettings;
> +	&General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
> +
>  	# Format dns servers declaration.
>  	my $line = "";
>  
>  	# Check if the system has configured nameservers.
>  	if (@nameservers) {
> +		# Add the GREEN address as DNS servers.
> +		push(@nameservers, $netsettings{'GREEN_ADDRESS'});
> +
> +		# Check if a BLUE zone exists.
> +		if ($netsettings{'BLUE_ADDRESS'}) {
> +			# Add the BLUE address to the array of nameservers.
> +			push(@nameservers, $netsettings{'BLUE_ADDRESS'});
> +		}
> +
> +		# Generate the line which will be written to the DNS servers file.
>  		$line = join(",", @nameservers);
>  	} else {
> +		# External net simply contains (any).
>  		$line = "\$EXTERNAL_NET";
>  	}
>  
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-05  7:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-03 14:59 [PATCH] IDS: Add GREEN and BLUE addresses to the list of DNS servers Stefan Schantl
2020-04-05  7:51 ` Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox