Log unauthorized Subnets when StrictSubnets is set.
[oweals/tinc.git] / src / protocol_subnet.c
index c284622485120fa1717b08510954ae12e5954313..9ae491d0533b276ac409b87fc4be0559439d268b 100644 (file)
@@ -115,6 +115,8 @@ bool add_subnet_h(connection_t *c) {
        /* Ignore if strictsubnets is true, but forward it to others */
 
        if(strictsubnets) {
+               logger(LOG_WARNING, "Ignoring unauthorized %s from %s (%s): %s",
+                               "ADD_SUBNET", c->name, c->hostname, subnetstr);
                forward_request(c);
                return true;
        }