Displaying 1 result from an estimated 1 matches for "permanent_ttl".
1998 Jun 16
3
How about this option for nmbd?
...32 1998
***************
*** 126,131 ****
--- 126,137 ----
add_samba_names_to_subnet(wins_server_subnet);
+ { struct in_addr ip;
+ ip = *interpret_addr2( "192.168.1.10" );
+ add_name_to_subnet( wins_server_subnet,
+ "AA_BB", 0x0, 0x64, PERMANENT_TTL, REGISTER_NAME, 1, &ip );
+ }
+
#ifndef SYNC_DNS
/* Setup the async dns. */
start_async_dns();
This works great since AA_BB is now resolved through the WINS
server.
Now my question is:
Would it make sense to implement this as a global option
in smb.conf? It could be simil...