diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-05-04 18:31:14 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-05-04 18:31:14 +0000 |
commit | 61e49b0c437553fd1bc4ecc86a28d7afa1d67477 (patch) | |
tree | 0df5cf00245fb2db94b50f9b9ef6961015fe85ca /packages | |
parent | e618981fdc6771e6854bd4528e01f891f030fdd0 (diff) | |
download | pfsense-packages-61e49b0c437553fd1bc4ecc86a28d7afa1d67477.tar.gz pfsense-packages-61e49b0c437553fd1bc4ecc86a28d7afa1d67477.tar.bz2 pfsense-packages-61e49b0c437553fd1bc4ecc86a28d7afa1d67477.zip |
syncif -> syncdev
From notes sent by Max:
2) pfsync takes syncdev instead of syncif: When configuring the pfsync device,
use 'syncdev' instead of the deprecated keyword 'syncif'.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/carp.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/carp.xml b/packages/carp.xml index 7258524c..cdf7d11a 100644 --- a/packages/carp.xml +++ b/packages/carp.xml @@ -232,7 +232,7 @@ fwrite($fout, "/sbin/sysctl net.inet.arpbalance=1\n"); $carp_sync_int = convert_friendly_interface_to_real_interface_name($carp['pfsyncinterface']); fwrite($fout, "/sbin/ifconfig pfsync0 create\n"); - fwrite($fout, "/sbin/ifconfig pfsync0 syncif " . $carp_sync_int . "\n"); + fwrite($fout, "/sbin/ifconfig pfsync0 syncdev " . $carp_sync_int . "\n"); fwrite($fout, "/sbin/ifconfig {$carp_sync_int} up\n"); fwrite($fout, "/sbin/ifconfig pfsync0 up\n"); fwrite($fout, "sleep 10\n"); |