Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 8th June 2012, 07:08 AM
nsnbm Offline
Registered User
 
Join Date: Dec 2007
Location: Melbourne, Australia
Posts: 178
linuxsafari
dial-up problem f17

I have a problem with dial-up internet connection on fedora 17. Unfortunately
I live in a rural area where dial-up is my best option. On fedora 16 there was
no problem with dial-up.

In fedora 17 I used system-config-network to set up the modem and write all the
relevant files. I amended the configurations, to allow user control of the modem
etc. The configurations that I used were the same as those which worked perfectly
for fedora 16, and earlier fedoras. I amended the files:

/etc/wvdial.conf
/etc/sysconfig/network-scripts/ifcfg-IspProviderName

I checked the pap-name and chap-name files and all the files in /etc/ppp/peers and
they were all in the same state as for fedora 16.

On starting the dial-up, the modem was intialized, but then the error message was:

Quote:
Child process /usr/bin/wvdial --remotename IspProviderName --chat 'IspProviderName' (pid 3795)
terminated with signal 6
On investigation, this problem with wvdial seems to be part of the bug at:

bugzilla.redhat.com/show_bug.cgi?id=812651

In that bug report a problem with libwvstreams was reported which seems to explain
the error message which I received, and also suggested that a libwvstreams in rawhide
for fedora 18 had amended the error. However, there is also a response in that bug
report that indicates how the libwvstreams in rawhide won't install on fedora 17. My experience
is the same as that report ... libwvstreams-4.61-5.fc18.i686.rpm wont install on my
fedora 17 and I get the same error message as the respondent mentions in the bug report,
that is, failed dependencies: libcrypto.so.10 and libssl.so.10. I have installed the updated
openssl for fedora 17 which I understood to include the libcrypto.so.10 and libssl.so.10 files,
but that made no difference to the error messages.

I considered uninstalling libwvstreams for fedora 17 and replacing it with libwvstreams for
fedora 16, but rpm wouldn't let me do that because of dependencies, and I am reluctant to
use force, and it doesn't seem like a good idea anyway. I don't run a desktop environment other
than a window manager and prefer to use the command line tools directly.

I tried to connect by using wvdial directly with the command:

wvdial IspProviderName

The modem initialized, followed by the error:

Quote:
wvdial: utils/wvtask.cc:409: static void WvTaskMan::_stackmaster(): Assertion `magic_number == -0x123678' failed. Aborted.
My question is, what can I do about this problem?
Reply With Quote
  #2  
Old 18th June 2012, 06:06 PM
angryfirelord's Avatar
angryfirelord Offline
Registered User
 
Join Date: Dec 2006
Location: Pennsylvania
Posts: 331
windows_xp_2003firefox
Re: dial-up problem f17

A post from another forum indicates that wvdial is broken with that version: http://aptosid.com/index.php?name=PN...wtopic&p=15112

Yum has a downgrade function which will allow you to go down to a lower version. I don't know if you'll need to add the F16 repos to do that. Yum downgrade doesn't resolve dependencies, so you'll have to downgrade those as well. If you're not sure what should be downgraded, post the output here.

There's also an alternative to wvdial that some people recommend: http://umtsmon.sourceforge.net/
Reply With Quote
  #3  
Old 18th June 2012, 07:40 PM
PabloTwo's Avatar
PabloTwo Offline
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,141
linuxchrome
Re: dial-up problem f17

If the "yum downgrade libwvstreams" doesn't work, and it probably won't, you can grab the F16 version from koji and manually install if the dependency chain doesn't make that impossible. BTW, F16 uses recycled F15 versions of wvdial and libwvstreams, in which case you might need to pair that up with the F15/16 version of wvdial.
Code:
BASH:~/-> grep Fedora /etc/fedora-release
Fedora release 16 (Verne)
BASH:~/-> rpm -q libwvstreams wvdial
libwvstreams-4.6.1-3.fc15.x86_64
wvdial-1.61-4.fc15.x86_64

Last edited by PabloTwo; 18th June 2012 at 07:42 PM.
Reply With Quote
  #4  
Old 19th June 2012, 09:55 AM
nsnbm Offline
Registered User
 
Join Date: Dec 2007
Location: Melbourne, Australia
Posts: 178
linuxsafari
Re: dial-up problem f17

Thanks angryfirelord and PabloTwo,

The yum options aren't viable at this point for me because they overwhelm my current dial up, but the info on wvdial is very good to have. I shall look into the downgrading process more, but at my present level with the problem, rpm is not letting me do things nicely. Meanwhile, I'm hanging in with f16. Ben..
Reply With Quote
  #5  
Old 19th June 2012, 12:39 PM
george_toolan Offline
Registered User
 
Join Date: Dec 2006
Posts: 1,762
linuxfirefox
Re: dial-up problem f17

Do you really need this wvdial or can you just connect with pppd and a simple chat script like in the old days?
Reply With Quote
  #6  
Old 21st June 2012, 03:25 AM
nsnbm Offline
Registered User
 
Join Date: Dec 2007
Location: Melbourne, Australia
Posts: 178
linuxfirefox
Re: dial-up problem f17

Thanks george_toolan for that excellent suggestion which sent me back to writing a ppp-on-dialer script to log in to my ISP. However, an update, libwvstreams-4.6.1-6.fc17.i686.rpm, has appeared in the repository and has resolved the issue allowing wvdial to do its work. Thanks for all the guidance and help from everyone in the thread. Ben.
Reply With Quote
  #7  
Old 31st January 2013, 04:06 PM
oystercatcher Offline
Registered User
 
Join Date: Jul 2004
Posts: 244
linuxfirefox
Re: dial-up problem f17

I havent used dial up for a few years but this is a script that I used for a few years.
after pppd is started you should get the login prompt. Resolv.conf also needs to have the
dns server address. I should probably break out the 19.2k modem to verify these details
down the road.

----------
#!/bin/sh

pppd debug kdebug 1 /dev/ttyS0 115200 defaultroute &

sleep 4

ifconfig -a

dig opendns.org


----------
Reply With Quote
Reply

Tags
dialup, f17, problem

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Connection problem dial up fedora1986 Servers & Networking 5 14th January 2010 07:51 PM
problem with dial-up and ppp brianhurren Servers & Networking 2 21st December 2008 05:42 PM
Dial up problem nitram Using Fedora 2 7th April 2006 06:35 AM
dial-up problem at FC3, no Internet ernestino Servers & Networking 2 4th August 2005 12:48 PM
Dial Up Problem - connects but no internet BigJezz Using Fedora 3 16th July 2004 07:33 AM


Current GMT-time: 07:41 (Thursday, 20-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat