判断两个 IP 地址是否在同一个局域网中

文章目录

    • 目的
    • 代码实现

目的

如何判断两个 IP 地址是否在同一个局域网中, 核心知识点是出于一个网络号, 主要是通过本身ip 与 所处的子网掩码进行 & 计算处理是否处于同一个局域网中(在 TCP/IP协议规则里面,IP地址与子网掩码做与运算)。

代码实现

#include 
#include 
#include 

bool checkSameSubnet(const std::string& ip1, const std::string& ip2, const std::string& subnetMask) {
    // 将 IP 地址和子网掩码转换为无符号整数
    unsigned long ip1Value = std::bitset<32>(ip1).to_ulong();
    unsigned long ip2Value = std::bitset<32>(ip2).to_ulong();
    unsigned long subnetMaskValue = std::bitset<32>(subnetMask).to_ulong();

    // 逻辑与运算,获取网络部分
    unsigned long subnet1 = ip1Value & subnetMaskValue;
    unsigned long subnet2 = ip2Value & subnetMaskValue;

    // 比较网络部分是否相同
    return subnet1 == subnet2;
}

int main() {
    std::string ip1 = "192.168.1.100";
    std::string ip2 = "192.168.1.200";
    std::string subnetMask = "255.255.255.0";

    bool sameSubnet = checkSameSubnet(ip1, ip2, subnetMask);
    if (sameSubnet) {
        std::cout << "IP addresses are in the same subnet." << std::endl;
    } else {
        std::cout << "IP addresses are not in the same subnet." << std::endl;
    }

    return 0;
}
``

你可能感兴趣的:(tcp/ip,网络协议)