diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-11 13:02:44 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-08-11 13:02:44 +0000 |
commit | 5d8f115d9b0b6f6e886582229491a24fa7e62c65 (patch) | |
tree | 443e6e6ccd860c37fc47bccbd6ab5c2e5c9ebcc0 /package/br2684ctl | |
parent | 9a935f099ab4efc17ce91478fba50a10902c71e4 (diff) |
switch the br2684 default to routed mode instead of bridged mode, as it's more common
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12277 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/br2684ctl')
-rwxr-xr-x | package/br2684ctl/files/br2684ctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/br2684ctl/files/br2684ctl b/package/br2684ctl/files/br2684ctl index 5a2bedd3d8..739baabdd0 100755 --- a/package/br2684ctl/files/br2684ctl +++ b/package/br2684ctl/files/br2684ctl @@ -20,8 +20,8 @@ start_daemon() { *) encaps=0;; esac case "$payload" in - 1|bridged) payload=1;; - *) payload=0;; + 0|routed) payload=0;; + *) payload=1;; esac br2684ctl -b -c "$unit" -e "$encaps" -p "$payload" -a "${atmdev:+$atmdev.}${vpi:-8}.${vci:-35}" } |