summaryrefslogtreecommitdiffstats
path: root/lib/network/connection/providers/cellular.pm
blob: 0d8a6f79f7f25a3252e25c7fbbb578b901856527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package network::connection::providers::cellular;

use common;
use utf8;

# http://www.reqwireless.com/apns.html
# http://wiki.mig33.com/mig33/show/apn
# http://www.unlocks.co.uk/gprs_settings.php
# http://www.opera.com/products/smartphone/docs/connect/
# http://www.taniwha.org.uk/gprs.html
# https://rip.psg.com/~randy/gprs-ppp.html
# http://computer.cocus.co.il/Setup/V3X/MPT/Addons/GPRSope.inf

our %data = (
    N("France") . "|BouygTel" => {
        apn => "ebouygtel.com",
    },
    N("France") . "|BouygTel Pro" => {
        apn => "a2bouygtel.com",
        login => "a2b",
        password => "acces",
    },
    N("France") . "|BouygTel Pro GPRS" => {
        apn => "b2bouygtel.com",
        login => "B2B",
        password => "NET",
    },
    N("France") . "|Orange Web" => {
        apn => "orange.fr",
        login => "orange",
        password => "orange",
    },
    # http://www.actua-mobiles.com/p800/viewtopic.php?p=12184#12184
    # http://www.planete-se.net/index.php?showtopic=18184&st=0&p=186768&#entry186768
    N("France") . "|Orange WAP" => {
        apn => "orange",
        login => "orange",
        password => "orange",
    },
    N("France") . "|Orange Entreprises" => {
        apn => "internet-entreprise",
        login => "orange",
        password => "orange",
    },
    N("France") . "|SFR" => {
        apn => "websfr",
    },
    N("Italy") . "|TIM" => {
        apn => "ibox.internet.it",
        login => "tim",
        password => "tim",
    },
    N("Italy") . "|Vodafone" => {
        apn => "web.omnitel.it",
        login => "vodafone",
        password => "vodafone",
    },
    N("Italy") . "|Wind" => {
        apn => "internet.wind.it",
        login => "wind",
        password => "wind",
    },
    N("Italy") . "|Tre" => {
        apn => "tre.it",
        login => "tre",
        password => "tre",
    },
);

1;