diff options
| author | Bill Nottingham <notting@redhat.com> | 2003-09-12 21:43:45 +0000 |
|---|---|---|
| committer | Bill Nottingham <notting@redhat.com> | 2003-09-12 21:43:45 +0000 |
| commit | a32681ea9aec9b73fe7dd0b65a20b1321db3b48b (patch) | |
| tree | d5296927d206e568950b3e667f11df43cf2244f5 /sysconfig/network-scripts/ifup-ipsec | |
| parent | de580885827e536e7446e82cd6a3095812745fa5 (diff) | |
for tunneling, add a route for the tunneled net through the other host
Diffstat (limited to 'sysconfig/network-scripts/ifup-ipsec')
| -rwxr-xr-x | sysconfig/network-scripts/ifup-ipsec | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysconfig/network-scripts/ifup-ipsec b/sysconfig/network-scripts/ifup-ipsec index 3ea68768..b474f41d 100755 --- a/sysconfig/network-scripts/ifup-ipsec +++ b/sysconfig/network-scripts/ifup-ipsec @@ -137,6 +137,8 @@ EOF [ -z "$SRCNET" ] && SRCNET="$SRC/32" [ -z "$DSTNET" ] && DSTNET="$DST/32" + ip route add to $DSTNET via $DST + /sbin/setkey -c >/dev/null 2>&1 << EOF delete $SRC $DST ah $SPI_AH_OUT; delete $DST $SRC ah $SPI_AH_IN; @@ -189,6 +191,8 @@ EOF [ -z "$SRCNET" ] && SRCNET="$SRC/32" [ -z "$DSTNET" ] && DSTNET="$DST/32" + ip route add to $DSTNET via $DST + /sbin/setkey -c >/dev/null 2>&1 << EOF spddelete $SRCNET $DSTNET any -P out; spddelete $DSTNET $SRCNET any -P in; |
