File: pcf2os.pl

package info (click to toggle)
openswan 1%3A2.4.6%2Bdfsg.2-1.1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 24,996 kB
  • ctags: 16,877
  • sloc: ansic: 121,112; sh: 19,524; xml: 9,699; asm: 4,422; perl: 4,087; makefile: 3,367; tcl: 713; exp: 657; yacc: 396; pascal: 328; lex: 289; sed: 265; awk: 124; lisp: 3
file content (58 lines) | stat: -rwxr-xr-x 1,063 bytes parent folder | download | duplicates (4)
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
51
52
53
54
55
56
57
58
#!/usr/bin/perl
#
# (C) 2004 Ken Bantoft <ken@xelerance.com>
#
# This script converts most Cisco VPN client .pcf files to Openswan's
# ipsec.conf and ipsec.secrets format
#

die "Usage: ./pcf2os.pl cisco-config.pcf\n\n"  if ! $ARGV[0];

open(PCF,$ARGV[0]);
while(<PCF>) {
	chop;
# print "[$_]";
	if (m/^description/i) {
	s/.*=//;
	s/\ /\_/g;
	$desc=$_;
}
if  (m/^host/i) {
	s/.*=//;
	$right=$_;
}

if (m/^groupname/i) {
	s/.*=//;
	$groupname=$_;
}	

if (m/^grouppwd/i) {
	s/.*=//;
	$grouppassword=$_;
}	



}
close(PCF);

print "ipsec.conf\n\n";
print "conn $desc\n";
print "     ike=3des-md5-modp1024\n";
print "     aggrmode=yes\n";
print "     authby=secret\n";
print "     left=%defaultroute\n";
print "     leftid=\@$groupname\n";
print "     leftxauthclient=yes\n";
print "     leftmodecfgclient=yes\n";
print "     right=$right\n";
print "     rightxauthserver=yes\n";
print "     rightmodecfgserver=yes\n";
print "     pfs=no\n";
print "     auto=add\n";

print "\n\n";
print "ipsec.secrets:\n\n";
print "\@$groupname $right : PSK \"$grouppassword\"\n";