mirror of
https://github.com/Kiritow/wg-ops.git
synced 2024-03-22 13:11:37 +08:00
16 lines
385 B
Python
16 lines
385 B
Python
import sys
|
|
import json
|
|
import subprocess
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) < 2:
|
|
sys.stderr.write('python3 get-gateway.py <network>\n')
|
|
exit(1)
|
|
|
|
network_name = sys.argv[1]
|
|
output = subprocess.check_output(["podman", "network", "inspect", network_name])
|
|
|
|
j = json.loads(output)
|
|
print(j[0]["plugins"][0]["ipam"]["ranges"][0][0]["gateway"])
|