问题标签 [subnet]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 无法从 Android 模拟器访问 192.168.xx 机器
我有两台机器连接到无线路由器。一个得到 192.168.1.2 的 ip,另一个得到 192.168.1.3 我有一个在 3 台机器上运行的 Web 服务器。我需要从 2 台机器访问该机器上的 php 文件。但无法得到。知道为什么吗?
c - 在 C 中在 Linux 上查找子网掩码
我有兴趣在 Linux 中以编程方式查找本地主机的子网掩码,最好是通过本机 C api。
ip - 如何从 IP 地址和子网确定网络 IP、网关和广播 IP?
我有一个 IP 地址 10.1.0.4
和子网 129
如何确定网络 IP、网关和广播 IP?
ios - NSURLConnection 在同一子网上的地址超时
我在 iPhone 4s、iOS5.1.1 上使用 NSURLConnection,并且在调用同一子网上的机器上的 php 脚本时遇到问题,例如:http://myMac.local/PHPscript.php
相同的 URL 有效在使用 Safari 的 iPhone 上很好,我的代码也很好用——只要机器在互联网上的某个地方——。在本地机器上,它会以某种超时运行,并且什么也不返回。
使用模拟器进行测试时,所有 3 个(名称、IP、外部名称)都可以工作,或者它们不工作。还不知道是什么导致事情开始工作......
报告的错误是:NSLocalizedDescription =请求超时。,NSUnderlyingError = 0x24e6c0。找不到那个号码:-(
关于我可以继续寻找的任何指针(谷歌搜索 NSURLConnection 和超时现在让我发疯:-<)
ip - 子网,我可以使用主机 ID 为零吗?
我很困惑我们可以使用主机ID为零的IP地址吗?
例如下面的子网示例:
地址:192.168.18.23网络
掩码:255.255.248.0
主机/网络:2046
主机最小值:192.168.16.1
主机最大值:192.168.23.254
由于min host id是192.168.16.1,所以会增加到192.168.16.255,然后ip 192.168.17.0 <----可以这样用吗?
谢谢
java - Match public IP addresses with user-supplied netmasks
Recently I was given a task at my company where I have to create a function like this:
This has nothing to do with routing. We have a network service that will use this function. The IP parameter varies upon all requests, the netMask parameter is user-supplied. The function must tell that an actual IP address matches with the supplied netmask or not. This is something like the user tells our system to only serve requests on the public internet to a specific subset of IP addresses, not all of them. My networking related knowledge is far from complete, so I did a deep search on the topic, but I didn't get very far. What I know (or been told): all the two parameteres are valid IP addresses or netmasks in xxx.xxx.xxx.xxx notation. I have to do a bitwise AND on them (obviously after converting them into BitSet or at least byte[] array). But I guess this is not the complete algorithm. So my question: what is the correct algorithm for matching an IP address with a netmask?
ps.: I'm working in Java, but I need the generic method.
delphi - 在Delphi中识别计算机的子网掩码
我正在寻找一种能够在 Delphi 中在运行时检索我当前正在运行的计算机的 IP 子网掩码的方法。
代码中有没有办法让我检索子网掩码并存储它,以便我可以在其他操作中使用它?
谢谢
amazon-web-services - VPC 子网实例之间的通信
我正在尝试设置一个非常简单的 VPC 环境,但我无法让子网中的实例互相看到:即,当我从 10.0.0.93 ping 10.0.0.10 时,它没有成功。
我认为这是属于一些错误配置的问题,但是,查看我找不到问题的所有内容。
这是我的路由表(默认):
只有一个 DHCP 选项:
我的网络 ACL(入站):
(出境):
我的安全组有(入站):
(出境):
谢谢,安德里亚
java - 当前连接信息 - Java
我试图让我的程序显示ipconfig
命令在 Windows 中显示的内容。我已经设法获取主机名和 IPv4 地址,我怎样才能获取 IPv6 地址和子网掩码?到目前为止,我尝试了各种方法无济于事。我的代码是:
考虑一下gsc.mainWindow
我打印任何类型对象的输出流。提前致谢!
(PS.如果有人可以添加一些我想不到的标签,我将不胜感激!)
java - 将通配符子网转换为最小的 cidr 子网列表
我需要将通配符子网转换为最小的 cidr 子网列表。例如:
上面的例子很简单,但对于像 1.2.3.4/252.0.128.0 这样的通配符子网,它更复杂。
Java中是否有一个库。
提前致谢。