updated on Sat Jan 21 04:00:54 UTC 2012
[aur-mirror.git] / ppp-rdr / ip-up
blob20473d73a22db497fe9aee80ebd942762056479c
1 #!/bin/sh
3 # This script is run by pppd when there's a successful ppp connection.
6 # Execute all scripts in /etc/ppp/ip-up.d/
7 for ipup in /etc/ppp/ip-up.d/*.sh; do
8 if [ -x $ipup ]; then
9 # Parameters: interface-name tty-device speed local-IP-address remote-IP-address ipparam
10 $ipup "$@"
12 done