我正在尝试将最大可用主机地址的数值转换为CIDR表示法IP,例如:192.168.1.1/28的可用主机空间为14。 但是192.168.1.1/30和/ 31都具有2的可用主机空间,这正是问题所在。 以下代码显示了预期值和实际值:
let ip = "192.168.1.1";
console.log("max hosts of 14, expected: 255.255.255.240, got: " + test(ip, 14));
//the problem, these should give the correct result respectively
console.log("max hosts of 2, expected: 255.255.255.254, got: " + test(ip, 2));
console.log("max hosts of 2, expected: 255.255.255.252, got: " + test(ip, 2));
let test = function(ip, maxHosts){
let numericNetmask = (maxHosts ^ 0xFFFFFFFF) - 1;
let str = [];
for (let shift = 24; shift > 0; shift -= 8) {
str.push(((numericNetmask >>> shift) & 0xFF).toString());
}
str.push((numericNetmask & 0xFF).toString());
return str.join(".");
};
现在我当然知道,在这种情况下,不可能将最大的主机自己转换回网络掩码,但是,给定IP地址是否可以? (注意:这是类的超联网)。
当然,在正常使用情况下,例如,可以通过将CIDR网络掩码存储为值来“黑客入侵”这种形式,但是我希望找到一种替代方法。