diff options
author | William Hubbs <williamh@gentoo.org> | 2011-11-14 10:51:42 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-11-14 12:32:41 -0600 |
commit | 476034dd9595c56dab4e19ce04424dcfd8431dea (patch) | |
tree | 0351538dad222a609ed4305ebad41b49b0ae6988 | |
parent | 37294b4e82fc265941e385e6a5430792fa57ae46 (diff) |
net.example: Fix the bridge configuration example
The example of how to configure the bridge was invalid. It showed
invalid timer settings along with turning off stp. This update shows how
to turn on stp and set the timer settings to the defaults.
Reported-by: Sergey S. Starikoff < Ikonta@yandex.ru>
X-Gentoo-Bug: 389209
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=389209
-rw-r--r-- | doc/net.example.Linux.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/net.example.Linux.in b/doc/net.example.Linux.in index cc759c7f..7bae8d75 100644 --- a/doc/net.example.Linux.in +++ b/doc/net.example.Linux.in @@ -839,9 +839,9 @@ # Below is an example of configuring the bridge # Consult "man brctl" for more details -#brctl_br0="setfd 0 -#sethello 0 -#stp off" +#brctl_br0="setfd 15 +#sethello 2 +#stp on" # You can also configure the bridge or bridge members via sysfs on 2.6 kernels # or newer. See the kernel bridge documentation for a description of these |