Proxmox VE KVM/NAT 机器做Nat地址转换和地址映射 2024-5-07 18:32 | 422 | 0 | Linux 37 字 | 2 分钟 pve7.4 post-up echo 1 > /proc/sys/net/ipv4/ip_forward post-up iptables -t nat -A POSTROUTING -s '172.30.30.0/24' -o vmbr0 -j MASQUERADE post-down iptables -t nat … iptablesNetwork
Windows iptables 做服务器中转 2024-5-03 2:45 | 568 | 0 | Windows 68 字 | 1 分钟内 powershell 做服务器中转 最基本的用途就是转发提速,提速什么的自己琢磨 添加一个中转的端口 netsh interface portproxy add v4tov4 listenaddress=0.0.0.0 listenport=10010 connectaddress=domain.com connectport=443 示例 net… iptables