vty_interface: Remove bogus checks for Site ID and BTS ID.
diff --git a/openbsc/src/vty_interface.c b/openbsc/src/vty_interface.c
index 462cc64..1e0951a 100644
--- a/openbsc/src/vty_interface.c
+++ b/openbsc/src/vty_interface.c
@@ -895,17 +895,6 @@
 	int site_id = atoi(argv[0]);
 	int bts_id = atoi(argv[1]);
 
-	if (site_id < 0 || site_id > 65534) {
-		vty_out(vty, "%% Site ID %d is not in the valid range%s",
-			site_id, VTY_NEWLINE);
-		return CMD_WARNING;
-	}
-	if (site_id < 0 || site_id > 255) {
-		vty_out(vty, "%% BTS ID %d is not in the valid range%s",
-			bts_id, VTY_NEWLINE);
-		return CMD_WARNING;
-	}
-
 	if (!is_ipaccess_bts(bts)) {
 		vty_out(vty, "%% BTS is not of ip.access type%s", VTY_NEWLINE);
 		return CMD_WARNING;