当前位置: 首页 > news >正文

C++判定终端ip和目标ip是否在同一局域网内

程序如下:用于判断给定的终端 IP、子网掩码和目标 IP 是否在同一局域网内。请注意,这个程序假设 IP 地址是用整数表示的。

#include <iostream>
#include <sstream>
#include <vector>
#include <bitset>// Function to check if two IPs are in the same network
bool checkSameNetwork(std::string terminalIP, std::string subnetMask, std::string targetIP) {// Split the IP strings into octetsstd::istringstream terminalStream(terminalIP), subnetStream(subnetMask), targetStream(targetIP);std::vector<int> terminalOctets, subnetOctets, targetOctets;std::string octet;while (std::getline(terminalStream, octet, '.')) {terminalOctets.push_back(std::stoi(octet));}while (std::getline(subnetStream, octet, '.')) {subnetOctets.push_back(std::stoi(octet));}while (std::getline(targetStream, octet, '.')) {targetOctets.push_back(std::stoi(octet));}// Perform bitwise AND operation on corresponding octets of IP and subnet maskfor (size_t i = 0; i < 4; ++i) {if ((terminalOctets[i] & subnetOctets[i]) != (targetOctets[i] & subnetOctets[i])) {return false; // IPs are not in the same network}}return true; // IPs are in the same network
}int main() {std::string terminalIP, subnetMask, targetIP;// Input terminal IP, subnet mask, and target IPstd::cout << "Enter terminal IP: ";std::cin >> terminalIP;std::cout << "Enter subnet mask: ";std::cin >> subnetMask;std::cout << "Enter target IP: ";std::cin >> targetIP;// Check if terminal IP and target IP are in the same networkbool sameNetwork = checkSameNetwork(terminalIP, subnetMask, targetIP);// Output the resultif (sameNetwork) {std::cout << "true\n";} else {std::cout << "false\n";}return 0;
}

需要注意的是,此程序假定输入的 IP 地址是以点分十进制表示法给出的,并且子网掩码和 IP 地址都是有效的。此外,它假设 IPv4 地址,每个 IP 地址由四个十进制数构成。在实际生产环境中,还需要对输入进行更严格的验证和错误处理。

http://www.lryc.cn/news/271152.html

相关文章:

  • 深入解析 可空值类型
  • esp32idf使用thingscloud例程
  • 记一次应急响应练习(Linux)
  • Pandas教程(四)—— 分层索引及数据联合
  • 小梅哥Xilinx FPGA学习笔记16——FSM(状态机)的学习
  • vol----学习随记!!!
  • HarmonyOS4.0系统性深入开发10卡片事件能力说明
  • openGauss学习笔记-181 openGauss 数据库运维-升级-升级流程
  • 提前应对威胁
  • C语言与人生:数组交换和二分查找
  • Python实现【亚马逊商品】数据采集
  • Git使用教程 gittutorial
  • 有了向量数据库,我们还需 SQL 数据库吗?
  • 信息网络协议基础-IPv6协议
  • VC++ ado 实现单表CURD
  • C#使用switch多路选择语句判断何为季节
  • 可爱的魔法曲线 Lovely Magical Curves(12年开始只有5个人AC)
  • 通过C++程序实现光驱的自动化刻录和读取
  • 【电商项目实战】商品详情显示与Redis存储购物车信息
  • 概率论基础
  • Mac电脑CMake安装和配置
  • FormData传送复杂数据
  • 力扣回溯算法-电话号码的字母组合
  • 运维面试笔试题
  • Oracle database 静默安装 oracle12c 一键安装 12.1.0.2
  • 【Java EE初阶三 】线程的状态与安全(上)
  • 英飞凌TC3xx之一起认识GTM系列(五)如何实现GTM与DSADC关联的配置
  • 小兔鲜儿 uniapp - 购物车模块
  • Python使用PyMySql增删改查Mysql数据库
  • 前端实现websocket类封装