I’m having a problem I haven’t had before. When I uncheck the box to have
the modem speaker on in the modem configuration under Yast (kde3.5,
opensuse 11), the setting doesn’t save. The modem makes a lot of those
awful noises at connection.
My girlfriend asked about the mechanism behind the data transfer that
results in an audible, albeit unpleasant, sound. I’m clueless on that one.
Could anyone enlighten us or possible tell us how to avoid having those
sounds to ponder over?
Thanks,
-Tom (and Abby)
Hi
It’s your modem and the remote one negotiating the connection. You can
use the AT command L0 (Modem AT Command Set) in
your init string to turn it off.
–
Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.1 x86 Kernel 2.6.27.7-4-default
up 1 day 3:23, 3 users, load average: 0.05, 0.22, 0.18
GPU GeForce 6600 TE/6200 TE - Driver Version: 177.82
Thanks for the tip. That list is great. I’ve added “L0” to the “INIT2” line
of /etc/sysconfig/network/ifcfg-modem0 as follows, but I’m still waking the
dead with every connection. I’m assuming this is the correct place to
add “L0”.
Thanks again.
BOOTPROTO=‘none’
DIALCOMMAND=‘ATDT’
DIALPREFIX=’’
DIALPREFIXREGEX=’’
INIT1=‘ATZ’
INIT2=‘AT L0 Q0 V1 E1 S0=0 &C1 &D2 +FCLASS=0’
INIT3=’’
INIT8=‘ATM1’
INIT9=’’
MODEM_DEVICE=’/dev/ttyS2’
NAME=‘U.S. Robotics 56K FAX INT’
PPPD_OPTIONS=’’
PROVIDER=‘provider0’
SPEED=‘115200’
STARTMODE=‘manual’
UDI=’’
USERCONTROL=‘yes’
> Hi
> It’s your modem and the remote one negotiating the connection. You can
> use the AT command L0 (http://michaelgellis.tripod.com/modem.html) in
> your init string to turn it off.
>
On Sat December 13 2008 02:37 pm, tom millican wrote:
> Thanks for the tip. That list is great. I’ve added “L0” to the “INIT2” line
> of /etc/sysconfig/network/ifcfg-modem0 as follows, but I’m still waking the
> dead with every connection. I’m assuming this is the correct place to
> add “L0”.
> Thanks again.
>
> BOOTPROTO=‘none’
> DIALCOMMAND=‘ATDT’
> DIALPREFIX=’’
> DIALPREFIXREGEX=’’
> INIT1=‘ATZ’
> INIT2=‘AT L0 Q0 V1 E1 S0=0 &C1 &D2 +FCLASS=0’
> INIT3=’’
> INIT8=‘ATM1’
> INIT9=’’
> MODEM_DEVICE=’/dev/ttyS2’
> NAME=‘U.S. Robotics 56K FAX INT’
> PPPD_OPTIONS=’’
> PROVIDER=‘provider0’
> SPEED=‘115200’
> STARTMODE=‘manual’
> UDI=’’
> USERCONTROL=‘yes’
>
>
>
>> Hi
>> It’s your modem and the remote one negotiating the connection. You can
>> use the AT command L0 (http://michaelgellis.tripod.com/modem.html) in
>> your init string to turn it off.
>>
Tom;
ATM1 ( see INIT8 above) sets the speaker on until carrier detect, try ATM0
which should turn the speaker off. Since you send M1 after L0 it may reset
the volume. Google “Hays commands” to find the various AT commands. I
confess that it’s been over ten years since I actually setup a dial up
connection.
P. V.
“We’re all in this together, I’m pulling for you.” Red Green
PV wrote:
> On Sat December 13 2008 02:37 pm, tom millican wrote:
>
>> Thanks for the tip. That list is great. I’ve added “L0” to the “INIT2”
>> line of /etc/sysconfig/network/ifcfg-modem0 as follows, but I’m still
>> waking the dead with every connection. I’m assuming this is the correct
>> place to add “L0”.
>> Thanks again.
>>
>> BOOTPROTO=‘none’
>> DIALCOMMAND=‘ATDT’
>> DIALPREFIX=’’
>> DIALPREFIXREGEX=’’
>> INIT1=‘ATZ’
>> INIT2=‘AT L0 Q0 V1 E1 S0=0 &C1 &D2 +FCLASS=0’
>> INIT3=’’
>> INIT8=‘ATM1’
>> INIT9=’’
>> MODEM_DEVICE=’/dev/ttyS2’
>> NAME=‘U.S. Robotics 56K FAX INT’
>> PPPD_OPTIONS=’’
>> PROVIDER=‘provider0’
>> SPEED=‘115200’
>> STARTMODE=‘manual’
>> UDI=’’
>> USERCONTROL=‘yes’
>>
>>
>>
Garn!
That was it. I looked up all the others in the list and overlooked M1. Thank
you both very much!
-Tom and Abby
>>> Hi
>>> It’s your modem and the remote one negotiating the connection. You can
>>> use the AT command L0 (http://michaelgellis.tripod.com/modem.html) in
>>> your init string to turn it off.
>>>
> Tom;
>
> ATM1 ( see INIT8 above) sets the speaker on until carrier detect, try
> ATM0 which should turn the speaker off. Since you send M1 after L0 it may
> reset
> the volume. Google “Hays commands” to find the various AT commands. I
> confess that it’s been over ten years since I actually setup a dial up
> connection.