Hi
Here's attached a patch for the ADSL ISP list in Drakconnect (+ the file)

Changelog :
 - new fields for the database, may be used to add information for the user
 - new ISP : Ceský Telecom (Czech Republic), Tiscali.ch (Switzerland),
Planet.tn (Tunisia)

New fields / possible uses are :
 - id : to identify uniquely an ISP
 - url_tech : an URL (when given by ISP) for configuration parameters
=> could be displayed by Drakconnect to suggest the user to have a
look at it
 - dnsServers_text : when there are more than 2 DNS to choose from =>
could be displayed in Drakconnect to help enter DNS (for static
connections mainly)
 - methods_all : some ISP permit several connections mode, either
static or dhcp => could be displayed as text  "available connections
methods for this ISP"
 - modem : identifies the modem given by the ISP
=> if you take into account all those fields, we could have exactly
the same file, so updates will be easier between Mandrakesoft &
eagle-usb.org project (all comments welcome to enhance this database
and avoid duplication of data)

Changes to come for eagle-usb driver :
- FHS compliancy (/usr/share/eagle-usb contains data + scripts that
were previously in /etc/eagle-usb/ )
- with help of Sagem and Analog we are going to implement CMV for
"easier" connection to some ISP (it is becoming critical for ISP
providing 8 mbps, as the modem has great difficulties to get
connected). There will be two new fields to manage this configuration
: CMVep & CMVei (containing FR04 for Free dégroupé for example, in
order to use /usr/share/eagle-usb/CMVepFR04.txt)
- new eagle-usb with latest DSPcode (useful for Fast 800 E2L, E2T and
compulsory for Fast 800 E3). No news yet for license : only "you are
free to distribute".
- planned release date : well... ASAP (should be by next monday, sorry
for the delay)

Impacts on Drakconnect :
 - display information to the user, using new fields (ask me to be
more precise if that's not clear where to display it)
 - maybe you could use eagleconfig instead of writing directly to
/etc/eagle-usb/eagle-usb.conf ?
 - find a way to manage new fields CMVep/CMVei : add those field to
"expert configuration" with VPI/VCI/encapsulation (but only for
eagle-usb)

Hope this helps
@++
Ben'. aka baud123

Attachment: adsl_consts.pm.new20050118
Description: Binary data

--- adsl_consts.pm      2005-01-12 18:36:44.000000000 +0100
+++ adsl_consts.pm.new20050118  2005-01-18 00:43:01.608090984 +0100
@@ -1,4 +1,4 @@
-package network::adsl_consts; # $Id: adsl_consts.pm,v 1.46 2005/01/04 11:18:01 
tvignaud Exp $
+package network::adsl_consts; # $Id: adsl_consts.pm,v 1.3 2005/01/09 20:18:39 
baud123 Exp $
 
 # This should probably be splitted out into ldetect-lst as some provider db
 
@@ -9,46 +9,67 @@
 @ISA = qw(Exporter);
 @EXPORT = qw(@adsl_data);
 
-# From:
+# Originally from :
 # http://www.eagle-usb.org/article.php3?id_article=23
 # http://www.sagem.com/web-modems/download/support-fast1000-fr.htm
 # http://perso.wanadoo.fr/michel-m/protocolesfai.htm
 
 our %adsl_data = (
-                  # country|provider => { VPI, VCI_hexa, ... }
+                 ## format chosen is the following :
+                  # country|provider => { VPI, VCI_hexa, ... } all parameters
+                 # country is automagically translated into LANG with N 
function
+                 # provider is kept "as-is", not translated
+                 # id is used by eagleconfig to identify an ISP (I use 
ISO_3166-1)
+                 #      see http://en.wikipedia.org/wiki/ISO_3166-1
+                 # url_tech : technical URL providing info about ISP
+                 # vpi : virtual path identifier
+                 # vci : virtual channel identifier (in hexa below !!)
                   # Encapsulation:
                   #     1=PPPoE LLC, 2=PPPoE VCmux (never used ?)
                   #     3=RFC1483/2684 Routed IP LLC,
                   #     4=RFC1483/2684 Routed IP (IPoA VCmux)
                   #     5 RFC2364 PPPoA LLC,
                   #     6 RFC2364 PPPoA VCmux
+                 #      see 
http://faq.eagle-usb.org/wakka.php?wiki=AdslDescription
                   # dns are provided for when !usepeerdns in peers config file
+                 #     dnsServer2 dnsServer3 : main DNS
+                 #     dnsServers_text : string with any valid DNS (when more 
than 2)
+                 # DOMAINNAME2 : used for search key in /etc/resolv.conf
                   # method : PPPoA, pppoe, static or dhcp
+                 # methods_all : all methods for connection with this ISP 
(when more than 1)
+                 # modem : model of modem provided by ISP or tested with ISP
                   # please forward updates to http://forum.eagle-usb.org
-                  # order alphabetically by country (in English) / ISP (local 
language)
+                  # try to order alphabetically by country (in English) / ISP 
(local language)
 
                   N("Algeria") . "|Wanadoo" =>
                   {
+                  id => 'DZ01',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 1,
                    method => 'pppoe',
                    dnsServer2 => '82.101.136.29',
                    dnsServer3 => '82.101.136.206',
+                   dnsServers_text => '82.101.136.29 82.101.136.206',
+                  modem => 'Sagem',
                   },
 
                   N("Argentina") . "|Speedy" =>
                   {
+                  id => 'AR01',
                    vpi => 1,
                    vci => 23,
                    Encapsulation => 1,
                    method => 'pppoe',
                    dnsServer2 => '200.51.254.238',
                    dnsServer3 => '200.51.209.22',
+                   dnsServers_text => '200.51.254.238 200.51.209.22',
+                  modem => 'Sagem',
                   },
 
                   N("Austria") . "|Any" =>
                   {
+                  id => 'AT00',
                    vpi => 8,
                    vci => 30,
                    Encapsulation => 6,
@@ -57,67 +78,84 @@
 
                   N("Austria") . "|AON" =>
                   {
+                  id => 'AT01',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 6,
                    method => 'pppoa',
+                  modem => 'Sagem ?',
                   },
 
                   N("Austria") . "|Telstra" =>
                   {
+                  id => 'AT02',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 1,
-                   method => 'pppoe',
+                  method => 'pppoe',
+                  modem => 'Sagem ?',
                   },
 
                   N("Belgium") . "|ADSL Office" =>
                   {
+                  id => 'BE04',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
-                   method => 'pppoe',
+                  method => 'pppoe',
+                  modem => 'Sagem',
                   },
 
                   N("Belgium") . "|Tiscali BE" =>
                   {
+                  id => 'BE01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    method => 'pppoa',
                    dnsServer2 => '212.35.2.1',
                    dnsServer3 => '212.35.2.2',
+                   dnsServers_text => '212.35.2.1 212.35.2.2 212.233.1.34 
212.233.2.34',
                    DOMAINNAME2 => 'tiscali.be',
+                  modem => 'Sagem',
                   },
 
                   N("Belgium") . "|Belgacom" =>
                   {
+                  id => 'BE03',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    method => 'pppoa',
+                  modem => 'Sagem ?',
                   },
 
                   N("Belgium") . "|Turboline" =>
                   {
+                  id => 'BE02',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 5,
                    method => 'pppoa',
+                  modem => 'Sagem',
                   },
 
                   N("Brazil") . "|Speedy/Telefonica" =>
                   {
+                  id => 'BR01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 1,
                    method => 'pppoe',
                    dnsServer2 => '200.204.0.10',
                    dnsServer3 => '200.204.0.138',
+                   dnsServers_text => '200.204.0.10 200.204.0.138',
+                  modem => 'Arescom NDS1060',
                   },
 
                   N("Brazil") . "|Velox/Telemar" =>
                   {
+                  id => 'BR02',
                    vpi => 0,
                    vci => 21,
                    Encapsulation => 1,
@@ -126,6 +164,7 @@
 
                   N("Brazil") . "|Turbo/Brasil Telecom" =>
                   {
+                  id => 'BR03',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 1,
@@ -134,6 +173,7 @@
 
                   N("Brazil") . "|Rio Grande do Sul (RS)" =>
                   {
+                  id => 'BR04',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 1,
@@ -142,22 +182,27 @@
 
                   N("Bulgaria") . "|BTK ISDN" =>
                   {
+                  id => 'BG02',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 1,
                    method => 'pppoe',
+                  modem => '- / Elcon 131U',
                   },
 
                   N("Bulgaria") . "|BTK POTS" =>
                   {
+                  id => 'BG01',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 1,
                    method => 'pppoe',
+                  modem => '- / Elcon 111U',
                   },
 
                   N("China") . "|China Netcom|Beijing" =>
                   {
+                  id => 'CN01',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
@@ -166,6 +211,7 @@
 
                   N("China") . "|China Netcom|Changchun" =>
                   {
+                  id => 'CN02',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
@@ -174,6 +220,7 @@
 
                   N("China") . "|China Netcom|Harbin" =>
                   {
+                  id => 'CN03',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
@@ -182,6 +229,7 @@
 
                   N("China") . "|China Netcom|Jilin" =>
                   {
+                  id => 'CN04',
                    vpi => 0,
                    vci => 27,
                    Encapsulation => 3,
@@ -190,6 +238,7 @@
 
                   N("China") . "|China Netcom|Lanzhou" =>
                   {
+                  id => 'CN05',
                    vpi => 0,
                    vci => 20,
                    Encapsulation => 3,
@@ -198,6 +247,7 @@
 
                   N("China") . "|China Netcom|Tianjin" =>
                   {
+                  id => 'CN06',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
@@ -206,6 +256,7 @@
 
                   N("China") . "|China Netcom|Xi'an" =>
                   {
+                  id => 'CN07',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
@@ -214,6 +265,7 @@
 
                   N("China") . "|China Telecom|Chongqing" =>
                   {
+                  id => 'CN08',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
@@ -222,6 +274,7 @@
 
                   N("China") . "|China Telecom|Fujian" =>
                   {
+                  id => 'CN09',
                    vpi => 0,
                    vci => 0xc8,
                    Encapsulation => 3,
@@ -230,6 +283,7 @@
 
                   N("China") . "|China Telecom|Guangxi" =>
                   {
+                  id => 'CN10',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
@@ -238,6 +292,7 @@
 
                   N("China") . "|China Telecom|Guangzhou" =>
                   {
+                  id => 'CN11',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 3,
@@ -246,6 +301,7 @@
 
                   N("China") . "|China Telecom|Hangzhou" =>
                   {
+                  id => 'CN12',
                    vpi => 0,
                    vci => 20,
                    Encapsulation => 3,
@@ -254,6 +310,7 @@
 
                   N("China") . "|China Netcom|Hunan" =>
                   {
+                  id => 'CN13',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
@@ -262,6 +319,7 @@
 
                   N("China") . "|China Telecom|Nanjing" =>
                   {
+                  id => 'CN14',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
@@ -270,6 +328,7 @@
 
                   N("China") . "|China Telecom|Shanghai" =>
                   {
+                  id => 'CN15',
                    vpi => 8,
                    vci => 51,
                    Encapsulation => 3,
@@ -278,6 +337,7 @@
 
                   N("China") . "|China Telecom|Shenzhen" =>
                   {
+                  id => 'CN16',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
@@ -286,6 +346,7 @@
 
                   N("China") . "|China Telecom|Urumqi" =>
                   {
+                  id => 'CN17',
                    vpi => 0,
                    vci => 20,
                    Encapsulation => 3,
@@ -294,6 +355,7 @@
 
                   N("China") . "|China Telecom|Wuhan" =>
                   {
+                  id => 'CN18',
                    vpi => 0,
                    vci => 20,
                    Encapsulation => 3,
@@ -302,6 +364,7 @@
 
                   N("China") . "|China Telecom|Yunnan" =>
                   {
+                  id => 'CN19',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
@@ -310,22 +373,36 @@
 
                   N("China") . "|China Telecom|Zhuhai" =>
                   {
+                  id => 'CN20',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 3,
                    method => 'pppoe',
                   },
 
+                  N("Czech Republic") . "|Ceský Telecom" =>
+                  {
+                  id => 'CZ01',
+                  
url_tech='http://www.telecom.cz/domacnosti/internet/pristupove_sluzby/broadband/vse_o_kz_a_moznostech_instalace.php',
+                   vpi => 8,
+                   vci => 48,
+                   Encapsulation => 6,
+                   method => 'pppoa',
+                  modem => 'Sagem Fast 840 E2',
+                  },
+
                   N("Denmark") . "|Any" =>
                   {
+                  id => 'DK01',
                    vpi => 0,
                    vci => 65,
-                   method => 'pppoe',
+                  method => 'pppoe',
                    Encapsulation => 3,
                   },
 
                   N("Finland") . "|Sonera" =>
                   {
+                  id => 'FI01',
                    vpi => 0,
                    vci => 64,
                    Encapsulation => 3,
@@ -334,99 +411,127 @@
 
                   N("France") . "|Free non dégroupé 512/128 & 1024/128" =>
                   { 
+                  id => 'FR01',
                    vpi => 8, 
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '213.228.0.23',
                    dnsServer3 => '212.27.32.176',
+                   dnsServers_text => '213.228.0.23 212.27.32.176',
                    method => 'pppoa',
                    DOMAINNAME2 => 'free.fr',
                   },
 
                   N("France") . "|Free dégroupé 1024/256 (mini)" =>
                   {
+                  id => 'FR04',
                    vpi => 8,
                    vci => 24,
                    Encapsulation => 4,
                    dnsServer2 => '213.228.0.23',
                    dnsServer3 => '212.27.32.176',
+                   dnsServers_text => '213.228.0.68 212.27.32.176 
212.27.32.177 212.27.39.2 212.27.39.1',
+                  methods_all => 'dhclient / dhcpcd / static',
                    DOMAINNAME2 => 'free.fr',
+                  modem => 'Sagem',
                   },
 
                   N("France") . "|n9uf tel9com 512 & dégroupé 1024" =>
                   {
+                  id => 'FR05',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '212.30.93.108',
                    dnsServer3 => '212.203.124.146',
+                   dnsServers_text => '212.30.93.108 212.203.124.146 
(62.62.156.12 62.62.156.13)',
                    method => 'pppoa',
+                  modem => 'Comtrend',
                   },
 
                   N("France") . "|Cegetel non dégroupé 512 IP/ADSL et 
dégroupé" =>
                   {
+                  id => 'FR08',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '212.94.174.85',
                    dnsServer3 => '212.94.174.86',
+                   dnsServers_text => '212.94.174.85 212.94.174.86',
                    method => 'pppoa',
+                  modem => 'Sagem Fast 800',
                   },
 
                   N("France") . "|Club-Internet" =>
                   {
+                  id => 'FR06',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '194.117.200.10',
                    dnsServer3 => '194.117.200.15',
+                   dnsServers_text => '194.117.200.10 194.117.200.15',
                    method => 'pppoa',
                    DOMAINNAME2 => 'club-internet.fr',
+                  modem => 'Sagem',
                   },
 
                   N("France") . "|Wanadoo" =>
                   {
+                  id => 'FR09',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '80.10.246.2',
                    dnsServer3 => '80.10.246.129',
+                   dnsServers_text => '80.10.246.2 80.10.246.129',
                    method => 'pppoa',
                    DOMAINNAME2 => 'wanadoo.fr',
+                  modem => 'Sagem',
                   },
 
                   N("France") . "|Télé2" =>
                   {
+                  id => 'FR02',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '212.151.136.242',
                    dnsServer3 => '130.244.127.162',
+                   dnsServers_text => '212.151.136.242 130.244.127.162 
212.151.136.246',
                    method => 'pppoa',
+                  modem => '-/Sagem Fast800',
                   },
 
                   N("France") . "|Tiscali.fr 128k" =>
                   {
+                  id => 'FR03',
                    vpi => 8,
                    vci => 23, 
                    Encapsulation => 5,
                    dnsServer2 => '213.36.80.1',
                    dnsServer3 => '213.36.80.2',
+                   dnsServers_text => '213.36.80.1 213.36.80.2',
                    method => 'pppoa',
+                  modem => 'Sagem Fast800',
                   },
 
                   N("France") . "|Tiscali.fr 512k" =>
                   {
+                  id => 'FR07',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '213.36.80.1',
                    dnsServer3 => '213.36.80.2',
+                   dnsServers_text => '213.36.80.1 213.36.80.2',
                    method => 'pppoa',
+                  modem => 'Sagem Fast800',
                   },
 
                   N("Germany") . "|Deutsche Telekom (DT)" =>
                   {
+                  id => 'DE01',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 1,
@@ -435,16 +540,20 @@
 
                   N("Germany") . "|1&1" =>
                   {
+                  id => 'DE02',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 1,
                    dnsServer2 => '195.20.224.234',
                    dnsServer3 => '194.25.2.129',
+                   dnsServers_text => '195.20.224.234 194.25.2.129',
                    method => 'pppoe',
+                  modem => 'AT-AR215',
                   },
 
                   N("Greece") . "|Any" =>
                   {
+                  id => 'GR01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
@@ -453,6 +562,7 @@
 
                   N("Hungary") . "|Matav" =>
                   {
+                  id => 'HU01',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 1,
@@ -461,6 +571,7 @@
 
                   N("Ireland") . "|Any" =>
                   {
+                  id => 'IE01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 1,
@@ -469,14 +580,20 @@
 
                   N("Israel") . "|Bezeq" =>
                   {
+                  id => 'IL01',
                    vpi => 8,
                    vci => 30,
                    Encapsulation => 6,
+                   dnsServer2 => '192.115.106.10',
+                   dnsServer3 => '192.115.106.11',
+                   dnsServers_text => '192.115.106.10 192.115.106.11 
192.115.106.35',
                    method => 'pppoa',
+                  modem => 'ECI B-FOCuS 150 A II',
                   },
 
                   N("Italy") . "|Telecom Italia" =>
                   {
+                  id => 'IT01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
@@ -484,36 +601,46 @@
                    dnsServer3 => '194.25.2.129',
                    method => 'pppoa',
                   },
-                 
-                  N("Italy") . "|Libero.it" =>
-                  {
-                   vpi => 8,
-                   vci => 23,
-                   Encapsulation => 6,
-                   dnsServer2 => '193.70.192.25',
-                   dnsServer3 => '193.70.152.25',
-                   method => 'pppoa',
-                  },
 
                   N("Italy") . "|Telecom Italia/Office Users (ADSL Smart X)" =>
                   {
+                  id => 'IT02',
                    vpi => 8,
                    vci => 23,
+                  methods_all => 'static',
                    Encapsulation => 3,
                   },
 
                   N("Italy") . "|Tiscali.it, Alice" =>
                   {
+                  id => 'IT03',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '195.20.224.234',
                    dnsServer3 => '194.25.2.129',
+                   dnsServers_text => '195.20.224.234 194.25.2.129',
+                   method => 'pppoa',
+                  modem => 'Sagem',
+                  },
+                 
+                  N("Italy") . "|Libero.it" =>
+                  {
+                  id => 'IT04',
+                  url_tech => 
'http://internet.libero.it/assistenza/adsl/installazione_ass.phtml',
+                   vpi => 8,
+                   vci => 23,
+                   Encapsulation => 6,
+                   dnsServer2 => '193.70.192.25',
+                   dnsServer3 => '193.70.152.25',
+                   dnsServers_text => '193.70.192.25 193.70.152.25',
                    method => 'pppoa',
+                  modem => 'Aethra Starmodem',
                   },
 
                   N("Lithuania") . "|Lietuvos Telekomas" =>
                   {
+                  id => 'LT01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 1,
@@ -522,16 +649,20 @@
 
                   N("Morocco") . "|Maroc Telecom" =>
                   {
+                  id => 'MA01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '212.217.0.1',
                    dnsServer3 => '212.217.0.12',
+                   dnsServers_text => '212.217.0.1 212.217.0.12',
                    method => 'pppoa',
+                  modem => 'Sagem Fast 800',
                   },
 
                   N("Netherlands") . "|KPN" =>
                   {
+                  id => 'NL01',
                    vpi => 8,
                    vci => 30,
                    Encapsulation => 6,
@@ -540,6 +671,7 @@
 
                   N("Netherlands") . "|Eager Telecom" =>
                   {
+                  id => 'NL02',
                    vpi => 0,
                    vci => 21,
                    Encapsulation => 3,
@@ -548,6 +680,7 @@
 
                   N("Netherlands") . "|Tiscali" =>
                   {
+                  id => 'NL03',
                    vpi => 0,
                    vci => 22,
                    Encapsulation => 3,
@@ -556,6 +689,7 @@
 
                   N("Netherlands") . "|Versatel" =>
                   {
+                  id => 'NL04',
                    vpi => 0,
                    vci => 20,
                    Encapsulation => 3,
@@ -564,84 +698,108 @@
 
                   N("Poland") . "|Telekomunikacja Polska (TPSA/neostrada)" =>
                   {
+                  id => 'PL01',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '194.204.152.34',
                    dnsServer3 => '217.98.63.164',
+                   dnsServers_text => '194.204.152.34 217.98.63.164',
                    method => 'pppoa',
                   },
 
                   N("Poland") . "|Netia neostrada" =>
                   {
+                  id => 'PL02',
+                  url_tech => 'http://www.netia.pl/?o=d&s=210',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 1,
-                   dnsServer2 => '195.114.181.130',
-                   dnsServer3 => '195.114.161.61',
+                  dnsServer2 => '195.114.181.130',
+                  dnsServer3 => '195.114.161.61',
+                  dnsServers_text => '195.114.181.130 195.114.161.61',
                    method => 'pppoe',
+                  modem => 'Sagem Fast 840',
                   },
 
                   N("Portugal") . "|PT" =>
                   {
+                  id => 'PT01',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 1,
-                   method => 'pppoe',
+                  method => 'pppoe',
                   },
 
                   N("Russia") . "|MTU-Intel" =>
                   {
+                  id => 'RU01',
+                  url_tech => 'http://stream.ru/s-requirements',
                    vpi => 1,
                    vci => 50,
                    Encapsulation => 1,
-                   dnsServer2 => '212.188.4.10',
-                   dnsServer3 => '195.34.32.116',
+                  dnsServer2 => '212.188.4.10',
+                  dnsServer3 => '195.34.32.116',
+                  dnsServers_text => '212.188.4.10 195.34.32.116',
                    method => 'pppoe',
+                  modem => 'Huawei SmartAX MT810',
                   },
 
                   N("Slovenia") . "|SiOL" =>
                   {
-                   dnsServer2 => '193.189.160.11',
-                   dnsServer3 => '193.189.160.12',
+                  id => 'SL01',
                    vpi => 1,
                    vci => 20,
                    method => 'pppoe',
-                   DOMAINNAME2 => 'siol.net',
                    Encapsulation => 1,
+                   dnsServer2 => '193.189.160.11',
+                   dnsServer3 => '193.189.160.12',
+                   dnsServers_text => '193.189.160.11 193.189.160.12',
+                   DOMAINNAME2 => 'siol.net',
                   },
 
                   N("Spain") . "|Telefónica IP dinámica" =>
                   {
+                  id => 'ES01',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 1,
                    dnsServer2 => '80.58.32.33',
                    dnsServer3 => '80.58.0.97',
+                   dnsServers_text => '80.58.32.33 80.58.0.97',
                    method => 'pppoe',
+                  modem => 'Comtrend',
                   },
+
                   N("Spain") . "|Telefónica ip fija" =>
                   {
+                  id => 'ES02',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 3,
+                   method => 'static',
                    dnsServer2 => '80.58.32.33',
                    dnsServer3 => '80.58.0.97',
-                   method => 'static',
+                   dnsServers_text => '80.58.32.33 80.58.0.97',
+                  modem => 'Comtrend',
                   },
 
                   N("Spain") . "|Wanadoo/Eresmas Retevision" =>
                   {
+                  id => 'ES03',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 6,
                    dnsServer2 => '80.58.0.33',
                    dnsServer3 => '80.58.32.97',
+                   dnsServers_text => '80.58.0.33 80.58.32.97',
                    method => 'pppoa',
+                  modem => 'Comtrend',
                   },
 
                   N("Spain") . "|Wanadoo PPPoE" =>
                   {
+                  id => 'ES04',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 1,
@@ -650,6 +808,7 @@
 
                   N("Spain") . "|Wanadoo ip fija" =>
                   {
+                  id => 'ES05',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 3,
@@ -658,6 +817,7 @@
 
                   N("Spain") . "|Tiscali" =>
                   {
+                  id => 'ES06',
                    vpi => 1,
                    vci => 20,
                    Encapsulation => 6,
@@ -666,6 +826,7 @@
 
                   N("Spain") . "|Arrakis" =>
                   {
+                  id => 'ES07',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 6,
@@ -674,6 +835,7 @@
 
                   N("Spain") . "|Auna" =>
                   {
+                  id => 'ES08',
                    vpi => 0,
                    vci => 23,
                    Encapsulation => 6,
@@ -682,6 +844,7 @@
 
                   N("Spain") . "|Communitel" =>
                   {
+                  id => 'ES09',
                    vpi => 0,
                    vci => 21,
                    Encapsulation => 6,
@@ -690,6 +853,7 @@
 
                   N("Spain") . "|Euskatel" =>
                   {
+                  id => 'ES10',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 1,
@@ -698,6 +862,7 @@
 
                   N("Spain") . "|Uni2" =>
                   {
+                  id => 'ES11',
                    vpi => 1,
                    vci => 21,
                    Encapsulation => 6,
@@ -706,6 +871,7 @@
 
                   N("Spain") . "|Ya.com PPPoE" =>
                   {
+                  id => 'ES12',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 1,
@@ -714,6 +880,7 @@
 
                   N("Spain") . "|Ya.com static" =>
                   {
+                  id => 'ES13',
                    vpi => 8,
                    vci => 20,
                    Encapsulation => 3,
@@ -722,71 +889,109 @@
 
                   N("Sweden") . "|Telia" =>
                   {
+                  id => 'SE01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
-                   method => 'pppoe',
+                  method => 'pppoe',
                   },
 
                   N("Switzerland") . "|Any" =>
                   {
+                  id => 'CH01',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 3,
-                   method => 'pppoe',
+                  method => 'pppoe',
                   },
 
                   N("Switzerland") . "|BlueWin / Swisscom" =>
                   {
+                  id => 'CH02',
                    vpi => 8,
                    vci => 23,
                    Encapsulation => 5,
                    dnsServer2 => '195.186.4.108',
                    dnsServer3 => '195.186.4.109',
+                   dnsServers_text => '195.186.4.108 195.186.4.109',
+                   method => 'pppoa',
+                  },
+
+                  N("Switzerland") . "|Tiscali.ch" =>
+                  {
+                  id => 'CH03',
+                   vpi => 8,
+                   vci => 23,
+                   Encapsulation => 1,
                    method => 'pppoa',
                   },
 
                   N("Thailand") . "|Asianet" =>
                   {
+                  id => 'TH01',
                    vpi => 0,
                    vci => 64,
                    Encapsulation => 1,
                    dnsServer2 => '203.144.225.242',
                    dnsServer3 => '203.144.225.72',
+                   dnsServers_text => '203.144.225.242 203.144.225.72 
203.144.223.66',
+                   method => 'pppoe',
+                  modem => 'Aztech DSL260U',
+                  },
+
+                  N("Tunisia") . "|Planet.tn" =>
+                  {
+                  id => 'TH01',
+                  url_tech='http://www.planet.tn/',
+                   vpi => 0,
+                   vci => 23,
+                   Encapsulation => 5,
+                   dnsServer2 => '193.95.93.77',
+                   dnsServer3 => '193.95.66.10',
+                   dnsServers_text => '193.95.93.77 193.95.66.10',
                    method => 'pppoe',
+                  modem => 'Aztech DSL260U',
                   },
 
                   N("United Arab Emirates") . "|Etisalat" =>
                   {
+                  id => 'AE01',
                    vpi => 0,
                    vci => 32,
                    Encapsulation => 5,
-                   dnsServer2 => '213.42.20.20',
-                   dnsServer3 => '195.229.241.222',
+                  dnsServer2 => '213.42.20.20',
+                  dnsServer3 => '195.229.241.222',
+                  dnsServers_text => '213.42.20.20 195.229.241.222',
                    method => 'pppoa',
+                  modem => 'Aztech USB DSL206U',
                   },
 
                   N("United Kingdom") . "|Tiscali UK " =>
                   {
+                  id => 'UK01',
                    vpi => 0,
                    vci => 26,
                    Encapsulation => 6,
                    dnsServer2 => '212.74.112.66',
                    dnsServer3 => '212.74.112.67',
+                   dnsServers_text => '212.74.112.66 212.74.112.67',
                    method => 'pppoa',
+                  modem => 'Sagem Fast 800',
                   },
 
                   N("United Kingdom") . "|British Telecom " =>
                   {
+                  id => 'UK02',
                    vpi => 0,
                    vci => 26,
                    Encapsulation => 6,
                    dnsServer2 => '194.74.65.69',
                    dnsServer3 => '194.72.9.38',
+                   dnsServers_text => '194.74.65.69 194.72.9.38',
                    method => 'pppoa',
+                  modem => 'Sagem Fast 800',
                   },
 
                  );
 
-
 1;

Reply via email to