]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/pppsetup.cgi
Removed the old svn commands and started with git.
[people/pmueller/ipfire-2.x.git] / html / cgi-bin / pppsetup.cgi
1 #!/usr/bin/perl
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 use strict;
23
24 # enable only the following on debugging purpose
25 #use warnings;
26 #use CGI::Carp 'fatalsToBrowser';
27
28 require '/var/ipfire/general-functions.pl';
29 require "${General::swroot}/lang.pl";
30 require "${General::swroot}/header.pl";
31
32 our %pppsettings=();
33 my %temppppsettings=();
34 our %modemsettings=();
35 our %isdnsettings=();
36 our %netsettings=();
37 my %selected=();
38 my %checked=();
39 my @profilenames=();
40 my $errormessage = '';
41 my $maxprofiles = 5;
42 my $kernel=`/bin/uname -r | /usr/bin/tr -d '\012'`;
43
44 my %color = ();
45 my %mainsettings = ();
46 &General::readhash("${General::swroot}/main/settings", \%mainsettings);
47 &General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
48
49 &Header::showhttpheaders();
50
51 $pppsettings{'ACTION'} = '';
52 &initprofile();
53 &Header::getcgihash(\%pppsettings);
54
55 if ($pppsettings{'ACTION'} ne '' &&
56 (-e '/var/run/ppp-ipcop.pid' || -e "${General::swroot}/red/active"))
57 {
58 $errormessage = $Lang::tr{'unable to alter profiles while red is active'};
59 # read in the current vars
60 %pppsettings = ();
61 $pppsettings{'VALID'} = '';
62 &General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
63 }
64 elsif ($pppsettings{'ACTION'} eq $Lang::tr{'refresh'})
65 {
66 unless ($pppsettings{'TYPE'} =~ /^(modem|serial|isdn|pppoe|pptp|pppoeatm)$/) {
67 $errormessage = $Lang::tr{'invalid input'};
68 goto ERROR; }
69 my $type = $pppsettings{'TYPE'};
70 &General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
71 $pppsettings{'TYPE'} = $type;
72 }
73 elsif ($pppsettings{'ACTION'} eq $Lang::tr{'save'})
74 {
75 if ($pppsettings{'TYPE'} =~ /^(modem|serial|isdn)$/ && $pppsettings{'COMPORT'} !~ /^(ttyS0|ttyS1|ttyS2|ttyS3|ttyS4|ttyACM0|ttyACM1|ttyACM2|ttyACM3|isdn1|isdn2)$/) {
76 $errormessage = $Lang::tr{'invalid input'};
77 goto ERROR; }
78 if ($pppsettings{'TYPE'} =~ /^(modem|serial)$/ && $pppsettings{'DTERATE'} !~ /^(9600|19200|38400|57600|115200|230400|460800|921600)$/) {
79 $errormessage = $Lang::tr{'invalid input'};
80 goto ERROR; }
81 if ($pppsettings{'TYPE'} eq 'modem' && $pppsettings{'DIALMODE'} !~ /^(T|P)$/) {
82 $errormessage = $Lang::tr{'invalid input'};
83 goto ERROR; }
84 if ($pppsettings{'AUTH'} !~ /^(pap-or-chap|pap|chap|standard-login-script|demon-login-script|other-login-script)$/) {
85 $errormessage = $Lang::tr{'invalid input'};
86 goto ERROR;
87 }
88
89 if ($pppsettings{'PROFILENAME'} eq '') {
90 $errormessage = $Lang::tr{'profile name not given'};
91 $pppsettings{'PROFILENAME'} = '';
92 goto ERROR; }
93 if ($pppsettings{'TYPE'} =~ /^(modem|isdn)$/) {
94 if ($pppsettings{'TELEPHONE'} eq '') {
95 $errormessage = $Lang::tr{'telephone not set'};
96 goto ERROR; }
97 if (!($pppsettings{'TELEPHONE'} =~ /^[\d\*\#\,]+$/)) {
98 $errormessage = $Lang::tr{'bad characters in the telephone number field'};
99 goto ERROR; }
100 }
101 unless (($pppsettings{'PROTOCOL'} eq 'RFC1483' && $pppsettings{'METHOD'} =~ /^(STATIC|DHCP)$/)) {
102 if ($pppsettings{'USERNAME'} eq '') {
103 $errormessage = $Lang::tr{'username not set'};
104 goto ERROR; }
105 if ($pppsettings{'PASSWORD'} eq '') {
106 $errormessage = $Lang::tr{'password not set'};
107 goto ERROR; }
108 }
109
110 if ($pppsettings{'TIMEOUT'} eq '') {
111 $errormessage = $Lang::tr{'idle timeout not set'};
112 goto ERROR; }
113 if (!($pppsettings{'TIMEOUT'} =~ /^\d+$/)) {
114 $errormessage = $Lang::tr{'only digits allowed in the idle timeout'};
115 goto ERROR; }
116
117 if ($pppsettings{'LOGINSCRIPT'} =~ /[.\/ ]/ ) {
118 $errormessage = $Lang::tr{'bad characters in script field'};
119 goto ERROR; }
120
121 if ($pppsettings{'DNS1'})
122 {
123 if (!(&General::validip($pppsettings{'DNS1'}))) {
124 $errormessage = $Lang::tr{'invalid primary dns'};
125 goto ERROR; }
126 }
127 if ($pppsettings{'DNS2'})
128 {
129 if (!(&General::validip($pppsettings{'DNS2'}))) {
130 $errormessage = $Lang::tr{'invalid secondary dns'};
131 goto ERROR; }
132 }
133
134 if ($pppsettings{'MAXRETRIES'} eq '') {
135 $errormessage = $Lang::tr{'max retries not set'};
136 goto ERROR; }
137 if (!($pppsettings{'MAXRETRIES'} =~ /^\d+$/)) {
138 $errormessage = $Lang::tr{'only digits allowed in max retries field'};
139 goto ERROR; }
140
141 if (!($pppsettings{'HOLDOFF'} =~ /^\d+$/)) {
142 $errormessage = $Lang::tr{'only digits allowed in holdoff field'};
143 goto ERROR; }
144
145 if ($pppsettings{'TYPE'} eq 'pptp') {
146 $errormessage = '';
147 if ($pppsettings{'METHOD'} eq 'STATIC') {
148 if (! &General::validip($pppsettings{'ROUTERIP'})) {
149 $errormessage = $Lang::tr{'router ip'}.' '.$Lang::tr{'invalid ip'};
150 }
151 } else {
152 if (($pppsettings{'DHCP_HOSTNAME'} ne '') && (! &General::validfqdn($pppsettings{'DHCP_HOSTNAME'})) ) {
153 $errormessage = $errormessage.' '.$Lang::tr{'hostname'}.' '.$Lang::tr{'invalid hostname'};
154 }
155 }
156 if ($errormessage ne '') {goto ERROR; }
157 }
158 if ($pppsettings{'TYPE'} =~ /^(pppoeatm)$/) {
159 if ( ($pppsettings{'VPI'} eq '') || ($pppsettings{'VCI'} eq '') ) {
160 $errormessage = $Lang::tr{'invalid vpi vpci'};
161 goto ERROR; }
162 if ( (!($pppsettings{'VPI'} =~ /^\d+$/)) || (!($pppsettings{'VCI'} =~ /^\d+$/)) ) {
163 $errormessage = $Lang::tr{'invalid vpi vpci'};
164 goto ERROR; }
165 if (($pppsettings{'VPI'} eq '0') && ($pppsettings{'VCI'} eq '0')) {
166 $errormessage = $Lang::tr{'invalid vpi vpci'};
167 goto ERROR; }
168 if ( $pppsettings{'PROTOCOL'} eq '' ) {
169 $errormessage = $Lang::tr{'invalid input'};
170 goto ERROR; }
171 }
172
173 if ( ($pppsettings{'PROTOCOL'} eq 'RFC1483') && ($pppsettings{'METHOD'} eq '') && \
174 ($pppsettings{'TYPE'} !~ /^(alcatelusb|fritzdsl)$/)) {
175 $errormessage = $Lang::tr{'invalid input'};
176 goto ERROR; }
177
178 if (($pppsettings{'PROTOCOL'} eq 'RFC1483' && $pppsettings{'METHOD'} eq 'DHCP')) {
179 if ($pppsettings{'DHCP_HOSTNAME'} ne '') {
180 if (! &General::validfqdn($pppsettings{'DHCP_HOSTNAME'})) {
181 $errormessage = $errormessage.' '.$Lang::tr{'hostname'}.': '.$Lang::tr{'invalid hostname'}; }
182 }
183 }
184
185 if (($pppsettings{'PROTOCOL'} eq 'RFC1483' && $pppsettings{'METHOD'} eq 'STATIC')) {
186 $errormessage = '';
187 if (! &General::validip($pppsettings{'IP'})) {
188 $errormessage = $Lang::tr{'static ip'}.' '.$Lang::tr{'invalid ip'}; }
189 if (! &General::validip($pppsettings{'GATEWAY'})) {
190 $errormessage = $errormessage.' '.$Lang::tr{'gateway ip'}.' '.$Lang::tr{'invalid ip'}; }
191 if (! &General::validmask($pppsettings{'NETMASK'})) {
192 $errormessage = $errormessage.' '.$Lang::tr{'netmask'}.' '.$Lang::tr{'invalid netmask'}; }
193 if ($pppsettings{'BROADCAST'} ne '') {
194 if (! &General::validip($pppsettings{'BROADCAST'})) {
195 $errormessage = $errormessage.' '.$Lang::tr{'broadcast'}.' '.$Lang::tr{'invalid broadcast ip'}; }
196 }
197 if( $pppsettings{'DNS'} eq 'Automatic') {
198 $errormessage = $Lang::tr{'invalid input'}; }
199 if ($errormessage ne '') {goto ERROR; }
200 }
201
202 if( $pppsettings{'PROTOCOL'} eq 'RFC1483' && $pppsettings{'METHOD'} ne 'PPPOE' && \
203 $pppsettings{'RECONNECTION'} eq 'dialondemand' ) {
204 $errormessage = $Lang::tr{'invalid input'};
205 goto ERROR; }
206
207 if( $pppsettings{'RECONNECTION'} eq 'dialondemand' && `/bin/cat ${General::swroot}/ddns/config` =~ /,on$/m ) {
208 $errormessage = $Lang::tr{'dod not compatible with ddns'};
209 goto ERROR; }
210
211 # if( $pppsettings{'PROTOCOL'} eq 'RFC1483') {
212 # $pppsettings{'ENCAP'} = $pppsettings{'ENCAP_RFC1483'}; }
213 # if( $pppsettings{'PROTOCOL'} eq 'RFC2364') {
214 # $pppsettings{'ENCAP'} = $pppsettings{'ENCAP_RFC2364'}; }
215 delete $pppsettings{'ENCAP_RFC1483'};
216 delete $pppsettings{'ENCAP_RFC2364'};
217
218 ERROR:
219 if ($errormessage) {
220 $pppsettings{'VALID'} = 'no'; }
221 else {
222 $pppsettings{'VALID'} = 'yes'; }
223
224 # write cgi vars to the file.
225 &General::writehash("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}",
226 \%pppsettings);
227
228 # make link and write secret file.
229 &updatesettings();
230 &writesecrets();
231
232 &General::log("$Lang::tr{'profile saved'} $pppsettings{'PROFILENAME'}");
233 }
234 if ($pppsettings{'ACTION'} eq $Lang::tr{'select'})
235 {
236 my $profile = $pppsettings{'PROFILE'};
237 %temppppsettings = ();
238 $temppppsettings{'PROFILE'} = '';
239 &General::readhash("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}",
240 \%temppppsettings);
241
242 # make link.
243 &updatesettings();
244
245 # read in the new params "early" so we can write secrets.
246 %pppsettings = ();
247 &General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
248 $pppsettings{'PROFILE'} = $profile;
249 &General::writehash("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}",
250 \%pppsettings);
251
252 &writesecrets();
253
254 &General::log("$Lang::tr{'profile made current'} $pppsettings{'PROFILENAME'}");
255 }
256 elsif ($pppsettings{'ACTION'} eq $Lang::tr{'delete'})
257 {
258 &General::log("$Lang::tr{'profile deleted'} $pppsettings{'PROFILENAME'}");
259
260 my $profile = $pppsettings{'PROFILE'};
261 truncate ("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}", 0);
262
263 %temppppsettings = ();
264 $temppppsettings{'PROFILE'} = '';
265 &General::readhash("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}",
266 \%temppppsettings);
267
268 # make link.
269 &updatesettings();
270
271 # read in the new params "early" so we can write secrets.
272 %pppsettings = ();
273 &General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
274 $pppsettings{'PROFILE'} = $profile;
275 &initprofile;
276 &General::writehash("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}",
277 \%pppsettings);
278 }
279 elsif ($pppsettings{'ACTION'} eq $Lang::tr{'refresh'})
280 {
281 }
282 else
283 {
284 # read in the current vars
285 %pppsettings = ();
286 $pppsettings{'VALID'} = '';
287 &General::readhash("${General::swroot}/ppp/settings", \%pppsettings);
288 }
289
290 # read in the profile names into @profilenames.
291 my $c=0;
292 for ($c = 1; $c <= $maxprofiles; $c++)
293 {
294 %temppppsettings = ();
295 $temppppsettings{'PROFILENAME'} = $Lang::tr{'empty profile'};
296 &General::readhash("${General::swroot}/ppp/settings-$c", \%temppppsettings);
297 $profilenames[$c] = $temppppsettings{'PROFILENAME'};
298 }
299
300 if ($pppsettings{'VALID'} eq '')
301 {
302 if ($pppsettings{'PROFILE'} eq '') {
303 $pppsettings{'PROFILE'} = '1';
304 &initprofile();
305 }
306 }
307 for ($c = 1; $c <= $maxprofiles; $c++) {
308 $selected{'PROFILE'}{$c} = ''; }
309 $selected{'PROFILE'}{$pppsettings{'PROFILE'}} = "selected='selected'";
310 for ($c = 1; $c <= $maxprofiles; $c++) {
311 $selected{'BACKUPPROFILE'}{$c} = ''; }
312 $selected{'BACKUPPROFILE'}{$pppsettings{'BACKUPPROFILE'}} = "selected='selected'";
313
314 $selected{'TYPE'}{'modem'} = '';
315 $selected{'TYPE'}{'serial'} = '';
316 $selected{'TYPE'}{'pppoe'} = '';
317 $selected{'TYPE'}{'pptp'} = '';
318 $selected{'TYPE'}{$pppsettings{'TYPE'}} = "selected='selected'";
319 $checked{'DEBUG'}{'off'} = '';
320 $checked{'DEBUG'}{'on'} = '';
321 $checked{'DEBUG'}{$pppsettings{'DEBUG'}} = "checked='checked'";
322
323 $selected{'COMPORT'}{'ttyS0'} = '';
324 $selected{'COMPORT'}{'ttyS1'} = '';
325 $selected{'COMPORT'}{'ttyS2'} = '';
326 $selected{'COMPORT'}{'ttyS3'} = '';
327 $selected{'COMPORT'}{'ttyS4'} = '';
328 if ( $pppsettings{'TYPE'} ne '' ){
329 $selected{'COMPORT'}{'ttyACM0'} = '';
330 $selected{'COMPORT'}{'ttyACM1'} = '';
331 $selected{'COMPORT'}{'ttyACM2'} = '';
332 $selected{'COMPORT'}{'ttyACM3'} = '';}
333 $selected{'COMPORT'}{$pppsettings{'COMPORT'}} = "selected='selected'";
334
335 $selected{'DTERATE'}{'9600'} = '';
336 $selected{'DTERATE'}{'19200'} = '';
337 $selected{'DTERATE'}{'38400'} = '';
338 $selected{'DTERATE'}{'57600'} = '';
339 $selected{'DTERATE'}{'115200'} = '';
340 $selected{'DTERATE'}{'230400'} = '';
341 $selected{'DTERATE'}{'460800'} = '';
342 $selected{'DTERATE'}{'921600'} = '';
343 $selected{'DTERATE'}{$pppsettings{'DTERATE'}} = "selected='selected'";
344
345 $checked{'SPEAKER'}{'off'} = '';
346 $checked{'SPEAKER'}{'on'} = '';
347 $checked{'SPEAKER'}{$pppsettings{'SPEAKER'}} = "checked='checked'";
348
349 $selected{'DIALMODE'}{'T'} = '';
350 $selected{'DIALMODE'}{'P'} = '';
351 $selected{'DIALMODE'}{$pppsettings{'DIALMODE'}} = "selected='selected'";
352
353 $checked{'RECONNECTION'}{'persistent'} = '';
354 $checked{'RECONNECTION'}{'dialondemand'} = '';
355 $checked{'RECONNECTION'}{$pppsettings{'RECONNECTION'}} = "checked='checked'";
356
357 $checked{'DIALONDEMANDDNS'}{'off'} = '';
358 $checked{'DIALONDEMANDDNS'}{'on'} = '';
359 $checked{'DIALONDEMANDDNS'}{$pppsettings{'DIALONDEMANDDNS'}} = "checked='checked'";
360
361 $checked{'AUTOCONNECT'}{'off'} = '';
362 $checked{'AUTOCONNECT'}{'on'} = '';
363 $checked{'AUTOCONNECT'}{$pppsettings{'AUTOCONNECT'}} = "checked='checked'";
364
365 $checked{'SENDCR'}{'off'} = '';
366 $checked{'SENDCR'}{'on'} = '';
367 $checked{'SENDCR'}{$pppsettings{'SENDCR'}} = "checked='checked'";
368 $checked{'USEDOV'}{'off'} = '';
369 $checked{'USEDOV'}{'on'} = '';
370 $checked{'USEDOV'}{$pppsettings{'USEDOV'}} = "checked='checked'";
371
372 $checked{'MODEM'}{'PCIST'} = '';
373 $checked{'MODEM'}{'USB'} = '';
374 $checked{'MODEM'}{$pppsettings{'MODEM'}} = "checked='checked'";
375
376 $selected{'LINE'}{'WO'} = '';
377 $selected{'LINE'}{'ES'} = '';
378 $selected{'LINE'}{'ES03'} = '';
379 $selected{'LINE'}{'FR'} = '';
380 $selected{'LINE'}{'FR04'} = '';
381 $selected{'LINE'}{'FR10'} = '';
382 $selected{'LINE'}{'IT'} = '';
383 $selected{'LINE'}{$pppsettings{'LINE'}} = "selected='selected'";
384
385 $checked{'MODULATION'}{'GDMT'} = '';
386 $checked{'MODULATION'}{'ANSI'} = '';
387 $checked{'MODULATION'}{'GLITE'} = '';
388 $checked{'MODULATION'}{'AUTO'} = '';
389 $checked{'MODULATION'}{$pppsettings{'MODULATION'}} = "checked='checked'";
390
391 $checked{'PROTOCOL'}{'RFC1483'} = '';
392 $checked{'PROTOCOL'}{'RFC2364'} = '';
393 $checked{'PROTOCOL'}{$pppsettings{'PROTOCOL'}} = "checked='checked'";
394
395 $selected{'ENCAP'}{'0'} = '';
396 $selected{'ENCAP'}{'1'} = '';
397 #$selected{'ENCAP'}{'2'} = '';
398 #$selected{'ENCAP'}{'3'} = '';
399 #$selected{'ENCAP'}{'4'} = '';
400 $selected{'ENCAP'}{$pppsettings{'ENCAP'}} = "selected='selected'";
401
402 $checked{'METHOD'}{'STATIC'} = '';
403 $checked{'METHOD'}{'PPPOE'} = '';
404 $checked{'METHOD'}{'PPPOE_PLUGIN'} = '';
405 $checked{'METHOD'}{'DHCP'} = '';
406 $checked{'METHOD'}{$pppsettings{'METHOD'}} = "checked='checked'";
407
408 $selected{'AUTH'}{'pap-or-chap'} = '';
409 $selected{'AUTH'}{'pap'} = '';
410 $selected{'AUTH'}{'chap'} = '';
411 $selected{'AUTH'}{'standard-login-script'} = '';
412 $selected{'AUTH'}{'demon-login-script'} = '';
413 $selected{'AUTH'}{'other-login-script'} = '';
414 $selected{'AUTH'}{$pppsettings{'AUTH'}} = "selected='selected'";
415
416 $checked{'DNS'}{'Automatic'} = '';
417 $checked{'DNS'}{'Manual'} = '';
418 $checked{'DNS'}{$pppsettings{'DNS'}} = "checked='checked'";
419
420 &Header::openpage($Lang::tr{'ppp setup'}, 1, '');
421 &Header::openbigbox('100%', 'left', '', $errormessage);
422
423 if ($netsettings{'RED_TYPE'} ne 'PPPOE') {
424 $errormessage = $Lang::tr{'dialup red not ppp'};
425 &Header::openbox('100%', 'center', $Lang::tr{'error messages'});
426 print "<CLASS name='base'>$errormessage\n";
427 print "&nbsp;</CLASS>\n";
428 &Header::closebox();
429 &Header::closebigbox();
430
431 &Header::closepage();
432 exit(1);
433 }
434
435 if ($errormessage) {
436 &Header::openbox('100%', 'center', $Lang::tr{'error messages'});
437 print "<CLASS name='base'>$errormessage\n";
438 print "&nbsp;</CLASS>\n";
439 &Header::closebox();
440 }
441
442
443 ###
444 ### Box for selecting profile
445 ###
446 print "<form method='post' action='$ENV{'SCRIPT_NAME'}'>\n";
447 &Header::openbox('100%', 'center', $Lang::tr{'profile'});
448 print <<END
449 <table width='95%' cellspacing='0'>
450 <tr>
451 <td align='left'>$Lang::tr{'profile'}</td>
452 <td align='left'>
453 <select name='PROFILE' style="width: 165px">
454 END
455 ;
456 for ($c = 1; $c <= $maxprofiles; $c++)
457 {
458 print "\t<option value='$c' $selected{'PROFILE'}{$c}>$c. $profilenames[$c]</option>\n";
459 }
460 print <<END
461 </select></td>
462 <td align='left'><input type='submit' name='ACTION' value='$Lang::tr{'select'}' /></td>
463 <td align='left'><input type='submit' name='ACTION' value='$Lang::tr{'delete'}' /></td>
464 <td align='left'><input type='submit' name='ACTION' value='$Lang::tr{'restore'}' /></td>
465 </tr>
466 </table>
467 <br></br>
468 <hr></hr>
469 END
470 ;
471
472 &Header::closebox();
473 &Header::openbox('100%', 'center', $Lang::tr{'connection'});
474
475 print <<END
476 <table width='95%' cellspacing='0'>
477 <tr>
478 <td width='25%'>$Lang::tr{'interface'}:</td>
479 <td width='25%'>
480 <select name='TYPE' style="width: 165px">
481 END
482 ;
483 if ($netsettings{'RED_TYPE'} eq 'PPPOE') {
484 print <<END
485 <option value='modem' $selected{'TYPE'}{'modem'}>$Lang::tr{'modem'}</option>
486 <option value='serial' $selected{'TYPE'}{'serial'}>$Lang::tr{'serial'}</option>
487 <option value='pppoe' $selected{'TYPE'}{'pppoe'}>PPPoE</option>
488 END
489 ;
490
491 my $atmdev=`cat /proc/net/atm/devices | grep 0`;
492 chomp ($atmdev);
493 if ($atmdev ne '') {
494 print <<END
495 <option value='pppoeatm' $selected{'TYPE'}{'pppoeatm'}>PPPoE over ATM-BRIDGE</option>
496 END
497 ;
498 }
499 }
500 #if ($netsettings{'RED_TYPE'} eq 'PPTP') {#
501 # print "\t<option value='pptp' $selected{'TYPE'}{'pptp'}>PPTP</option>\n";
502 #}
503 #
504 #if (0) {
505 # print <<END
506 # <option value='eciadsl' $selected{'TYPE'}{'eciadsl'}>ECI USB ADSL</option>
507 # <option value='eagleusbadsl' $selected{'TYPE'}{'eagleusbadsl'}>Eagle USB ADSL (Acer Allied-Telesyn Comtrend D-Link Sagem USR)</option>
508 # <option value='conexantusbadsl' $selected{'TYPE'}{'conexantusbadsl'}>Conexant USB(Aetra Amigo Draytek Etec Mac Olitec Vitelcom Zoom)</option>
509 # <option value='amedynusbadsl' $selected{'TYPE'}{'amedynusbadsl'}>Zyxel 630-11 / Asus AAM6000UG USB ADSL</option>
510 # <option value='3cp4218usbadsl' $selected{'TYPE'}{'3cp4218usbadsl'}>3Com USB AccessRunner</option>
511 # <option value='alcatelusb' $selected{'TYPE'}{'alcatelusb'}>Speedtouch USB ADSL user mode driver</option>
512 # <option value='alcatelusbk' $selected{'TYPE'}{'alcatelusbk'}>Speedtouch USB ADSL kernel mode driver</option>
513 #END
514 #;
515 #}
516 # print "<option value='fritzdsl' $selected{'TYPE'}{'fritzdsl'}>Fritz!DSL</option>";
517
518 print <<END
519 </select></td>
520 <td colspan='1' width='25%'><input type='submit' name='ACTION' value='$Lang::tr{'refresh'}'></td>
521 END
522 ;
523 if ($pppsettings{'TYPE'} =~ /^(modem)$/) {
524 print <<END
525 <td colspan='1' width='25%'><A HREF=modem.cgi>$Lang::tr{'modem configuration'}</A></td>
526 END
527 ;
528 }
529
530 print "</tr>";
531
532 #if (-f "/proc/bus/usb/devices") {
533 # <td colspan='2' width='50%'>USB:</td>
534 # my $usb=`lsmod | cut -d ' ' -f1 | grep -E "hci"`;
535 # if ($usb eq '') {
536 # print "\t<td colspan='2' width='50%'>$Lang::tr{'not running'}</td></tr>\n";
537 # } else {
538 # print "\t<td colspan='2' width='50%'>$usb</td></tr>\n";
539 # }
540 #}
541
542 if ($pppsettings{'TYPE'}) {
543 print "<tr><td colspan='4' width='100%'><br></br></td></tr>";
544
545 if ($pppsettings{'TYPE'} =~ /^(modem|serial)$/) {
546 print <<END
547
548 <tr>
549 <td colspan='3' width='75%'>$Lang::tr{'interface'}:</td>
550 <td width='25%'><select name='COMPORT' style="width: 165px">
551 END
552 ;
553 if ($pppsettings{'TYPE'} =~ /^(modem|serial)$/ ) {
554 print <<END
555 <option value='ttyS0' $selected{'COMPORT'}{'ttyS0'}>COM1</option>
556 <option value='ttyS1' $selected{'COMPORT'}{'ttyS1'}>COM2</option>
557 <option value='ttyS2' $selected{'COMPORT'}{'ttyS2'}>COM3</option>
558 <option value='ttyS3' $selected{'COMPORT'}{'ttyS3'}>COM4</option>
559 <option value='ttyS4' $selected{'COMPORT'}{'ttyS4'}>COM5</option>
560 END
561 ;
562 if ($pppsettings{'TYPE'} ne 'serial' ) {
563 print <<END
564 <option value='ttyACM0' $selected{'COMPORT'}{'ttyACM0'}>$Lang::tr{'usb modem on acm0'}</option>
565 <option value='ttyACM1' $selected{'COMPORT'}{'ttyACM1'}>$Lang::tr{'usb modem on acm1'}</option>
566 <option value='ttyACM2' $selected{'COMPORT'}{'ttyACM2'}>$Lang::tr{'usb modem on acm2'}</option>
567 <option value='ttyACM3' $selected{'COMPORT'}{'ttyACM3'}>$Lang::tr{'usb modem on acm3'}</option>
568 END
569 ;
570 }
571 print "</select></td> "}
572 if ($pppsettings{'TYPE'} =~ /^(modem|serial)$/ ) {
573 print <<END
574 <tr>
575 <td colspan='3' width='75%'>$Lang::tr{'computer to modem rate'}</td>
576 <td width='25%'><select name='DTERATE' style="width: 165px">
577 <option value='9600' $selected{'DTERATE'}{'9600'}>9600</option>
578 <option value='19200' $selected{'DTERATE'}{'19200'}>19200</option>
579 <option value='38400' $selected{'DTERATE'}{'38400'}>38400</option>
580 <option value='57600' $selected{'DTERATE'}{'57600'}>57600</option>
581 <option value='115200' $selected{'DTERATE'}{'115200'}>115200</option>
582 <option value='230400' $selected{'DTERATE'}{'230400'}>230400</option>
583 <option value='460800' $selected{'DTERATE'}{'460800'}>460800</option>
584 <option value='921600' $selected{'DTERATE'}{'921600'}>921600</option>
585 </select></td>
586 </tr>
587 END
588 ;
589 }
590 if ($pppsettings{'TYPE'} =~ /^(modem)$/ ) {
591 print "<tr><td colspan='3' width='75%'>$Lang::tr{'number'}</td>\n";
592 print "<td width='25%'><input type='text' name='TELEPHONE' value='$pppsettings{'TELEPHONE'}'></td><tr>\n";
593 if ($pppsettings{'TYPE'} eq 'modem' ) {
594 print "<tr><td colspan='3' width='75%'>$Lang::tr{'modem speaker on'}</td>\n";
595 print "<td width='25%'><input type='checkbox' name='SPEAKER' $checked{'SPEAKER'}{'on'} /></td></tr>\n";
596 }
597 }
598 }
599 if ($pppsettings{'TYPE'} eq 'modem') {
600 print <<END
601 <tr>
602 <td colspan='3' width='75%'>$Lang::tr{'dialing mode'}</td>
603 <td width='25%'><select name='DIALMODE' style="width: 165px">
604 <option value='T' $selected{'DIALMODE'}{'T'}>$Lang::tr{'tone'}</option>
605 <option value='P' $selected{'DIALMODE'}{'P'}>$Lang::tr{'pulse'}</option>
606 </select></td>
607 </tr>
608 <tr>
609 <td colspan='3' width='75%'>$Lang::tr{'send cr'}</td>
610 <td width='50%'><input type='checkbox' name='SENDCR' $checked{'SENDCR'}{'on'} /></td>
611 </tr>
612 END
613 ;
614 }
615
616 print <<END
617 <tr>
618 <td colspan='3' width='75%'>$Lang::tr{'idle timeout'}</td>
619 <td width='25%'><input type='text' name='TIMEOUT' value='$pppsettings{'TIMEOUT'}' /></td>
620 </tr>
621 <tr>
622 <td colspan='3' width='75%'>$Lang::tr{'connection debugging'}:</td>
623 <td width='25%'><input type='checkbox' name='DEBUG' $checked{'DEBUG'}{'on'} /></td>
624 </tr>
625 <tr>
626 <td colspan='4' width='100%'><br></br></td></tr>
627 <tr>
628 <td colspan='4' width='100%' bgcolor='$color{'color20'}'><b>$Lang::tr{'reconnection'}:</b></td>
629 </tr>
630 <tr>
631 <td colspan='4' width='100%'><input type='radio' name='RECONNECTION' value='dialondemand' $checked{'RECONNECTION'}{'dialondemand'}>$Lang::tr{'dod'}</td>
632 </tr>
633 END
634 ;
635 if ($pppsettings{'TYPE'} ne 'isdn') {
636 print <<END
637 <tr>
638 <td colspan='4' width='100%'><input type='radio' name='RECONNECTION' value='persistent' $checked{'RECONNECTION'}{'persistent'}>$Lang::tr{'persistent'}</td>
639 </tr>
640 <tr>
641 <td colspan='3' width='75%'>$Lang::tr{'backupprofile'}:</td>
642 <td width='25%'><select name='BACKUPPROFILE' style="width: 165px">
643 END
644 ;
645 for ($c = 1; $c <= $maxprofiles; $c++) {
646 print "\t<option value='$c' $selected{'BACKUPPROFILE'}{$c}>$c. $profilenames[$c]</option>\n";
647 }
648 print <<END
649 </select></td>
650 </tr>
651 END
652 ;
653 }
654 print <<END
655 <tr>
656 <td colspan='3' width='75%'>$Lang::tr{'dod for dns'}</td>
657 <td width='25%'><input type='checkbox' name='DIALONDEMANDDNS' $checked{'DIALONDEMANDDNS'}{'on'} /></td>
658 </tr>
659 <tr>
660 <td colspan='3' width='75%'>$Lang::tr{'holdoff'}:</td>
661 <td width='25%'><input type='text' name='HOLDOFF' value='$pppsettings{'HOLDOFF'}' /></td>
662 </tr>
663 <tr>
664 <td colspan='3' width='75%'>$Lang::tr{'maximum retries'}</td>
665 <td width='25%'><input type='text' name='MAXRETRIES' value='$pppsettings{'MAXRETRIES'}' /></td>
666 </tr>
667 END
668 ;
669
670 if ($pppsettings{'TYPE'} eq 'pptp')
671 {
672 print <<END
673 <tr><td colspan='4' width='100%'><br></br></td></tr>
674 <tr>
675 <td colspan='4' width='100%' bgcolor='$color{'color20'}'><b>$Lang::tr{'pptp settings'}</b></td>
676 </tr>
677 <tr>
678 <td width='25%'>$Lang::tr{'phonebook entry'}</td>
679 <td colspan='2' width='50%'></td>
680 <td width='25%'><input type='text' name='PHONEBOOK' value='$pppsettings{'PHONEBOOK'}' /></td>
681 </tr>
682 <tr>
683 <td width='25%'><input type='radio' name='METHOD' value='STATIC' $checked{'METHOD'}{'STATIC'} />$Lang::tr{'static ip'}</td>
684 <td colspan='2' width='50%'>$Lang::tr{'router ip'}</td>
685 <td width='25%'><input type='text' name='ROUTERIP' value='$pppsettings{'ROUTERIP'}' /></td>
686 </tr>
687 <tr>
688 <td width='25%'><input type='radio' name='METHOD' value='DHCP' $checked{'METHOD'}{'DHCP'} />$Lang::tr{'dhcp mode'}</td>
689 <td colspan='2' width='50%'>$Lang::tr{'hostname'}:&nbsp;<img src='/blob.gif' alt='*' /></td>
690 <td width='25%'><input type='text' name='DHCP_HOSTNAME' value='$pppsettings{'DHCP_HOSTNAME'}' /></td>
691 </tr>
692 END
693 ;
694 }
695 if ($pppsettings{'TYPE'} =~ /^(pppoeatm)$/)
696 {
697
698 print <<END
699 <tr>
700 <td colspan='4' width='100%' bgcolor='$color{'color20'}'><b>$Lang::tr{'adsl settings'}:</b></td>
701 <tr>
702
703 <td> $Lang::tr{'encapsulation'}:</td>
704 <td colspan='2' width='30%'>
705 <select name='ENCAP'>
706 <option value='0' $selected{'ENCAP'}{'0'}>LLC</option>
707 <option value='1' $selected{'ENCAP'}{'1'}>VCmux</option>
708 </select>
709 </td>
710 </tr>
711 <tr>
712
713 <td nowrap='nowrap'>$Lang::tr{'vpi number'}</td>
714 <td><input type='text' size='5' name='VPI' value='$pppsettings{'VPI'}' /></td>
715 <td align='right'>$Lang::tr{'vci number'}</td>
716 <td colspan='2'><input type='text' size='5' name='VCI' value='$pppsettings{'VCI'}' /></td>
717 </tr>
718 END
719 ;
720 }
721
722
723 if ($pppsettings{'TYPE'} eq 'pppoe' || $pppsettings{'TYPE'} eq 'pppoeatm')
724 {
725 print <<END
726 <tr><td colspan='4' width='100%'><br></br></td></tr>
727 <tr>
728 <td colspan='4' width='100%' bgcolor='$color{'color20'}'><b>$Lang::tr{'pppoe settings'}</b></td>
729 </tr>
730 <tr>
731 <td width='25%'><input type='radio' name='METHOD' value='PPPOE_PLUGIN' $checked{'METHOD'}{'PPPOE_PLUGIN'} />PPPoE plugin</td>
732 <td colspan='2' width='50%'>$Lang::tr{'service name'}&nbsp;<img src='/blob.gif' alt='*' /></td>
733 <td width='25%'><input type='text' name='SERVICENAME' value='$pppsettings{'SERVICENAME'}' /></td>
734 </tr>
735 <tr>
736 <td width='25%'><input type='radio' name='METHOD' value='PPPOE' $checked{'METHOD'}{'PPPOE'} />$Lang::tr{'pppoe'}</td>
737 <td colspan='2' width='50%'>$Lang::tr{'concentrator name'}&nbsp;<img src='/blob.gif' alt='*' /></td>
738 <td width='25%'><input type='text' name='CONCENTRATORNAME' value='$pppsettings{'CONCENTRATORNAME'}' /></td>
739 </tr>
740 <tr>
741 <td width='25%'>MTU</td>
742 <td colspan='2' width='50%'></td>
743 <td width='25%'><input type='text' name='MTU' value='$pppsettings{'MTU'}' /></td>
744 </tr>
745 END
746 ;
747 }
748
749 print <<END
750 <tr><td colspan='4' width='100%'><br></br></td></tr>
751 <tr>
752 <td bgcolor='$color{'color20'}' colspan='4' width='100%'><b>$Lang::tr{'authentication'}</b></td>
753 </tr>
754 <tr>
755 <td width='25%'>$Lang::tr{'username'}</td>
756 <td width='25%'><input type='text' name='USERNAME' value='$pppsettings{'USERNAME'}' /></td>
757 <td width='25%'>$Lang::tr{'password'}</td>
758 <td width='25%'><input type='password' name='PASSWORD' value='$pppsettings{'PASSWORD'}' /></td>
759 </tr>
760 <tr>
761 <td width='25%'>$Lang::tr{'method'}</td>
762 <td width='25%'><select name='AUTH' style="width: 165px">
763 <option value='pap-or-chap' $selected{'AUTH'}{'pap-or-chap'}>$Lang::tr{'pap or chap'}</option>
764 <option value='pap' $selected{'AUTH'}{'pap'}>PAP</option>
765 <option value='chap' $selected{'AUTH'}{'chap'}>CHAP</option>
766 END
767 ;
768 if ($pppsettings{'TYPE'} eq 'modem') {
769 print <<END
770 <option value='standard-login-script' $selected{'AUTH'}{'standard-login-script'}>$Lang::tr{'standard login script'}</option>
771 <option value='demon-login-script' $selected{'AUTH'}{'demon-login-script'}>$Lang::tr{'demon login script'}</option>
772 <option value='other-login-script' $selected{'AUTH'}{'other-login-script'}>$Lang::tr{'other login script'}</option>
773 END
774 ;
775 }
776 print <<END
777 </select></td>
778 <td width='25%'>$Lang::tr{'script name'}&nbsp;<img src='/blob.gif' alt='*' /></td>
779 <td width='25%'><input type='text' name='LOGINSCRIPT' value='$pppsettings{'LOGINSCRIPT'}' /></td>
780 </tr>
781 <tr><td colspan='4' width='100%'><br></br></td></tr>
782 <tr>
783 <td bgcolor='$color{'color20'}' colspan='4' width='100%'><b>DNS:</b></td>
784 </tr>
785 <tr>
786 <td colspan='4' width='100%'><input type='radio' name='DNS' value='Automatic' $checked{'DNS'}{'Automatic'} />$Lang::tr{'automatic'}</td>
787 </tr>
788 <tr>
789 <td colspan='4' width='100%'><input type='radio' name='DNS' value='Manual' $checked{'DNS'}{'Manual'} />$Lang::tr{'manual'}</td>
790 </tr>
791 <tr>
792 <td width='25%'>$Lang::tr{'primary dns'}</td>
793 <td width='25%'><input type='text' name='DNS1' value='$pppsettings{'DNS1'}'></td>
794 <td width='25%'>$Lang::tr{'secondary dns'}</td>
795 <td width='25%'><input type='text' name='DNS2' value='$pppsettings{'DNS2'}'></td>
796 </tr>
797 <tr><td colspan='4' width='100%'><br></br><hr></hr><br></br></td></tr>
798 <tr>
799 <td width='25%'>$Lang::tr{'profile name'}</td>
800 <td width='25%'><input type='text' name='PROFILENAME' value='$pppsettings{'PROFILENAME'}'>
801 <td colspan='2' width='50%'></td>
802 </tr>
803 <tr>
804 <td align='center' colspan='4' width='100%'><input type='submit' name='ACTION' value='$Lang::tr{'save'}'></td>
805 </tr>
806 <tr>
807 <td colspan='2' width='50%'>$Lang::tr{'legend'}:</td>
808 <td colspan='2' width='50%'><img src='/blob.gif' alt='*' />&nbsp;$Lang::tr{'this field may be blank'}</td>
809 </tr>
810 </table>
811 END
812 ;
813 &Header::closebox();
814 }
815
816 print "</form>\n";
817
818 &Header::closebigbox();
819
820 &Header::closepage();
821
822 sub updatesettings
823 {
824 # make a link from the selected profile to the "default" one.
825 unlink("${General::swroot}/ppp/settings");
826 link("${General::swroot}/ppp/settings-$pppsettings{'PROFILE'}",
827 "${General::swroot}/ppp/settings");
828 system ("/usr/bin/touch", "${General::swroot}/ppp/updatesettings");
829 }
830
831 sub writesecrets
832 {
833 # write secrets file.
834 open(FILE, ">/${General::swroot}/ppp/secrets") or die "Unable to write secrets file.";
835 flock(FILE, 2);
836 my $username = $pppsettings{'USERNAME'};
837 my $password = $pppsettings{'PASSWORD'};
838 print FILE "'$username' * '$password'\n";
839 chmod 0600, "${General::swroot}/ppp/secrets";
840 close FILE;
841 }
842
843 sub initprofile
844 {
845 $pppsettings{'PROFILENAME'} = $Lang::tr{'unnamed'};
846 $pppsettings{'COMPORT'} = 'ttyS0';
847 $pppsettings{'DTERATE'} = 115200;
848 $pppsettings{'SPEAKER'} = 'off';
849 $pppsettings{'RECONNECTION'} = 'persistent';
850 $pppsettings{'DIALONDEMANDDNS'} = 'off';
851 $pppsettings{'AUTOCONNECT'} = 'on';
852 $pppsettings{'SENDCR'} = 'off';
853 $pppsettings{'USEIBOD'} = 'off';
854 $pppsettings{'USEDOV'} = 'off';
855 $pppsettings{'MODEM'} = 'PCIST';
856 $pppsettings{'LINE'} = 'WO';
857 $pppsettings{'ENCAP'} = '0';
858 $pppsettings{'VPI'} = '1';
859 $pppsettings{'VCI'} = '32';
860 $pppsettings{'PHONEBOOK'} = 'RELAY_PPP1';
861 $pppsettings{'PROTOCOL'} = 'RFC2364';
862 $pppsettings{'METHOD'} = 'PPPOE_PLUGIN';
863 if ( $pppsettings{'METHOD'} eq 'PPPOE_PLUGIN' ) {
864 $pppsettings{'MTU'} = '1492';
865 $pppsettings{'MRU'} = '1492';
866 } else {
867 $pppsettings{'MTU'} = '1452';
868 $pppsettings{'MRU'} = '1452';
869 }
870 $pppsettings{'DIALMODE'} = 'T';
871 $pppsettings{'MAXRETRIES'} = 5;
872 $pppsettings{'HOLDOFF'} = 30;
873 $pppsettings{'TIMEOUT'} = 15;
874 $pppsettings{'MODULATION'} = 'AUTO';
875 $pppsettings{'AUTH'} = 'pap-or-chap';
876 $pppsettings{'DNS'} = 'Automatic';
877 $pppsettings{'DEBUG'} = 'off';
878 $pppsettings{'BACKUPPROFILE'} = $pppsettings{'PROFILE'};
879
880 # Get PPPoE settings so we can see if PPPoE is enabled or not.
881 &General::readhash("${General::swroot}/ethernet/settings", \%netsettings);
882
883 # empty profile partial pre-initialization
884 if ($netsettings{'CONFIG_TYPE'} =~ /^(1|2|3|4)$/) {
885 $pppsettings{'TYPE'}=lc($netsettings{'RED_TYPE'});
886 } else {
887 $pppsettings{'TYPE'}='modem';
888 }
889 }
890