mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-04 21:24:05 +02:00
fix a race condition where ppp interfaces were not added to the firewall properly when brought up at boot time - save the ppp interface unit number in the network state
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13402 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
63ec5beabf
commit
eeaf181efc
@ -6,8 +6,11 @@ PPP_SPEED="$3"
|
|||||||
PPP_LOCAL="$4"
|
PPP_LOCAL="$4"
|
||||||
PPP_REMOTE="$5"
|
PPP_REMOTE="$5"
|
||||||
PPP_IPPARAM="$6"
|
PPP_IPPARAM="$6"
|
||||||
|
PPP_UNIT="${PPP_IFACE##ppp}"
|
||||||
|
|
||||||
export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
|
export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
|
||||||
[ -z "$PPP_IPPARAM" -o -z "$PPP_LOCAL" ] || {
|
[ -z "$PPP_IPPARAM" -o -z "$PPP_LOCAL" ] || {
|
||||||
|
uci_set_state network "$PPP_IPPARAM" unit "$PPP_UNIT"
|
||||||
uci_set_state network "$PPP_IPPARAM" ipaddr "$PPP_LOCAL"
|
uci_set_state network "$PPP_IPPARAM" ipaddr "$PPP_LOCAL"
|
||||||
uci_set_state network "$PPP_IPPARAM" gateway "$PPP_REMOTE"
|
uci_set_state network "$PPP_IPPARAM" gateway "$PPP_REMOTE"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user