You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
375 B
20 lines
375 B
19 years ago
|
[ "${INTERFACE%%[0-9]*}" = "atm" ] && {
|
||
|
case "$ACTION" in
|
||
|
register)
|
||
19 years ago
|
[ "$pppoe_atm" = 1 ] && {
|
||
|
case "$atm_encaps" in
|
||
19 years ago
|
0|vc) ENCAPS=0 ;;
|
||
|
1|llc) ENCAPS=1 ;;
|
||
|
*) ENCAPS=0 ;;
|
||
|
esac
|
||
|
insmod br2684 2>&- >&-
|
||
19 years ago
|
br2684ctl -c0 -e${ENCAPS} -a${atm_vpi:-8}.${atm_vci:-35} &
|
||
19 years ago
|
}
|
||
|
;;
|
||
|
unregister)
|
||
|
killall br2684ctl 2>&- >&-
|
||
|
rmmod br2684
|
||
|
;;
|
||
|
esac
|
||
20 years ago
|
}
|