GnuDIP Release 2.3.5 - Linux/UNIX Client Script |
With this client you can have your IP address updated automatically at several GnuDIP sites simultaneously. This client will only send an update to the GnuDIP servers if the IP address at the time of the last update is no longer valid, or enough time has expired. The validity of the old address is determined without generating any network traffic.
The gdipc.pl
script serves as the GnuDIP client. This and the
related encpass.pl
script are in the
bin
directory.
The client's features include:
gdipc.pl -c
" will replace any existing entry.
To list the entries or
delete an entry the user must use a text editor. There is one line per GnuDIP domain.
The script encpass.pl
takes its plain text password argument
and prints the encrypted version. This script faciliates manual modification of the configuration
file.
tester;gnudip;localhost;f5d1278e8109edd94e1e4197e04873b9;/root/.GnuDIP2.cache.tester.gnudip;0;60 tester2;gnudip;localhost;179ad45c6ce2cb97cf1029e212046e81;/root/.GnuDIP2.cache.tester2.gnudip;0;2073600
# gdipc.pl -c Using Update Configuration Mode Configuration file name: /root/.GnuDIP2 Username: tester2 Domain: gnudip Connect by direct TCP (d) or web server (w) [d]: GnuDIP Server - host[:port]: localhost Password: testpass Cache File [/root/.GnuDIP2.cache.tester2.gnudip]: Minimum Seconds Between Updates [0]: Maximum Seconds Between Updates [2073600]:This is a sample update run:
# gdipc.pl ==== gdipc.pl running: Sun May 27 21:32:17 2001 ==== Configuration file name: /root/.GnuDIP2 Cache file name: /root/.GnuDIP2.cache.tester.gnudip No update done for tester.gnudip - 127.0.0.1 still valid Cache file name: /root/.GnuDIP2.cache.tester2.gnudip Invalid login attempt for tester2.gnudipThe IP address for
tester.gnudip
was not updated because the IP address
at the time of the last update is still valid, and because
"Maximum Seconds Between Updates" had not yet expired.
This is the contents of /root/.GnuDIP2.cache.tester.gnudip
:
127.0.0.1;990991068The status of a GnuDIP domain may be reset by deleting its cache file.
If "Minimum Seconds Between Updates" is specified, then an update will not be sent to the server more often than this interval, even if the IP address at the time of the last update is no longer valid.
# gdipc.pl -h usage: gdipc.pl \ usage: { -h | -v | -i [ -r] | [ -f configfile ] [ -c | -r | \ usage: [ -o outfile | -a appendfile | -l logfile ] \ usage: [ -g sendport:recvport ] [ -d repeatseconds] \ usage: [ -w waitseconds] [ -q "addressquerycommand" ] ] \ usage: [ -x "addresschangedcommand" ] } usage: With no arguments, update server if address changed or time usage: expired. usage: -h: Print this usage message. usage: -v: Show version information. usage: -i: Prompt and read standard input rather than a configuration usage: file. usage: -f: Specify a particular configuration file. usage: This will otherwise be .GnuDIP2 in the directory usage: specified by the HOME environment variable, or gdipc.conf usage: in the directory of the binary if HOME is not set. usage: -c: Specify contents to write to configuration file. usage: -r: Send an offline request to the server to remove your DNS hostname. usage: -d: Run as a daemon. Perform client action immediately and then every usage: "repeatseconds" seconds. usage: -o: Specify log file to overwrite on each run with output from script. usage: -a: Specify log file to append on each run with all output from script. usage: -l: Specify log file for daemon mode. Overwrite on first run, then usage: append. usage: -w: Timeout in seconds when waiting for address validation packet. usage: Defaults to 1 second. Decimal point and fraction (e.g. "0.5") is usage: allowed. usage: -g: Client is behind a gateway. Request GnuDIP server to register usage: address it sees connection from, and pass it back in response. usage: Specify port to send address validation packet to and port gateway usage: will forward it to. usage: -q: Command to invoke to determine IP address to report to GnuDIP usage: server. Command must write address to standard output. When used usage: with -g, address is sent to server. usage: -x: Command to invoke if address changed. This command can be used to usage: to take any actions required when the address changes. All usage: validated addresses are passed as arguments.
gdipc.pl
at system startup and/or
in exit scripts provided by daemons that dynamically configure interfaces.
Note that if one of these exit scripts runs very early during system startup,
BIND (or whatever name server you use) may not yet be running, so
gdipc.pl
could not be run at that time.
Some examples of such daemons are:
dhcpcd
:
man dhcpcd
":
/etc/dhcpc/dhcpcd-<interface>.exe file which dhcpcd will try to execute whenever it detects a change in IP address.
dhclient
:
man dhclient-script
":
After all processing has completed, /etc/dhclient-script checks for the presence of an executable /etc/dhclient- exit-hooks script, which if present is invoked using the '.' command. The exit status is passed in the exit_sta- tus shell variable, and will always be zero if the script succeeded at the task for which it was invoked.
pppd
:
man pppd
":
/etc/ppp/ip-up A program or script which is executed when the link is available for sending and receiving IP packets (that is, IPCP has come up). It is executed with the parameters interface-name tty-device speed local-IP-address remote-IP-address ipparam
crontab
command to schedule it, or using the
-d
option and starting it at system start up.
In order to capture the messages from gdipc.pl
for the system log
you could do something like:
/usr/local/gnudip/bin/gdipc.pl | /usr/bin/logger -t gdipc.plfrom
dhclient-script
or:
/usr/local/gnudip/bin/gdipc.pl -d 30 -l /var/log/gdipc.logwhen run at system start up.
The client normally sends the address it detects at its end of the connection to the server in the update request to the server, and the server registers this address. It also remembers this address, and tests whether it is valid by sending a UDP packet to a randomly selected port at this address. The client then waits a short interval to receive this packet. If it is not received the IP address is assumed to have changed, and an update is sent to the GnuDIP server.
To run behind an NAT box, the client needs to know the external address of the NAT box and must be able to check whether that address has changed.
You must configure the NAT box to redirect some external UDP port to a UDP port on
the internal machine running the client. You provide these port numbers to the
client using the -g
option. This option will
also cause the client to request the GnuDIP server to send the external
address of the NAT device (which the server sees as the other end of the client connection)
back in the reply to the update request. You must ensure that the GnuDIP servers you use
are at release 2.3.2 or later in order for this request to succeed.