mirror of
https://github.com/brmlab/BLIT.git
synced 2025-06-07 11:23:59 +02:00
7 lines
121 B
Python
Executable file
7 lines
121 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import sys
|
|
import netifaces as ni
|
|
|
|
gw_iface = ni.gateways()['default'][ni.AF_INET][1]
|
|
print gw_iface
|