#ip-address #ip #networking #local #socket-address #linux-macos #web

local-ip-address

Retrieve system's local IP address and Network Interfaces/Adapters on Linux, macOS and Windows

24 releases

0.6.3 Sep 17, 2024
0.6.1 Feb 25, 2024
0.5.6 Sep 27, 2023
0.5.4 Jul 27, 2023
0.4.2 Jul 14, 2021

#13 in Network programming

Download history 65615/week @ 2024-08-16 75721/week @ 2024-08-23 90835/week @ 2024-08-30 81966/week @ 2024-09-06 74868/week @ 2024-09-13 84979/week @ 2024-09-20 79709/week @ 2024-09-27 87537/week @ 2024-10-04 93299/week @ 2024-10-11 94737/week @ 2024-10-18 100025/week @ 2024-10-25 93299/week @ 2024-11-01 97753/week @ 2024-11-08 101779/week @ 2024-11-15 88072/week @ 2024-11-22 87422/week @ 2024-11-29

392,974 downloads per month
Used in 171 crates (116 directly)

MIT/Apache

55KB
1K SLoC

local-ip-address

Retrieve system's local IP address and Network Interfaces/Adapters on Linux, Windows, and macOS (and other BSD-based systems).

Crates.io Documentation Build Clippy Formatter

Usage

Get the local IP address of your system by executing the local_ip function:

use local_ip_address::local_ip;

fn main() {
    let my_local_ip = local_ip().unwrap();

    println!("This is my local IP address: {:?}", my_local_ip);
}

Retrieve all the available network interfaces from both, the AF_INET and the AF_INET6 family by executing the list_afinet_netifas function:

use local_ip_address::list_afinet_netifas;

fn main() {
    let network_interfaces = list_afinet_netifas().unwrap();

    for (name, ip) in network_interfaces.iter() {
        println!("{}:\t{:?}", name, ip);
    }
}

Underlying approach on retrieving network interfaces or the local IP address may differ based on the running operative system.

OS Approach
Linux Establishes a Netlink socket interchange to retrieve network interfaces
BSD-based Uses of getifaddrs to retrieve network interfaces
Windows Consumes Win32 API's to retrieve the network adapters table

Operating System Support

Current supported platforms include:

  • Linux (requires at least v0.1.0);
  • macOS (requires at least v0.1.0);
  • Windows (requires at least v0.3.0);
  • Other BSD-based (requires at least v0.5.0); including:
    • FreeBSD
    • OpenBSD
    • NetBSD
    • DragonFly

Please note that we only test the BSD implementation of this on macOS and FreeBSD, under the assumption that other BSD-based systems will behave similarly. If you have any complications using this library on the other BSD-based, please create an issue.

Release

In order to create a release you must push a Git tag as follows

git tag -a <version> -m <message>

Example

git tag -a v0.1.0 -m "First release"

Tags must follow semver conventions Tags must be prefixed with a lowercase v letter.

Then push tags as follows:

git push origin main --follow-tags

Contributing

Every contribution to this project is welcome. Feel free to open a pull request, an issue or just by starting this project.

License

Distributed under the terms of both the MIT license and the Apache License (Version 2.0)

Dependencies

~0.2–8.5MB
~76K SLoC