Updated Branches: refs/heads/master c594ed68a -> 44e893812
CLOUDSTACK-106: this issue seems be coverred by other issue somehow, when other issue is fixed, this issue shows up Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/44e89381 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/44e89381 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/44e89381 Branch: refs/heads/master Commit: 44e893812010961baa8edda7ffb1f96239c3c542 Parents: c594ed6 Author: Anthony Xu <[email protected]> Authored: Fri Sep 21 10:24:58 2012 -0700 Committer: Anthony Xu <[email protected]> Committed: Fri Sep 21 10:24:58 2012 -0700 ---------------------------------------------------------------------- .../debian/config/opt/cloud/bin/vpc_guestnw.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/44e89381/patches/systemvm/debian/config/opt/cloud/bin/vpc_guestnw.sh ---------------------------------------------------------------------- diff --git a/patches/systemvm/debian/config/opt/cloud/bin/vpc_guestnw.sh b/patches/systemvm/debian/config/opt/cloud/bin/vpc_guestnw.sh index 7331c53..590b58e 100755 --- a/patches/systemvm/debian/config/opt/cloud/bin/vpc_guestnw.sh +++ b/patches/systemvm/debian/config/opt/cloud/bin/vpc_guestnw.sh @@ -48,7 +48,7 @@ destroy_acl_chain() { create_acl_chain() { destroy_acl_chain sudo iptables -t mangle -N ACL_OUTBOUND_$dev 2>/dev/null - sudo iptables -t mangle -A ACL_OUTBOUND_$dev -j DROP 2>/dev/null + sudo iptables -t mangle -A ACL_OUTBOUND_$dev -j ACCEPT 2>/dev/null sudo iptables -t mangle -A PREROUTING -m state --state NEW -i $dev -s $subnet/$mask ! -d $ip -j ACL_OUTBOUND_$dev 2>/dev/null sudo iptables -N ACL_INBOUND_$dev 2>/dev/null # drop if no rules match (this will be the last rule in the chain)
