From 8a7906a01698ef43c5f4eb6c3fe714b9e2f6e153 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Thu, 8 Mar 2012 14:56:39 +0100 Subject: [PATCH] vm/network: really place anti-spoof rules in 'raw' table This fixes commit: 4d68998 vm/network: place anti-spoof rules in 'raw' table --- network/vif-route-qubes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/vif-route-qubes b/network/vif-route-qubes index 385b665..597e284 100755 --- a/network/vif-route-qubes +++ b/network/vif-route-qubes @@ -48,7 +48,7 @@ if [ "${ip}" ] ; then ${cmdprefix} ip route ${ipcmd} ${addr} dev ${vif} || true done echo ${cmdprefix} iptables -t raw $iptables_cmd -i ${vif} \! -s ${ip} -j DROP - ${cmdprefix} iptables $iptables_cmd -i ${vif} \! -s ${ip} -j DROP + ${cmdprefix} iptables -t raw $iptables_cmd -i ${vif} \! -s ${ip} -j DROP fi log debug "Successful vif-route-qubes $command for $vif."