File: sample-etc_ppp_ip-up.local

package info (click to toggle)
ddclient 3.6.2-3.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 312 kB
  • ctags: 94
  • sloc: perl: 1,882; sh: 332; makefile: 42
file content (40 lines) | stat: -rw-r--r-- 1,399 bytes parent folder | download | duplicates (2)
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
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
######################################################################
## $Header: /home/paul/src/ddclient/RCS/sample-etc_ppp_ip-up.local,v 3.5 2001/08/25 14:22:00 root Exp root $
######################################################################
## 
## On my host, pppd invokes this script with args:
## /etc/ppp/ip-up.local ppp0 /dev/pts/1 115200 192.168.2.1 192.168.2.3
##
## From the manual page for my pppd, these aguments are:
##   scriptname interface-name tty-device speed local-IP-address remote-IP-address ipparam
##
## Some people have reported that their pppd returns their 
## local-IP-address as $3.  If that's also the case for you,
## you may need to change the $4 below to $3.  This may not
## be necessary if you pppd also passes the local-ip-address
## in the environment as either PPP_LOCAL or IPLOCAL.
##
######################################################################
PATH=/usr/sbin:/root/bin:${PATH}
IP=
IP=${IP:-$PPP_LOCAL}
IP=${IP:-$IPLOCAL}
IP=${IP:-$4}

## update the DNS server unless the IP address is a private address
## that may be used as a internal LAN address (or PPtP tunnel).

logger -t ddclient $0 $*
case "$IP" in
10.*)		;;
172.1[6-9].* | 172.2[0-9].* | 172.31.*)	;;
192.168.*)	;;
"")		logger -t ddclient No local IP given so cannot update
		;;
*)		(
			sleep 5
			ddclient -daemon=0 -syslog -use=if -if=$1 >/dev/null 2>&1
		) &
		;;
esac