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