netifaces icon indicating copy to clipboard operation
netifaces copied to clipboard

Results 34 netifaces issues
Sort by recently updated
recently updated
newest added

Hi, I like this lib! Great job. I am using Linux. Does the config persists after reboot? Do you plan to update - DNS in /etc/resolv.con - Hostname /etc/hostname -enable/disable...

I am not sure I should call this as issue or not. Please close if this doesn't fit in the issue category. It would be helpful if cross compilation steps...

Does `netifaces` report signal strength (e.g. as a percentage) of radio based interfaces (e.g. 3g/4g cellular modems, wifi, bluetooth, etc)? If not, is it possible to add that as a...

Some addr->ifa_flags bits are used to determine broadcast/peer address type. Other bits can be useful, like IFF_UP (interface is up). Do you agree this is a good idea to expose...

Any plan to release a wheel for Python 2.7 Windows 64-bit? How I can help?

Could you please make LICENSE, CHANGELOG and test.py part of pypi release tarball?

I got a wrong netmask which is set statically as `255.255.255.0` in adapter's properties dialog while it's `255.255.255.255` from netifaces. ```bash >>> for i in netifaces.interfaces(): ... if netifaces.AF_INET in...

On FreeBSD 11.2 `netifaces.gateways()` only returns IPv4 gateway - ``` >>> import netifaces >>> netifaces.gateways() {'default': {2: ('10.0.2.2', 'em0')}, 2: [('10.0.2.2', 'em0', True)]} >>> ``` The routing table - ```...

While `netifaces.interfaces()` and `netifaces.ifaddresses() `appear to work fine in a CYGWIN environment running on Windows 7, `netifaces.gateways() `does not. The openstack command line client uses this library to determine whether...