{ 

if ( $InternetAccessType =~ /adsl/i ) {
	if ($ADSLType =~ /pptp/i) {
		$OUT .="lock \nnoipdefault \nnoauth \nusepeerdns \ndefaultroute\n";
	} elsif ($ADSLType =~ /pppoe/i) {
		$OUT .= "noipdefault \nusepeerdns \nhide-password \ndefaultroute \npersist \nlock \n";
	} elsif ($ADSLType =~ /speedtouch/i) {
		$OUT .= "noipdefault \nusepeerdns \nhide-password \ndefaultroute \npersist \nlock \nnoauth \n";
	} elsif ( $InternetAccessType =~ /ppp/i ) {
	$OUT .= "name \"$PPPLogin\" \n";
	$OUT .= "noauth \nusepeerdns \nnoipdefault \nlcp-echo-interval 30 \nlcp-echo-failure 2 \n";
	}
}

}
