diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-01-25 17:32:33 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-01-25 17:32:33 +0000 |
commit | 52d62b6afdb781566e0866929f84091de82448a7 (patch) | |
tree | bcef9a3f4b94442d5b8982c6ff293769b6718c59 /etc/inc | |
parent | c81ffe5a513e4dbf6543b1ee29adb4de3a592d88 (diff) | |
download | pfsense-52d62b6afdb781566e0866929f84091de82448a7.zip pfsense-52d62b6afdb781566e0866929f84091de82448a7.tar.gz |
Remove extra space after udp ipsec rule
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/filter.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index e4ae1d6..6d43582 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -1389,8 +1389,8 @@ EOD; if(is_array($config['ipsec']['tunnel'])) { foreach ($config['ipsec']['tunnel'] as $tunnel) { $remote_gateway = $tunnel['remote-gateway']; - $ipfrules .= "pass quick on " . $wanif . " proto udp from " . $wan_ip . " to " . $remote_gateway . " port = 500 keep state label \"". $tunnel['descr'] ." udp \"\n"; - $ipfrules .= "pass quick on " . $wanif . " proto udp from " . $remote_gateway . " to " . $wan_ip . " port = 500 keep state label \"". $tunnel['descr'] ." udp \"\n"; + $ipfrules .= "pass quick on " . $wanif . " proto udp from " . $wan_ip . " to " . $remote_gateway . " port = 500 keep state label \"". $tunnel['descr'] ." udp\"\n"; + $ipfrules .= "pass quick on " . $wanif . " proto udp from " . $remote_gateway . " to " . $wan_ip . " port = 500 keep state label \"". $tunnel['descr'] ." udp\"\n"; $ipfrules .= "pass quick on " . $wanif . " proto esp from " . $wan_ip . " to " . $remote_gateway . " keep state label \"". $tunnel['descr'] ." esp proto\"\n"; $ipfrules .= "pass quick on " . $wanif . " proto esp from " . $remote_gateway . " to " . $wan_ip . " keep state label \"". $tunnel['descr'] ." esp proto\"\n"; |