projects
/
invirt/packages/invirt-xen-config.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6238df
)
set forwarding to 1 before changing the other settings
author
Sam Hartman
<hartmans@mit.edu>
Sat, 25 Aug 2007 20:01:44 +0000
(16:01 -0400)
committer
Sam Hartman
<hartmans@mit.edu>
Sat, 25 Aug 2007 20:01:44 +0000
(16:01 -0400)
as changing forwarding frobs a lot of global state
svn path=/trunk/packages/sipb-xen-dom0/sipb-xen-dom0/; revision=94
debian/sipb-xen-dom0.init
patch
|
blob
|
history
diff --git
a/debian/sipb-xen-dom0.init
b/debian/sipb-xen-dom0.init
index
a74c43b
..
a726848
100644
(file)
--- a/
debian/sipb-xen-dom0.init
+++ b/
debian/sipb-xen-dom0.init
@@
-3,10
+3,10
@@
set -e
case $1 in
start)
+ echo 1 >/proc/sys/net/ipv4/ip_forward
for foo in all default; do
echo 1 >/proc/sys/net/ipv4/conf/$foo/rp_filter
echo 1 >/proc/sys/net/ipv4/conf/$foo/proxy_arp
done
- echo 1 >/proc/sys/net/ipv4/ip_forward
;;
esac