`

list all ip address

 
阅读更多

import java.net.InetAddress;

import java.net.NetworkInterface;

import java.net.SocketException;

import java.util.Collections;

import java.util.Enumeration;

 

public class IPAddressTest {

 

public static void main(String args[]) throws SocketException {

        Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();

        for (NetworkInterface netint : Collections.list(nets))

            displayInterfaceInformation(netint);

    }

 

    static void displayInterfaceInformation(NetworkInterface netint) throws SocketException {

        System.out.printf("Display name: %s\n", netint.getDisplayName());

        System.out.printf("Name: %s\n", netint.getName());

        Enumeration<InetAddress> inetAddresses = netint.getInetAddresses();

        for (InetAddress inetAddress : Collections.list(inetAddresses)) {

        System.out.printf("InetAddress: %s\n", inetAddress);

        }

        System.out.printf("\n");

     }

 

}

 

分享到:
评论

相关推荐

    C#获取本地IP的四种方式示例详解

    new List&lt;IPAddress&gt;() : adds.ToList&lt;IPAddress&gt;(); } catch (Exception) { return new List&lt;IPAddress&gt;(); } } ``` 注意,此方法依赖于DNS解析,如果网络不畅通或者DNS服务不可用,可能会导致无法获取到...

    c#搜索局域网类可用ip

    private static List&lt;IPAddress&gt; GetIpAddressRange(string networkRange) { // 解析网络范围,生成IP地址列表 // ... } } ``` 在上面的代码中,`FindAvailableIps`方法接收一个网络范围,如"192.168.1.0/24...

    在QT5里,查看修改ip

    对于查看IP地址、子网掩码和默认网关,可以遍历这些接口,通过`QNetworkInterface::addressEntries()`获取接口的IP地址列表,并从中解析出相关信息。 例如,以下代码片段展示了如何获取并打印系统的IP地址、子网...

    CISCO 技术大集合

    建立动态地址翻译 ip nat inside source {list {access-list-number | name} pool name [overload] | static local-ip global-ip} 指定内部和外部端口 ip nat {inside | outside} 如下图所示, 路由器的Ethernet ...

    linux ip访问限制

    `firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.100" port protocol="tcp" port="9001" accept"` 这将允许 IP 地址 `192.168.0.1` 访问端口 `9001`。 然后,我们需要...

    PPPoE ---CPE客户端的命令行,如何拨号获得公网IP地址,如何用物理接口关联拨号虚接口。

    ip nat inside source list 1 interface Dialer0 overload access-list 1 permit 192.168.1.0 0.0.0.255 ``` **4. 其他配置** - **控制台配置**:配置控制台会话超时时间。 ```plaintext line con 0 exec-...

    Wireless Network Watcher v1.46

    following information is displayed: IP address, MAC address, the company that manufactured the network card, and optionally the computer name. You can also export the connected devices list into ...

    网络技术实验:PCA直接通过RTA获得IP地址.doc

    在RTA的GigabitEthernet0/0接口上配置IP地址172.16.0.1/24,即`[RTA-GigabitEthernet0/0] ip address 172.16.0.1 24`。交换机S3610使用出厂默认配置,所有端口属于VLAN 1。 #### 步骤三:配置RTA为DHCP服务器 - `...

    思科华为命令差别

    在配置IP地址方面,思科设备使用"ip address ip-address subnet-mask",华为使用"ip address ip-address mask"或"ip address ip-address netmask"。端口聚合(Port Channel或Eth-Trunk)在思科中通过"interface Port...

    c#端口扫描

    public static async Task ScanPortsAsync(IPAddress ipAddress, int startPort, int endPort) { var tasks = new List(); for (int port = startPort; port ; port++) { tasks.Add(Task.Run(() =&gt; ScanPort(ip...

    端口查看工具

    CurrPorts displays the list of all currently opened TCP/IP and UDP ports on your local computer. For each port in the list, information about the process that opened the port is also displayed, ...

    8-07-14_MegaCLI for linux_windows

    LSIP200245985 (DFCT) Load address change for PCLI LSIP200233342 (DFCT) Error message displayed while deleting all ld's in MegaCLI, SLESS11 sp2 LSIP200232922 (DFCT) MegaCLI misspell the word "package...

    F5 tmsh 操作方法

    modify vlan &lt;vlan_name&gt; interfaces replace-all-with &lt;interface_list&gt; exit 例如,创建一个名为 TEST 的 VLAN: create vlan TEST modify vlan TEST interfaces replace-all-with 1.1,1.2 exit 2. 配置 VLAN ...

    对比Route-Map在 Redistribute以及Policy-Routing中的应用及注意点

    Route-Map 同 access-list 一样,最后都有隐含的 deny all,因此需要注意在配置 Route-Map 时,需要明确地配置 permit 语句,以免出现不必要的阻止。 三、route-map 语句顺序号 在编辑 Route-Map 时,如不注明 ...

    世界上最全的锐捷交换机命令大全

    - 使用 `ip dhcp excluded-address &lt;start-ip-address&gt; &lt;end-ip-address&gt;` 排除特定IP范围。 - 使用 `ip dhcp pool &lt;pool-name&gt;` 创建DHCP池。 - 使用 `network &lt;network-address&gt; &lt;subnet-mask&gt;` 定义网络地址和...

    计算机网络课程设计 小型互联网组网工程模拟

    Router(config)#access-list acl-number deny ip source-ip wildcard-mask destination-ip wildcard-mask Router(config)#access-list acl-number permit ip any any ``` - **应用ACL**: ```cisco Router...

    cisco 2500路由器如何实现ADSL接入功能

    ip nat inside source list 1 interface Dialer1 overload ``` 7. **配置缺省路由**: 定义一条默认路由指向Dialer1接口: ```shell ip route 0.0.0.0 0.0.0.0 Dialer1 ``` 接下来,我们关注如何通过Cisco ...

    Cisco访问表配置指南

    router(config-access-list)# permit|deny protocol source_ip_address wildcard_mask destination_ip_address wildcard_mask ``` 3. **应用访问列表**:将访问列表应用到接口,决定是入站还是出站流量受其影响。...

    华为路由器DHCP配置.doc

    若要测试DHCP功能,可以释放并重新申请IP地址,通过DOS命令`ipconfig/release_all`或图形界面下的相应操作释放IP,然后使用`ipconfig/renew_all`或相应命令更新IP。 总之,华为路由器上的DHCP配置涉及启动服务、...

Global site tag (gtag.js) - Google Analytics