2

I run these commands to install DNS server dependencies on openSUSE Tumbleweed:

sudo zypper in -t pattern dhcp_dns_server
sudo systemctl enable named.service
sudo systemctl start named.service

To configure the DNS server, I'm trying YAST2 following this documentation:

sudo yast2 dns-server

I intend to configure example.com domain zone with IP address 1.2.3.4.

What I did

I have a DNS zone of master type:

Zone: master

My NS Records tab is:

NS Records tab

My Records tab is:

Records tab

Problem

However, saving the configuration runs into a problem:

Warning

Saving the configuration failed. Change the settings?

Problem

I couldn't figure it out. Can anyone help?

Update

Suggested by @JiriB I ran these commands and reconfigured the DNS server. But the observation is the same as before:

sudo systemctl revert named.service
sudo rpm  -qV bind
sudo cp /etc/named.conf.YaST-backup /etc/named.conf
sudo yast2 dns-server
user4838962
  • 231
  • 2
  • 14

1 Answers1

1

The problem of:

Warning

Saving the configuration failed. Change the settings?

Got resolved by stopping the named service before launching YAST2:

sudo systemctl stop named.service
user4838962
  • 231
  • 2
  • 14