Windows 10 上的 IPTables

Windows 10 上的 IPTables

我正在寻找一种在 Windows 10 中获取 iptables 功能的方法。有什么建议吗?

编辑:这些 iptables 规则是在 ubuntu 中使用的,当时我正在使用 Virtualbox 虚拟化 freeBSD,使用 Vbox0 主机专用适配器网络配置,它帮助我建立互联网连接,因为它在操作系统的接口之间转发数据包,也就是说,这样我的主机专用虚拟机就可以访问互联网

# **************  GNU/Linux ***********************
#
# 

iptables -t filter -F
iptables -t nat -F


iptables -t filter -P INPUT ACCEPT
iptables -t filter -P FORWARD ACCEPT
iptables -t filter -P OUTPUT ACCEPT


iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

echo 1 > /proc/sys/net/ipv4/ip_forward

相关内容