A cross-platform GUI network adapter and route manager.
Project description
Py NIC Manager
Py NIC Manager is a cross-platform Python GUI for viewing and changing network adapter settings, loopback-style adapters, route tables, and saved network configuration snapshots.
The application is written in English and uses the Python standard tkinter
GUI toolkit. It can run on Windows and POSIX systems. Administrative actions
require Administrator/root privileges; when the app is started without those
privileges, it opens in read-only mode and clearly asks the user to restart it
with elevated permissions.
Features
- View network adapters, IPv4 addresses, MAC addresses, gateways, DNS servers, DHCP state, and loopback status.
- Edit existing adapter IPv4 address, prefix length, gateway, DNS servers, MAC address, and DHCP mode where the operating system backend supports it.
- Create, edit, and delete loopback-style adapters:
- Windows: Microsoft KM-TEST Loopback Adapter through the built-in
netloop.infdriver and Windows SetupAPI. - Linux: dummy interfaces through
ip link. - macOS and generic POSIX: loopback aliases on
lo0.
- Windows: Microsoft KM-TEST Loopback Adapter through the built-in
- View, add, update, and delete IPv4 routes through a visual route table editor.
- Export the current adapters and routes to a JSON configuration snapshot.
- Import a saved snapshot and apply it as a best-effort one-click restore after previewing the system commands that will run.
- Preview every mutating command before execution.
Installation
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -e .
On Linux or macOS:
python3 -m venv .venv
. .venv/bin/activate
python -m pip install -e .
The project depends on
is-admin-user for privilege
detection.
Running
py-nic-manager
Or:
python -m py_nic_manager
Use an elevated shell when you want to change system settings:
- Windows: run PowerShell or Command Prompt as Administrator.
- Linux/macOS/POSIX: run with
sudo,doas, or an equivalent root session.
Without elevation, the app can still view adapters/routes and export configuration snapshots.
Platform Notes
Windows
The Windows backend uses PowerShell networking cmdlets, netsh, route, and
Windows SetupAPI/NewDev calls through ctypes.
Creating a Microsoft KM-TEST Loopback Adapter uses the built-in
%WINDIR%\inf\netloop.inf driver directly. It does not require devcon.exe or
the Windows Driver Kit.
Linux
The Linux backend uses ip from iproute2. DNS and DHCP persistence are handled
through NetworkManager (nmcli) when available, with resolvectl used as a DNS
fallback.
Loopback-style adapters are implemented as Linux dummy interfaces.
macOS
The macOS backend uses networksetup, ifconfig, route, and netstat.
Loopback creation is implemented as an address alias on lo0, because macOS
does not create independent loopback NICs in the same way Linux creates dummy
interfaces.
Generic POSIX
For POSIX systems that are not Linux or macOS, the app uses a conservative
ifconfig/route fallback. Viewing should work on many Unix-like systems, but
some mutating operations are intentionally limited because network management
varies widely across BSDs and commercial Unix systems.
Configuration Snapshots
Exported files are JSON documents with this high-level shape:
{
"schema_version": 1,
"platform": "Windows",
"captured_at": "2026-06-17T02:00:00+00:00",
"adapters": [],
"routes": []
}
When applying an imported snapshot, Py NIC Manager:
- Matches adapters by backend ID first, then by adapter name.
- Updates matched adapters with the saved IPv4, gateway, DNS, MAC, and DHCP values where supported.
- Adds saved IPv4 routes.
- Shows skipped adapters and platform limitations in the command preview.
Applying a snapshot from another operating system is allowed only after a warning and is best-effort.
Development
Run tests:
python -m pytest -q
Run a syntax check:
python -m compileall py_nic_manager tests
Safety
Network configuration changes can disconnect the machine, break DNS resolution, or remove routes that are needed for remote access. Always review the command preview before applying changes, and export a known-good snapshot before making large edits.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py_nic_manager-0.1.6.tar.gz.
File metadata
- Download URL: py_nic_manager-0.1.6.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.11.15 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66f50e351b9b4e464fbdc059929acd002ad7cc642d37dcf50fb85d7a5105e39a
|
|
| MD5 |
090f633b5e7a0fd148127ab556e64921
|
|
| BLAKE2b-256 |
2eb03c379247a68929fc554fc0b23d90399f7ab979a961caf1d6bfd2e516b4e0
|
File details
Details for the file py_nic_manager-0.1.6-py3-none-any.whl.
File metadata
- Download URL: py_nic_manager-0.1.6-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.4.1 CPython/3.11.15 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c14b881fe86542c00299197fb028d56b97ae40645454ad08b2ddec102dc79f55
|
|
| MD5 |
1d163e3ece64cdfd05c18dc407e44fd6
|
|
| BLAKE2b-256 |
7486e5f23536723e554d3cb5a0dad4394d17d966b673e03c84ec01e892d150b0
|