Project

General

Profile

Download (254 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#!/bin/sh
2

    
3
# record login
4
/usr/bin/logger -p local3.info "login,$1,$4,$5"
5

    
6
case `/bin/echo $1 | /usr/bin/cut -c1-4` in
7
	pptp)
8
		/sbin/ifconfig $1 group pptp
9
		;;
10
	poes)
11
		/sbin/ifconfig $1 group pppoe
12
		;;
13
	l2tp)
14
		/sbin/ifconfig $1 group l2tp
15
		;;
16
esac
(22-22/22)