timed was irresponsibly butchered out of 13.0-CURRENT without warning.
After complaint 2018-12 on current@ theres talk someone will later make a port.

timed has been removed from 13.0-RELEASE/usr.sbin/timed I have not yet moved this to ports

From: FreeBSD-gnats-submit@@FreeBSD.org
Date: Thu, 15 May 2008 14:20:01 GMT (16:20 CEST)
To: "\"Julian H. Stacey\" <jhs@@berklix.com>" <jhs@@berklix.org>

Thank you very much for your problem report.
It has the internal identification `bin/123703'.
The individual assigned to look at your
report is: freebsd-bugs. 

You can access the state of your problem report at any time
via this link:

http://www.freebsd.org/cgi/query-pr.cgi?pr=123703

>Category:       bin
>Responsible:    freebsd-bugs
>Synopsis:       qualify bad diagnostic in src/usr.sbin/timed/timedc/cmds.c
>Arrival-Date:   Thu May 15 14:20:01 UTC 2008

----------------

http://www.berklix.com/~jhs/src/bsd/fixes/freebsd/src/gen/usr.sbin/timed/timed/cmds.c.diff.REL=ALL

Before this patch if the remote master was killed, the local slave lied & said
	communication error with localhost
With this patch the code at least no longer lies.

Patch is hack, 
I would like to read the code & do better, but I dont have time.

the code has not been unchanged for over 4 years 
this diff also applies to 7.0-RELEASE

*** 6.2-RELEASE/src/usr.sbin/timed/timedc/cmds.c	Wed Feb  4 22:59:29 2004
--- new-generic/src/usr.sbin/timed/timedc/cmds.c	Thu May 15 15:20:19 2008
***************
*** 356,361 ****
--- 356,364 ----
  			}
  		} else {
  			printf("communication error with %s\n", tgtname);
+ 			printf(
+ " (A dead remote master is also reported as \"... with localhost\").\n"
+ 				);
  		}
  	} while (++i < argc);
  }
