blob: 65c5c2db3319438e3ae93a962dbe6cc1468eb0ba (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | scan_pppoa() {
	scan_ppp "$@"
}
setup_interface_pppoa() {
	local iface="$1"
	local config="$2"
	
	config_get device "$config" device
	config_get vpi "$config" vpi
	config_get vci "$config" vci
	for module in slhc ppp_generic pppoatm; do
		/sbin/insmod $module 2>&- >&-
	done
	
	config_get encaps "$config" encaps
	case "$encaps" in
		1|vc) ENCAPS="vc-encaps" ;;
		*) ENCAPS="llc-encaps" ;;
	esac
	config_get mtu "$config" mtu
	mtu=${mtu:-1500}
	start_pppd "$config" \
		plugin pppoatm.so ${vpi:-8}.${vci:-35} ${ENCAPS} \
		mtu $mtu mru $mtu
}
 |