https://bugzilla.novell.com/show_bug.cgi?id=339036#c3 Lukas Ocilka <locilka@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #3 from Lukas Ocilka <locilka@novell.com> 2007-11-14 06:03:45 MST --- I've found that. YaST parser for named.conf wasn't prepared for key-definitions written inside. It works with keys in a separate file. To hot-fix it: Edit file /usr/share/YaST2/scrconf/dns_named.scr Index: dns_named.scr =================================================================== --- dns_named.scr (revision 42021) +++ dns_named.scr (working copy) @@ -34,7 +34,7 @@ "sections" : [ $[ // "begin" : [ "[ \t]*([^ \t]+(.*[^ \t]+)*)[ \t]*\\{$", "%s {" ], - "begin" : [ "[ \t]*((options|view|zone|logging)+(.*[^ \t]+)*)[ \t]*\\{$", "%s {" ], + "begin" : [ "[ \t]*((options|view|zone|logging|key)+(.*[^ \t]+)*)[ \t]*\\{$", "%s {" ], "end" : [ "^[ \t]*\\}[ \t]*;", "};" ], ], ], And/or include a key file instead of inserting it into named.conf :) --- file: /etc/named.d/key-1 --- key SomeID { algorithm hmac-md5; secret "........"; }; --- file: /etc/named.d/key-1 --- --- file: /etc/sysconfig/named --- .. NAMED_CONF_INCLUDE_FILES="/etc/named.d/key-1" .. --- file: /etc/sysconfig/named --- --- file: /etc/named.conf --- .. zone "example.com" in { allow-transfer { any; }; file "dyn/example.com"; type master; allow-update { key SomeID; }; }; .. --- file: /etc/named.conf --- Will be fixed in yast2-dns-server 2.16.0 (FACTORY) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.