projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[package] base-files, ppp: fix interface shutdown
[openwrt.git]
/
package
/
ppp
/
files
/
pppoe.sh
1
stop_interface_pppoe
() {
2
stop_interface_ppp
"
$1
"
3
}
4
5
setup_interface_pppoe
() {
6
local
iface
=
"
$1
"
7
local
config
=
"
$2
"
8
9
for
module
in
slhc ppp_generic pppox pppoe
;
do
10
/
sbin
/
insmod
$module
2
>&- >&-
11
done
12
13
config_get mtu
"
$config
"
mtu
14
mtu
=
${mtu:-1492}
15
start_pppd
"
$config
"
\
16
plugin rp-pppoe.so \
17
mtu
$mtu
mru
$mtu
\
18
"nic-
$iface
"
19
}
This page took
0.048319 seconds
and
5
git commands to generate.