Skip to content

Commit

Permalink
[remoteopenhab] Suppress the IP check (openhab#10049)
Browse files Browse the repository at this point in the history
Fix openhab#10026

Signed-off-by: Laurent Garnier <[email protected]>
  • Loading branch information
lolodomo authored Feb 6, 2021
1 parent 11da3d6 commit e634304
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.util.Map;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

import javax.ws.rs.client.ClientBuilder;

Expand Down Expand Up @@ -55,7 +54,6 @@
import org.openhab.core.library.types.QuantityType;
import org.openhab.core.library.types.RawType;
import org.openhab.core.library.types.StringType;
import org.openhab.core.net.NetUtil;
import org.openhab.core.thing.Bridge;
import org.openhab.core.thing.Channel;
import org.openhab.core.thing.ChannelUID;
Expand Down Expand Up @@ -136,14 +134,6 @@ public void initialize() {
"Undefined server address setting in the thing configuration");
return;
}
List<String> localIpAddresses = NetUtil.getAllInterfaceAddresses().stream()
.filter(a -> !a.getAddress().isLinkLocalAddress())
.map(a -> a.getAddress().getHostAddress().split("%")[0]).collect(Collectors.toList());
if (localIpAddresses.contains(host)) {
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR,
"Do not use the local server as a remote server in the thing configuration");
return;
}
String path = config.restPath.trim();
if (path.length() == 0 || !path.startsWith("/")) {
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR,
Expand Down

0 comments on commit e634304

Please sign in to comment.