From e85adbd947fac6b5385f1b74eba506e53c78f483 Mon Sep 17 00:00:00 2001 From: Alexei Gradinari Date: Wed, 10 Aug 2016 15:41:38 -0400 Subject: core: Entity ID is not set or invalid The Exchanging Device and Mailbox States could not working if the Entity ID (EID) is not set manually and can't be obtained from ethernet interface. This patch replaces debug message to warning and addes missing description about option 'entityid' to asterisk.conf.sample. With this patch the asterisk also: (1) decline loading the modules which won't work without EID: res_corosync and res_pjsip_publish_asterisk. (2) warn if EID is empty on loading next modules: pbx_dundi, res_xmpp Starting with v197 systemd/udev will automatically assign "predictable" names for all local Ethernet interfaces. This patch also addes some new ethernet prefixes "eno" and "ens". ASTERISK-26164 #close Change-Id: I72d712f1ad5b6f64571bb179c5cb12461e7c58c6 --- pbx/pbx_dundi.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pbx') diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c index 94b71a002..af5cb32ae 100644 --- a/pbx/pbx_dundi.c +++ b/pbx/pbx_dundi.c @@ -4847,6 +4847,9 @@ static int set_config(char *config_file, struct sockaddr_in* sin, int reload) ast_log(LOG_WARNING, "Unable to get host name!\n"); AST_LIST_LOCK(&peers); + if (ast_eid_is_empty(&ast_eid_default)) { + ast_log(LOG_WARNING, "Entity ID is not set.\n"); + } memcpy(&global_eid, &ast_eid_default, sizeof(global_eid)); global_storehistory = 0; -- cgit v1.2.3