Ho una configurazione Dual PC. Due PC sono collegati in rete tramite cavo incrociato. Il PC Windows esegue Windows 7 SP1 a 64 bit e il PC Linux esegue Slackware 14 64 bit con iptables.
Il mio firewall e il routing sono essenzialmente:
{DROP All protocols and ports}
{ACCEPT specific protocols and ports}
# Rules to route from Windows PC to Linux PC
$IPTABLES -A INPUT -i eth1 -s 192.168.1.10 -m state --state NEW -j ACCEPT
$IPTABLES -A FORWARD -i eth1 -s 192.168.1.10 -m state --state NEW -j ACCEPT
$IPTABLES -A FORWARD -o eth1 -s 192.168.1.10 -m state --state NEW -j ACCEPT
$IPTABLES -t nat -A POSTROUTING -o eth0 -s 192.168.1.10 -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward
{DROP everything not contained in any of the above rules}
Supponendo che il PC Windows sia privo di virus e / o ipoteticamente invulnerabile a virus / trojan / backdoor, ecc., quanto sarebbe sicuro il PC Windows con un firewall Linux configurato correttamente?
Il PC Windows avrebbe ancora bisogno di un firewall?