diff options
author | Anssi Hannula <anssi@mandriva.org> | 2008-05-14 07:48:12 +0000 |
---|---|---|
committer | Anssi Hannula <anssi@mandriva.org> | 2008-05-14 07:48:12 +0000 |
commit | 002c5da8a7217c4500e5d1aba6233d9b67a731cc (patch) | |
tree | d174f5a2d198b2f4ed55722444142301f67fa684 /lib | |
parent | 3a7a152ff18fb1574de47a3b36c4244e74aefcba (diff) | |
download | drakx-net-002c5da8a7217c4500e5d1aba6233d9b67a731cc.tar drakx-net-002c5da8a7217c4500e5d1aba6233d9b67a731cc.tar.gz drakx-net-002c5da8a7217c4500e5d1aba6233d9b67a731cc.tar.bz2 drakx-net-002c5da8a7217c4500e5d1aba6233d9b67a731cc.tar.xz drakx-net-002c5da8a7217c4500e5d1aba6233d9b67a731cc.zip |
Add internet settings for Finnish cellular providers.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/network/connection/providers/cellular.pm | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/lib/network/connection/providers/cellular.pm b/lib/network/connection/providers/cellular.pm index 10e6802..b06a702 100644 --- a/lib/network/connection/providers/cellular.pm +++ b/lib/network/connection/providers/cellular.pm @@ -12,6 +12,57 @@ use utf8; # http://computer.cocus.co.il/Setup/V3X/MPT/Addons/GPRSope.inf our %data = ( + # http://www.cubio.fi/fi/cubio_gsm/mms_ja_gprs_asetukset + N("Finland") . "|Cubio" => { + apn => "internet.cubio.net", + }, + # http://www.dnaoy.fi/Yksityisille/Matkaviestinta/Asiakaspalvelu/Documents/Ohjeet/asetukset_yleiset_wxp.pdf + N("Finland") . "|DNA" => { + apn => "internet", + }, + # http://matkaviestinta.elisa.fi/public/elisa.do?id=hen_liit_palvelut_gprs,ds_muut_0054.htm + # http://tuki.elisa.fi/asiakastuki/elisa.do?id=hen_as_matkaviest_ohjeet,as_help_page_0025.htm + # Official pages have inconsistent information on whether login and + # password are used. Presumably they are ignored, but we set them just to + # be sure. + N("Finland") . "|Elisa" => { + apn => "internet", + login => "rlnet", + password => "internet", + }, + # http://koti.mbnet.fi/simopot/asetukset/index.php?operaattori=globetel + N("Finland") . "|Globetel" => { + apn => "internet", + }, + # http://www.kolumbus.com/asiakaspalvelu_asetukset.html + # Redirects to Elisa automatic setup, presumably same settings apply. + N("Finland") . "|Kolumbus" => { + apn => "internet", + login => "rlnet", + password => "internet", + }, + # http://saunalahti.fi/tuki/gsm/vo/ohjeemail.php + N("Finland") . "|Saunalahti" => { + apn => "internet.saunalahti", + }, + # http://koti.mbnet.fi/simopot/asetukset/index.php?operaattori=sonera + N("Finland") . "|Sonera" => { + apn => "internet", + }, + # http://tdc.fi/publish.php?dogtag=songfi_at_ojl_int + N("Finland") . "|Song" => { + apn => "internet.song.fi", + login => "song@internet", + password => "songnet", + }, + # http://www.tele.fi/Asiakaspalvelu/Ohjeet/K%E4nnyk%E4ll%E4+nettiin+ja+tiedonsiirto/Asetukset/ + N("Finland") . "|Tele Finland" => { + apn => "internet", + }, + # http://www.gsm.aland.fi/tjanster/wap/wap.htm + N("Finland") . "|Ålands Mobiltelefon" => { + apn => "internet", + }, N("France") . "|BouygTel" => { apn => "ebouygtel.com", }, |