Skip to content

Instantly share code, notes, and snippets.

@Nexarian
Nexarian / setup_routing_nat.py
Last active February 14, 2025 01:39
IP Routing Prototype in Python
#!/usr/bin/env python3
import os
import socket
import subprocess
import sys
from typing import Any, Dict, Final, List, Tuple
import iptc
import psutil