7724082b1b4f97259ea26c2560b70c4f1c462028
[gnokii.git] / Docs / en_US / gnokii / config.htm
1 <html>
2 <head>
3    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4    <meta name="Author" content="Marcin Wiacek">
5    <title>Configuration</title>
6    <link REL=stylesheet HREF="../styl.css" TYPE="text/css">
7 </head>
8 <body>
9
10 <a NAME="Top"></a>
11 <p align="RIGHT"><a class="autoremail" href="../index.htm">Main page</a></p>
12 <center><font color="#1F409F" size=+2 class="tytul">Configuration</font></center>
13
14 <p><hr size="2" noshade width="60%" align="center" style="color: #004080">
15
16 <p><font color="#1F409F" size=+2 class="dzial">How to install it from the source ?</font><br>
17 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
18
19 <p>If you get the sources you need to create script 
20 <i>configure</i>. You do it by typing:
21 <PRE>tfuj:~/gnokii-0.3.3pre5$ autoconf</PRE>
22
23 <P>If you get the sources from the tarball you don't need to do 
24 this - <TT>configure</TT> is already made for you. For quick install do simply:
25 <PRE>tfuj:~/gnokii-0.3.3pre5$ ./configure
26 tfuj:~/gnokii-0.3.3pre5$ make
27 tfuj:~/gnokii-0.3.3pre5$ make install
28 </PRE>
29
30 <P>But <i>configure</i> has some options. Except obvious 
31 parameters as <i>--prefix</i> which specifies a path to install GNOKII, you 
32 can specify one of the following: 
33
34 <DL>
35   <dt><i>--help</i>
36   <dd>Shows you list of available options</dd></dl>
37 <dl>
38   <DT><i>--enable-debug</i> 
39   <DD>Turns on debugging. It's usefull especially for developers. But if you 
40   find a bug in GNOKII, please compile the sources with debugging enabled and 
41   send this output to the GNOKII mailing list. This is used by <i>gnokii</i> 
42   program. </DD></DL>
43 <DL>
44   <DT><i>--enable-xdebug</i> 
45   <DD>The same as above but used by <i>xgnokii</i>. </DD></DL>
46 <DL>
47   <DT><i>--enable-rlpdebug</i> 
48   <DD>This option turns on debugging specific to the RLP stuff. Note, that it's 
49   very important at the moment as this part of GNOKII is under the hardest 
50   development. </DD></DL>
51 <DL>
52   <DT><i>--without-x</i> 
53   <DD>Don't include X Window system support - <i>xgnokii</i>. </DD></DL>
54 <DL>
55   <DT><i>--enable-security</i> 
56   <DD>Turns on some security functions:.... Use them with caution. </DD></DL>
57 <DL>
58   <DT><i>--enable-win32</i> 
59   <DD>Include MS Windows support. Yes, it really exists. ;-) </DD></DL>
60 <DL>
61   <DT><i>--with-model=MODEL</i>, <i>--with-port=PORT</i> 
62   <DD>Specify the model of the phone (eg. 6150) and the port it is connected to 
63   (eg. /dev/ttyS1). These values can be overwritten with ones from the config 
64   files.
65   </DD>
66 </DL>
67
68 <P>The sample usage:
69 <PRE>tfuj:~/gnokii-0.3.3pre5$ ./configure --prefix=/usr2 --enable-debug --without-x \
70 --enable-security --with-model=6130 --with-port=/dev/ttyS1
71 </PRE>
72
73 <P>When the <i>configure</i> succeed, it shows options GNOKII 
74 will be compiled with:
75 <PRE>    Host system:        linux-gnulibc1
76     Gnokii version:     0.3.3_pre5
77     Xgnokii version:    20000613
78     Phone model:        6130
79     Serial port:        /dev/ttyS1
80     X (GTK) support:    no
81     Debug:              yes
82     XDebug:             no
83     RLPDebug:           no
84     NLS:                yes
85     Security:           yes
86     Win32:               
87     Prefix:             /usr2
88 </PRE>
89
90 <P>Now, the only thing left to do is just ro run:
91 <PRE>tfuj:~/gnokii-0.3.3pre5$ make
92 tfuj:~/gnokii-0.3.3pre5$ make install
93 </PRE>
94
95 <P>Finally, you have GNOKII installed in your system. And now REAL 
96 FUN begins. :-)
97
98 <p><font color="#1F409F" size=+2 class="dzial">How to install it from binaries ?</font><br>
99 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
100
101 <p>If you downloaded gnokii as a pre-built binary you should install
102 it in the conventional manner for the package type in question.
103 For example if you downloaded a .rpm file you can install it by
104 running the following as root.
105
106 <p>rpm -i gnokii-0.3.2-i386.rpm
107
108 <p>If you are using a Debian based system, you can use dpackage
109 to do the installation (FIXME - is this correct ?)
110
111 <p><font color="#1F409F" size=+2 class="dzial">How to make connection with phone ?</font><br>
112 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
113
114 <p>There are three ways to make it:
115
116 <ul>
117 <li>connecting phone with computer using cable. All phones allow to make it
118 (even 3210 - connector is inside). If you want to know more
119 about creating your own cable, read <a href=../gsm/cables/cables.htm>cables faq</a>.</li>
120 <li>using IrDa port in phone and computer. Notice, that your computer
121 and phone must have it (only some series of Nokia phones has it - for example,
122 6110, 6150)</li>
123 <li>connecting to phone special device called "dongle" (it has IrDa port)
124 and making IrDa connection between it and phone. Current gnokii cas use
125 Tekram IRmate 210 - see patches</li>
126 </ul>
127
128 <p><font color="#1F409F" size=+2 class="dzial">How to configure gnokii ?</font><br>
129 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
130
131 <p>First it to use <i>--with-model</i> and <i>--with-port</i> options for
132 configure script. But I do not recommend this. In my opinion these should be
133 removed from configure. Second disadvantage is that you can't use it when
134 you are installing a binary package.
135
136 <p>So, will use better method :-).
137 You should copy the <a href=../examples/gnokiirc>gnokiirc</a>
138 file from the Docs/examples directory to your
139 home directory and name it gnokiirc or copy it into /etc directory
140 and name gnokiirc.
141
142 <p>Using your favorite
143 editor ensure that the settings are correct for your system,
144 the sample file has details of the various options available. The most
145 difficult problem could be discovering model of your phone - go into
146 our <a href=../gsm/firmware/firmware.htm>firmware page</a>
147 and try to use codes written in column
148 <b>Firmware version code</b>. If your phone will display something,
149 see model number on the third line, look on the
150 <a href=../gsm/firmware/firmware.htm>firmware page</a>
151 again (for it) and read phone model then.
152
153 <p>Note that you will need read/write permissions on whatever
154 serial port you specify in gnokiirc.  You can now use gnokii
155 and xgnokii.
156
157 <P>Of course, you don't have to make any config, if you will use
158 these config options. There are default:
159
160 <p>
161 <pre>
162 [global]
163 port = /dev/ttyS0
164 model = 6110
165 connection = serial
166 initlength = default
167 bindir=/usr/local/sbin
168 </pre>
169
170 <p><font color="#1F409F" size=+2 class="dzial">How to configure infrared connection ?</font><br>
171 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
172
173 <p>
174 <ul>
175
176 <li>Go into configuration of your IrDa port (the most often it's made in
177 BIOS, sometimes using program provided by computer's producer):
178
179 <p>
180 <ul>
181 <li>Enable it</li>
182 <li>Setup the COM-Port on which it should work.
183 Here are addresses:
184 <br>ttyS0 (COM1): 3F8, IRQ: 4
185 <br>ttyS1 (COM2): 2F8, IRQ: 3
186 <br>ttyS2 (COM3): 3E8, IRQ: 4
187 <br>ttyS3 (COM4): 2E8, IRQ: 3
188 <br>&nbsp;
189 </li>
190 </ul>
191 </li>
192
193 <li>Configure gnokii (see previous question)
194 setting type of connection to
195 infrared.</li>
196
197 <li>If you are using linux, put linux-irda off (you can't use gnokii over infrared and
198 linux-irda at the same time - it means too, if you want use
199 linux-irda you must close all gnokii-applications what
200 use the infrared-port in moment).
201 </li>
202 </ul>
203
204 <p><font color="#1F409F" size=+2 class="dzial">How to configure gnokii driver for data connection ?</font><br>
205 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
206
207 <p>After installing and configuring gnokii you should make another group
208 and allow mgnokiidev (it our virtual modem driver)
209 to use it. For example (if you have installed gnokii
210 into /usr/local):
211
212 <p>
213 <i>groupadd gnokii<br>
214 chown root:gnokii /usr/local/sbin/mgnokiidev<br>
215 chmod 4750 /usr/local/sbin/mgnokiidev</i>
216
217 <p><b>And now connect (FIRST EXAMPLE):</b>
218
219 <p>Then connect your phone to your PC and then run gnokiid:
220
221 <PRE>[ first console ]
222 tfuj:/home/pawel/gnokii# ./gnokiid/gnokiid 
223 </pre>
224
225 <p>If successful, you should see a message saying that mgnokiidev has been
226 run to create /dev/gnokii.  If you're using a 5110/6110 series phone
227 you should hear a beep and see an "accessory connected" message on
228 the phone.  If you're using a 3810 series phone you won't see anything
229 on the phones LCD.
230
231 <p>And now:
232
233 <p>
234 <pre>
235 [ second console ]
236 [- running minicom -]
237
238 [ third console ]
239 [- when connection is estabilished -]
240 tfuj:/etc/ppp# /usr/sbin/pppd -d -detach /dev/gnokii 115200
241 Using interface ppp0
242 Connect: ppp0 &lt;--&gt; /dev/gnokii
243 sent [LCP ConfReq id=0x1 <MRU 552> <ASYNCMAP 0x0> <MAGIC 0xc5c718fb> <PCOMP> <ACCOMP>]
244 rcvd [LCP ConfReq id=0x8e <ASYNCMAP 0xa0000> <MAGIC 0x56292222> <PCOMP> <ACCOMP> &lt; 11 04 05 f4&gt; &lt; 13 0d 01 70 69 65 6b 6e 61 2d 61 73 34&gt;]
245 sent [LCP ConfRej id=0x8e &lt; 11 04 05 f4&gt; &lt; 13 0d 01 70 69 65 6b 6e 61 2d 61 73 34&gt;]
246 rcvd [LCP ConfNak id=0x1 <MRU 1500>]
247 sent [LCP ConfReq id=0x2 <ASYNCMAP 0x0> <MAGIC 0xc5c718fb> <PCOMP> <ACCOMP>]
248 rcvd [LCP ConfReq id=0x8f <ASYNCMAP 0xa0000> <MAGIC 0x56292222> <PCOMP> <ACCOMP>]
249 sent [LCP ConfAck id=0x8f <ASYNCMAP 0xa0000> <MAGIC 0x56292222> <PCOMP> <ACCOMP>]
250 rcvd [LCP ConfAck id=0x2 <ASYNCMAP 0x0> <MAGIC 0xc5c718fb> <PCOMP> <ACCOMP>]
251 sent [IPCP ConfReq id=0x1 <ADDR 192.168.1.10> <COMPRESS 01 0f VJ>]
252 sent [CCP ConfReq id=0x1 <DEFLATE 15> <DEFLATE(OLD#) 15> <BSD 15 v1>]
253 rcvd [IPCP ConfReq id=0x16 <COMPRESS 0f VJ 00> <ADDR 157.25.75.129>]
254 sent [IPCP ConfAck id=0x16 <COMPRESS 0f VJ 00> <ADDR 157.25.75.129>]
255 rcvd [IPCP ConfNak id=0x1 <ADDR 157.25.94.141>]
256 sent [IPCP ConfReq id=0x2 <ADDR 157.25.94.141> <COMPRESS 01 0f VJ>]
257 rcvd [LCP ProtRej id=0x90 80 fd 01 01 00 0f 1a 04 78 00 18 04 78 00 15 03 2f]
258 rcvd [IPCP ConfAck id=0x2 <ADDR 157.25.94.141> <COMPRESS 01 0f VJ>]
259 local  IP address 157.25.94.141
260 remote IP address 157.25.75.129
261 Terminating on signal 2.
262 sent [LCP TermReq id=0x3 "User request"]
263 rcvd [LCP TermAck id=0x3]
264 Connection terminated.
265 Connect time 5.6 minutes.
266 Sent 30568 bytes, received 197133 bytes.
267 tfuj:/etc/ppp# 
268 </PRE>
269
270 <p><b>SECOND EXAMPLE (I used such scripts):</b>
271
272 <PRE>/home/pawel/.gnokiirc
273 ---------------------
274 global]
275 port = /dev/ttyS1
276 model = 6110
277 connection = serial
278 initlength = 1
279
280 /usr/sbin/ppp-gnokii
281 --------------------
282 #!/bin/sh
283 LOCAL_IP=0.0.0.0       
284 REMOTE_IP=0.0.0.0     
285 NETMASK=255.255.255.0   
286 DIALER_SCRIPT=/etc/ppp/ppp-gnokii
287 exec /usr/sbin/pppd debug /dev/gnokii 115200 \
288 $LOCAL_IP:$REMOTE_IP \
289 connect $DIALER_SCRIPT
290
291 /etc/ppp/ppp-gnokii
292 -------------------
293 #!/bin/sh
294 /usr/sbin/chat -v                                       \
295         TIMEOUT         30                              \
296         ABORT           '\nBUSY\r'                      \
297         ABORT           '\nNO ANSWER\r'                 \
298         ABORT           '\nRINGING\r\n\r\nRINGING\r'    \
299         ABORT           '\nNO CARRIER\r'                \
300         ''              ATDT501808080                   \
301         CONNECT         ''
302
303 /etc/ppp/options
304 ----------------
305 -detach
306 modem
307 crtscts
308 defaultroute
309 asyncmap 0
310 mtu 552
311 mru 552
312
313 /etc/ppp/pap-secrets
314 --------------------
315 ppp * ppp
316 </PRE>
317
318 <P>Number 501808080 is an Internet access number for all Idea 
319 Centertel (Polish GSM operator) abonents. With these files the only thing to do 
320 is to run <i>gnokiid</i> and <i>/usr/sbin/ppp-gnokii</i>. Note that both: 
321 <i>/usr/sbin/ppp-gnokii</i> and <i>/etc/ppp/ppp-gnokii</i> must be 
322 executable files. At the moment you have to run <i>ppp-gnokii</i> as the 
323 superuser unless the simple user has a permission to write to a <I>pty</I> 
324 device. <i>gnokiid</i> must be run as the user belinging to <I>gnokii</I> 
325 group.
326
327 <PRE>
328 [ first console ]
329 tfuj:~S /usr/sbin/gnokiid
330 Initialising GSM
331 Slave pty is /dev/ttyp9, calling /usr/sbin/mgnokiidev to create /dev/gnokii.
332
333 [ second console ]
334 tfuj:~# /usr/sbin/ppp-gnokii
335 Serial connection established.
336 Using interface ppp0
337 Connect: ppp0 &lt;--&gt; /dev/gnokii
338 Warning - secret file /etc/ppp/pap-secrets has world and/or group access
339 sent [LCP ConfReq id=0x1     ]
340 rcvd [LCP ConfReq id=0xbb     ]
341 sent [LCP ConfAck id=0xbb     ]
342 rcvd [LCP ConfNak id=0x1 ]
343 sent [LCP ConfReq id=0x2    ]
344 rcvd [LCP ConfAck id=0x2    ]
345 Warning - secret file /etc/ppp/pap-secrets has world and/or group access
346 sent [PAP AuthReq id=0x1 user="ppp" password="ppp"]
347 rcvd [PAP AuthAck id=0x1 ""]
348 Remote message: ^F
349 sent [IPCP ConfReq id=0x1  ]
350 sent [CCP ConfReq id=0x1   ]
351 rcvd [IPCP ConfReq id=0x49  ]
352 sent [IPCP ConfAck id=0x49  ]
353 rcvd [IPCP ConfNak id=0x1 ]
354 sent [IPCP ConfReq id=0x2  ]
355 rcvd [IPCP ConfAck id=0x2  ]
356 local  IP address 192.168.23.55
357 remote IP address 192.168.9.2
358 </PRE>
359
360 <p><b>THIRD EXAMPLE:</b>
361
362 <p>Use /dev/gnokii as a modem:
363
364 <p><i>e.g. ppp session<br>
365 --------------- /etc/ppp/peers/demon-gnokii ---------------------<br>
366 /dev/gnokii 115200<br>
367 modem crtscts defaultroute<br>
368 connect 'chat -v ABORT BUSY ABORT ERROR ABORT "NO CARRIER" "" AT OK-AT-OK ATD02083389666 CONNECT'<br>
369 user XXXX.demon.co.uk<br>
370 noauth<br>
371 mtu 296<br>
372 debug<br>
373 ----------------------------------------------------------------<br>
374 --------------- /etc/ppp/pap-secrets ---------------------------<br>
375 XXXX.demon.co.uk        demon-gnokii    <yourpassword><br>
376 ----------------------------------------------------------------<br>
377 </i>
378
379 <p>Then "pppd call demon-gnokii" should connect
380 <br>('tail -f /var/log/messages' to see what is happening)
381
382 <p>If a call terminates you should get 'NO CARRIER' and gnokiid should
383 continue to work, but this is early code and you may find you have to
384 Ctrl-C and restart gnokiid (especially if the phone says the terminal
385 connection has been lost)
386
387 <p><b>AND ANOTHER EXAMPLE PPP SCRIPT FROM <a href="mailto:wikne@lynx.uio.no">Jon Wikne</a>:</b>
388
389 <p>
390 <i>
391 #!/bin/sh<br>
392 #<br>
393 # Script to launch PPP over a Nokia 5110 / 6110 mobile phone<br>
394 # 20-06-2000 -- Jon Wikne<br>
395 #<br>
396 ### NOTE: "01234567" and "username" below must be replaced<br>
397 ### with your actual ISP's phone number and your user name.<br>
398 #<br>
399 ### NOTE 2: If you are calling an ISDN number or a digital<br>
400 ### line you may also need ATS35=0 in the chat sequence.<br>
401 &nbsp;<br>
402 # Launch gnokiid....<br>
403 echo "Launching gnokiid... "<br>
404 /usr/local/sbin/gnokiid &<br>
405 &nbsp;<br>
406 # Wait for gnokiid to find the phone.<br>
407 sleep 7<br>
408 &nbsp;<br>
409 # Now, down to business!<br>
410 echo "Calling and starting pppd... "<br>
411 pppd /dev/gnokii 115200 debug connect \<br>
412 'chat -v ECHO ON ABORT BUSY ABORT ERROR ABORT "NO CARRIER" \<br>
413 "" AT OK ATDT01234567 CONNECT ""' \<br>
414 noipdefault ipcp-accept-local ipcp-accept-remote \<br>
415 user username<br>
416 &nbsp;<br>
417 # Some cleaning up to do....<br>
418 <br>
419 echo -n "Stopping gnokiid... "<br>
420 ps ax | awk 'BEGIN { prog="/usr/local/sbin/gnokiid"; ARGC=1 } <br>
421 { if (prog == $5) { print $1 ; exit 0 } }' $1<br>
422 kill "$1"<br>
423 echo $1
424 </i>
425
426 <p><font color="#1F409F" size=+2 class="dzial">Permission problem...</font><br>
427 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
428
429 <pre>
430 > Now xgnokii want  to connecting.....  and some minutes later it's say:
431 >  Gnokii serial_open: open: Permission denied
432 > Couldn't open FB61 device: Permission denied
433
434 you should set your /dev/ttySx to:
435
436 crw-rw----    1 root     dialout    4,  65 Jul  5  2000 /dev/ttyS1
437
438 and add yourself to the group dialout. or make a new group gnokii 
439 and do the same thing for this group. see the gnokii doc about 
440 this, especialy if you want to use gnokiid.
441 </pre>
442
443 <p><font color="#1F409F" size=+2 class="dzial">Xgnokii files missed...</font><br>
444 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
445
446 <pre>
447 > > I start to configure:
448 > > 
449 > > elwinx:/usr/src/gnokii# ./configure  --prefix=/usr/local/
450 > > 
451 > > checking for X... (cached) libraries /usr/X11R6/lib, headers
452 > > /usr/X11R6/include
453 > > checking for X11/xpm.h... (cached) no
454 > > configure: warning: Cannot find include X11/xpm.h
455 > > configure: warning: Disabling xgnokii.
456 </pre>
457
458 <p>For Debian GNU/Linux 2.2 potato:
459
460 <p>
461 <pre>
462 > Do:
463 > dpkg -S \*xpm.h
464 > and show the result. You can't use xgnokii without libxpm.
465
466 After I installed the xpm4g-dev_3.4k-5.deb xgnokii found my X
467
468 My next Problem was the Program didn't find the gtk.h
469
470 I installed this lib's
471 libglib1.2-dev
472 libgtk1.2-dev_1.2.7-1.deb
473
474 and xgnokii are start up
475 </pre>
476
477 <p>For Redhat:
478
479 <p>
480 <pre>
481 On Red Hat 6.2 (or derived?)
482
483 sloth:danielm[12]% locate xpm.h
484 /usr/X11R6/include/X11/xpm.h
485 sloth:danielm[13]% rpm -qf /usr/X11R6/include/X11/xpm.h
486 xpm-devel-3.4k-2
487
488 On Red Hat 7 (or derived?)
489
490 mouth:danielm[4]% locate xpm.h
491 /usr/X11R6/include/X11/xpm.h
492 mouth:danielm[5]% rpm -qf /usr/X11R6/include/X11/xpm.h
493 XFree86-devel-4.0.1-1
494 </pre>
495
496 <p><font color="#1F409F" size=+2 class="dzial">Infrared problem</font><br>
497 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
498
499 <pre>
500 > I'm having trouble getting Gnokii to work with my Nokia 6110 using the
501 > infrared connection. It works perfectly with the cable. When I run gnokii
502 > as non-root I get the following output:
503
504 > Added new section global
505 > Adding key/value port//dev/ttyS3
506 > Adding key/value model/6110
507 > Adding key/value initlength/default
508 > Adding key/value connection/infrared
509 > Adding key/value bindir//usr/local/sbin/
510 > Entering monitor mode...
511 > Initialising GSM interface...
512 > Starting IR mode...!
513 > Couldn't open FB61 infrared device: Device or resource busy
514 > Hmmm... GSM_LinkOK never went true. Quitting.
515
516 > And if I run it as root it looks like this:
517
518 > Added new section global
519 > Adding key/value port//dev/ttyS3
520 > Adding key/value model/6110
521 > Adding key/value initlength/default
522 > Adding key/value connection/infrared
523 > Adding key/value bindir//usr/local/sbin/
524 > Entering monitor mode...
525 > Initialising GSM interface...
526 > Starting IR mode...!
527 > PC: 1c:00:0c:02:00:09:00:01:00:0d:00:00:02:01:40:00:52:06:
528 > Timeout in IR-mode
529 > PC: 1c:00:0c:02:00:09:00:01:00:0d:00:00:02:01:41:00:53:06:
530 > Timeout in IR-mode
531 > PC: 1c:00:0c:02:00:09:00:01:00:0d:00:00:02:01:42:00:50:06:
532 > Timeout in IR-mode
533 > PC: 1c:00:0c:02:00:09:00:01:00:0d:00:00:02:01:43:00:51:06:
534 > Timeout in IR-mode
535 > PC: 1c:00:0c:02:00:09:00:01:00:0d:00:00:02:01:44:00:56:06:
536 > Timeout in IR-mode
537 > Hmmm... GSM_LinkOK never went true. Quitting.
538
539 > It makes no difference if IR-reception is activated or not (well maybe the
540 > numbers are different, I haven't checked)
541
542 > I have followed the Alessandro's beta-HOWTO which was posted June 22 2000
543 > with the subject "Re: IR setup".
544
545 > In /var/log/messages I have found the following:
546
547 > Feb 18 23:34:16 bmw kernel: ircomm_tty: virtual tty driver for IrCOMM (
548 > revision:Wed May 26 00:49:11 1999 ) 
549 > Feb 18 23:34:16 bmw kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A 
550 > Feb 18 23:34:16 bmw kernel: ttyS03 at 0x02e8 (irq = 3) is a 16550A 
551
552 > I have tried both with and without the irda-module loaded (insmod
553 > irda) but without luck.
554
555 > I'm using a Fujitsu C325 Lifebook (labtop) and my Nokia 6110 is version
556 > 4.33. Has anyone experienced problems like these and hopefully has found a
557 > solution, or maybe just have some ideas for what I should try next.
558
559 "I also had removed the Ethernet PCcard.
560 That thing got assigned the _interrupt_ (irq 3) that the serial interface
561 for the IR port needs. Without it gnokii works."
562
563 Now I've got contact to my Nokia 6110 using the infrared port.
564 </pre>
565
566 <p><font color="#1F409F" size=+2 class="dzial">Answering data calls problem...</font><br>
567 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
568
569 <pre>
570 > It seems like it's some sort of PacBell or Verizon thing, because I
571 > get a ring when I try to dial a voice call, but when I dial from
572 > minicom/gnokiid I get "NO CARRIER" ("Check Operator Services" on the
573 > phone), and dialing in from the Palm still gets no ring.
574
575 First we should know how operators manage data call services,
576 is there any international standard (it would be, to make international data
577 calls possible). I described, how it works with my operator (Plusgsm/PL)
578 and I'm interesting if it's a worldwide standard for these services?
579 Did somebody tried to make a cellular-to-cellular international data transfer ?
580
581 In Plusgsm there are three kinds of data calls :
582 1. OUTGOING CALLS. Service activation is free with no additional monthly charge.
583    For default this service is disabled, you have to call operator's helpdesk
584    to enable. With this service is possible to call:
585       a) any internet gate
586       b) WAP gate
587       c) any "private" computer with own transfer protocol
588       d) ?? send a fax ?? (with special fax software for cellular modem
589          included in NCDS)
590    1 minute charge is similar to voice calls. It's not allowed by the operator
591    to answer incoming data call.
592 2. INCOMING CALLS. You have to pay for service activation (5$) and additional
593    monthly charge (10$). Then you will get a new SIM card with 2 phone numbers:
594    one for voice/sms and second one - for incoming data calls only.
595    1 min charge depends on the network from the call was initiated,
596    generally 1...2 times x voice call.
597 3. FAX CALLS. Another payable service, not covered by above mentioned.
598    There is a special trick for incoming fax: it's stored in "FAX mailbox",
599    you can call this mailbox with standard fax machine
600    (or cellular modem connected to PC) to receive it.
601
602 I guess your operator have similar restrictions for incoming data calls and
603 here is your problem. Incoming call is recognized as a data type and rejected.
604 It would be nice to know if it's rejected on the operator's software level or
605 by the phone software (acc. to informations stored in the SIM).
606 In the second case it's easier to omit these restrictions. But be careful !
607 You will be treated by the law in the same way as if you try to hack
608 Bill Gates credit card number ;-)  .
609 </pre>
610
611 <p><font color="#1F409F" size=+2 class="dzial">Xgnokii works, gnokii not...</font><br>
612 <hr align="LEFT" size="3" width="300" color="#60c0a0" noshade>
613
614 <pre>
615 > 1. Why is it that xgnokii communicates perfectly with my 3210, while the
616 > only thing that the command line gnokii does is:
617 > GSM/FBUS init failed! (Unknown model ?). Quitting.
618 > [cvd@sirius gnokii]$ ./gnokii --monitor
619 > Opened configuration file /home/cvd/.gnokiirc
620 > Added new section global
621 > Adding key/value port//dev/ttyS1
622 > Adding key/value model/3210
623 > Adding key/value initlength/default
624 > Adding key/value connection/serial
625
626 Look into latest gnokiirc from /docs/default. "serial" setting for connection
627 is not used from long time. Change to other actual parameter ("fbus" ?)...
628 </pre>
629
630 </div>
631 </body>
632 </html>