From a49d86ccc19e24e97ea46b674de5528b7013b0d7 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 3 Apr 2000 17:12:25 +0000 Subject: Additional fix for nmbd and 127.0.0.1 interface. Jeremy. (This used to be commit 715fa7ea8cf00d72c868bed420c28a29011f53a1) --- source3/nmbd/nmbd_subnetdb.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source3/nmbd/nmbd_subnetdb.c b/source3/nmbd/nmbd_subnetdb.c index 37b50f8525..330be4057f 100644 --- a/source3/nmbd/nmbd_subnetdb.c +++ b/source3/nmbd/nmbd_subnetdb.c @@ -235,6 +235,7 @@ BOOL create_subnets(void) int num_interfaces = iface_count(); int i; struct in_addr unicast_ip; + extern struct in_addr loopback_ip; if(num_interfaces == 0) { @@ -251,6 +252,17 @@ BOOL create_subnets(void) { struct interface *iface = get_interface(i); + /* + * We don't want to add a loopback interface, in case + * someone has added 127.0.0.1 for smbd, nmbd needs to + * ignore it here. JRA. + */ + + if (ip_equal(iface->ip, loopback_ip)) { + DEBUG(2,("create_subnets: Ignoring loopback interface.\n" )); + continue; + } + if (!make_normal_subnet(iface)) return False; } -- cgit