Sponsored Content
Operating Systems Linux Red Hat Unable to connect "Reliance Netconnect" on Redh Hat Linux 5 Post 302740877 by arunraj192 on Friday 7th of December 2012 03:44:43 AM
Old 12-07-2012
RedHat Unable to connect "Reliance Netconnect" on Redh Hat Linux 5

Hi Friends,

Can someone help me with below issue , thanks.

Subject : Unable to configure "Reliance NetConnect" on RHEL 5

Here some helpful information :

Code:
[root@localhost dev]# lsusb
Bus 001 Device 001: ID 0000:0000  
Bus 001 Device 002: ID 8087:0020  
Bus 001 Device 003: ID 192f:0416  
Bus 002 Device 005: ID 12d1:1446 Huawei Technologies Co., Ltd. 
Bus 002 Device 001: ID 0000:0000  
Bus 002 Device 002: ID 8087:0020  
Bus 002 Device 003: ID 064e:f209 Suyin Corp. 

[root@localhost dev]# dmesg | grep tty
[root@localhost dev]# 


[root@localhost dev]# more /etc/wvdial.conf 
# Reliance Netconnect

[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Stupid Mode =1
Modem Type = USB Modem
ISDN = 0
Phone = #777
New PPPD = yes
Modem = /dev/ttyUSB0
Username = **********
Password = **********
Baud = 9600
[root@localhost dev]# 

[root@localhost dev]# lsmod
Module                  Size  Used by
usbserial              67761  0 
usb_storage           116769  0 
autofs4                57161  2 
hidp                   83649  2 
rfcomm                104809  0 
l2cap                  89409  10 hidp,rfcomm
bluetooth             118725  5 hidp,rfcomm,l2cap
sunrpc                197513  1 
dm_mirror              60105  0 
dm_multipath           52433  0 
dm_mod                 96017  2 dm_mirror,dm_multipath
ipv6                  411425  14 
parport_pc             62313  0 
lp                     47121  0 
parport                73165  2 parport_pc,lp
sr_mod                 50789  0 
cdrom                  68713  1 sr_mod
sg                     69865  0 
shpchp                 70765  0 
joydev                 43969  0 
pcspkr                 36289  0 
serio_raw              40517  0 
ahci                   55621  2 
libata                160849  1 ahci
sd_mod                 56257  3 
scsi_mod              186361  5 usb_storage,sr_mod,sg,libata,sd_mod
ext3                  166993  1 
jbd                    93873  1 ext3
ehci_hcd               65229  0 
ohci_hcd               54493  0 
uhci_hcd               57433  0 
[root@localhost dev]# 

[root@localhost dev]# wvdialconf /etc/wvdial.conf 
Scanning your serial ports for a modem.

Port Scan<*1>: S0   S1   S2   S3   USB0 


Sorry, no modem was detected!  Is it in use by another program?
Did you configure it properly with setserial?
[root@localhost dev]#

Let me know if you need more information inorder to resolve this issue.

Thanks
Arun

Last edited by Scrutinizer; 12-07-2012 at 06:05 AM.. Reason: Replaced font tags with code tags
 

5 More Discussions You Might Find Interesting

1. SuSE

VMDB Failure" followed by "Unable to open snapshot file"

keep getting an error when I try to revert to a snapshot: "VMDB Failure" followed by "Unable to open snapshot file" Im using vmware server 1.0.4, host OS is windows xp and guest OS is SLES. Is there anything I can do to recover the snapshot or am I in trouble!?!?! (0 Replies)
Discussion started by: s_linux
0 Replies

2. UNIX for Advanced & Expert Users

linux system recovery after overriding connect() by "ld.so.preload"

dear fellows; i have used ld.so.preload file to override connect() function, dynamic library overriding, it did worked really fine ...... but i went on to struck in a situation ... within the overrided connect() i have used printf once to see IP and Port to whom the connect request is being... (1 Reply)
Discussion started by: mzeeshan
1 Replies

3. Emergency UNIX and Linux Support

Unable to connect to oracle in red hat linux

Hi Gurus, I have installed the oracle xpress 10g edition in my red hat linux and saw the message that it has been installed successfully ,but after that I started the database by going through application->database->start database and after that i open the sql prumt but when i tried to connect... (18 Replies)
Discussion started by: sanjay.login
18 Replies

4. Debian

Connect Reliance netconnect data card in linux debian

Hi, I want to connect Reliance netconnect data card in linux - debian. I don't know which software needs to be install. can you please help me what is the software needs to be install to connect this datacard. I have connected this datacard in windows using the CD which is provided by... (3 Replies)
Discussion started by: latika
3 Replies

5. UNIX for Dummies Questions & Answers

how to know if i use "Red Hat Enterprise Linux" or "Red Hat Desktop" ?

how to know if i use "Red Hat Enterprise Linux" or "Red Hat Desktop" ? (2 Replies)
Discussion started by: ahmedamer12
2 Replies
SOCKET_SET_OPTION(3)							 1						      SOCKET_SET_OPTION(3)

socket_set_option - Sets socket options for the socket

SYNOPSIS
bool socket_set_option (resource $socket, int $level, int $optname, mixed $optval) DESCRIPTION
The socket_set_option(3) function sets the option specified by the $optname parameter, at the specified protocol $level, to the value pointed to by the $optval parameter for the $socket. PARAMETERS
o $socket - A valid socket resource created with socket_create(3) or socket_accept(3). o $level - The $level parameter specifies the protocol level at which the option resides. For example, to retrieve options at the socket level, a $level parameter of SOL_SOCKET would be used. Other levels, such as TCP, can be used by specifying the protocol number of that level. Protocol numbers can be found by using the getprotobyname(3) function. o $optname - The available socket options are the same as those for the socket_get_option(3) function. o $optval - The option value. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 socket_set_option(3) example <?php $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); if (!is_resource($socket)) { echo 'Unable to create socket: '. socket_strerror(socket_last_error()) . PHP_EOL; } if (!socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1)) { echo 'Unable to set option on socket: '. socket_strerror(socket_last_error()) . PHP_EOL; } if (!socket_bind($socket, '127.0.0.1', 1223)) { echo 'Unable to bind socket: '. socket_strerror(socket_last_error()) . PHP_EOL; } $rval = socket_get_option($socket, SOL_SOCKET, SO_REUSEADDR); if ($rval === false) { echo 'Unable to get socket option: '. socket_strerror(socket_last_error()) . PHP_EOL; } else if ($rval !== 0) { echo 'SO_REUSEADDR is set on socket !' . PHP_EOL; } ?> PHP Documentation Group SOCKET_SET_OPTION(3)
All times are GMT -4. The time now is 09:19 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy