ppp: correctly handle address when reloading
SVN-Revision: 36904
This commit is contained in:
parent
491deaed2c
commit
5caa45d0b3
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
|
|||
|
||||
PKG_NAME:=ppp
|
||||
PKG_VERSION:=2.4.5
|
||||
PKG_RELEASE:=9
|
||||
PKG_RELEASE:=10
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/
|
||||
|
|
|
@ -5,7 +5,7 @@ PPP_IPPARAM="$6"
|
|||
proto_init_update "$IFNAME" 1 1
|
||||
proto_set_keep 1
|
||||
[ -n "$PPP_IPPARAM" ] && {
|
||||
[ -n "$IPLOCAL" ] && proto_add_ipv4_address "$IPLOCAL" 32
|
||||
[ -n "$IPLOCAL" ] && proto_add_ipv4_address "$IPLOCAL" 32 "" "${IPREMOTE:-2.2.2.2}"
|
||||
[ -n "$IPREMOTE" ] && proto_add_ipv4_route 0.0.0.0 0 "$IPREMOTE"
|
||||
[ -n "$LLLOCAL" ] && proto_add_ipv6_address "$LLLOCAL" 128
|
||||
[ -n "$DNS1" ] && proto_add_dns_server "$DNS1"
|
||||
|
|
Loading…
Reference in a new issue