FREEBSD中使用IPFW来过滤ICMP服务
发布时间:2006-10-14 8:46:46   收集提供:gaoqian
##############
# adduser.pl #
##############

#!/usr/bin/perl
$filename = 'class.txt' ;
open(file,$filename) ;
while( $name= ) {
chop $name ;
@name_array = split /,/,$name ;
$PW_COMMAND="/usr/sbin/pw useradd $name_array[0] -m -h 0" ;
$fname="|".$PW_COMMAND ; open(OUT, $fname) ;
print OUT $name_array[1] ;
close(OUT) ;
print "UserName: ",$name_array[0],"\t\t",
"Password: ",$name_array[1],"\n";
}
print "\n" ;
close(file) ;
 
################
# /etc/pw.conf #
################
logfile /root/pw.log
defaultpasswd yes
home /home
defaultshell /usr/local/bin/bash
defaultgroup user
reuseuids yes
minuid 2000
 
##############
# 额外说明   #
##############
1.home   -->预设的家目录
defaultshell -->预设的shell路径
defaultgroup -->预设的群组
1.minuid -->起始的uid

############
# 使用方式 #
############
1.先备档案 
 a. adduser.pl 
 b. /etc/pw.conf
 c. 帐号的来源档 class.txt
    形式:
    帐号,密码
    帐号,密码
2.步骤
 a.将adduser.pl改为可以执行
    chmod 700 adduser.pl
 b.adduser.pl及class.txt需在同一目录下,不然则需更改路径
 c.执行adduser.pl
 d.完成
 
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 41 42 43 44 45 46 47 48 49 50