Ubuntu Networking :: Receiving 4.5 KiB/s To 7.0 KiB/s?

Feb 1, 2011

I have been receiving 4.5 KiB/s to 7.0 KiB/s on average. This is with nothing connected actively using Wi-Fi (browser, download, etc.) Why is this? It is happening on Lucid x86. I have a 64bit machine, but unfortunately neither the 32bit or 64bit wireless works "out of the box" for me. My wireless card is Ralink RT3090PCIe. I have not found a package to support my card in Ubuntu 64bit (I prefer 64bit over 32bit.). For now there is this as a package for Ubuntu 32bit https://launchpad.net/~markus-tisoft/+archive/rt3090

Another thing, as of late (about a week) my wireless connection strength has diminished substantially was 95-97% now 73-85% This is unusual. Hopefully not any shady neighbors.

I am strongly considering deleting the Ubuntu partition, until a 64bit works "out of the box" for the wireless or at the very least only use this Ubuntu 32bit Lucid version with all network permantly disconnected. To be fair, I have tried quite a few other 64bit Linux distributions (Live CDs) and these others did not work wirelessly "out of the box" either.

I am by no means a Windows "fanboi".....but Windows 64bit does work for me "out of the box", as it should. So, I may have to go there (back to Win7), until I find a release of Ubuntu 64bit that has a wireless that works for me, without any errors/problems.

View 4 Replies


ADVERTISEMENT

Ubuntu Networking :: DNS - Ping Command For Receiving Reply

Apr 8, 2010

If I type
Code:
$ ping [URL]
or even

Code:
$ ping google.com
should I receive a reply?

View 9 Replies View Related

Networking :: Scp Sends Ok But Stalls On Receiving

Aug 17, 2010

I have set up a server using Suse, which I have done several times. This one is running 11.2 'Emerald'. It has 2 network cards. One is connected to a bt router with a static ip, and the other is for the internal network. The server is used as the gateway for the internet via masquerading. I have 2 issues, which I suspect are related. I can ssh to and from the server fine, but if I try to scp a file, it is fine sending to a remote machine, but stalls if I try the other way.

It also stalls if I try and send from the remote machine to this one. I have tried debug mode, but no 'error's occur, it just stalls.The internet connection is also very slow and sometimes stalls, so there may be a link.I am not new to linux, but this has me baffled. This server replaced a Suse 10.2 server with similar config, and that worked fine.The firewall allows ssh, so I don't think its that.

View 12 Replies View Related

Networking :: Client Receiving UDP From Multiple Sources ?

May 14, 2009

I have to implement a client/server solution that pretty much does this:

1) Client broadcasts UDP packet;
2) client receives answer packet from multiple servers - it includes the TCP port to use next and a list of files;
3) user picks file from list;
4) client downloads from server via TCP.

I got the client to broadcast and the servers reply. However, i'm not yet getting the client to be able to receive multiple packets.

I'm very inclined and have tried to implement select, but most examples i find are for stream sockets. Once the fsSet shows a read event would i create a new socket or just use the main socket for recvfrom()ing? I assume i need at least two sockets. However i'm not sure if this will allow the client to actually receive simultaneously... so i'm kinda not wanting to guess that this implies fork and threads... Also, i assume the socket must be nonblocking (done), although i've read somewhere select would take care of this?

View 3 Replies View Related

Networking :: Nagios Not Receiving SNMP Data?

May 18, 2010

I have recently set up nagios on a ubuntu server (9.10), and set it up to monitor all the servers, switches etc, following the quickstart guide provided on the nagios website.My problem is this:I have setup the nagios-plugins, and tried to set it up to monitor the network switches via SNMP but receive the following within the nagios web interface:SNMP problem - No data received from host I tried it from the command line, and got the exact same error.Is there some further configuration I need to do to be able to get this data?I've used up all my google-fu, and read over everyone else's problems on every forum I could find, but to no avail.

View 6 Replies View Related

Networking :: Receiving Multicast On Multiple Interfaces?

Jul 9, 2010

I am trying to run some benchmark tests for multicast. What I want to do is have one system send multicast packets and another receive it on all it's interfaces (eth0-eth3). Whenever I run receiver on more than one interface I get echo effect (if I receive on x interfaces then I get same packet x number of times). Is this how it is supposed to behave? It does not make any difference whether I use loop-back or not. I have set SO_REUSEADDR to yes. I run separate instance of receiver on each interface. I am doing this on RHEL5 systems.

# uname -r
2.6.18-164.20.1.el5

View 3 Replies View Related

Networking :: Receiving UDP Packets - Default Gateway

Apr 11, 2010

I have a computer with two interfaces: a fixed connection (eth1) and a modem (ppp0). My goal is to receive UDP packets from both connections concurrently (using the recv() function). The problem is, that the received packets reach the application only when the default gateway is set to that interface's address. For example, if I set the default gw to be in the eth1 subnet, only packets from eth1 reach the application. Other packets are received in the interface (checked using tcpdump), but they seem to be blocked somewhere. The policy defined in iptables is "ACCEPT" for all incoming packets, with no rules at all. I would like to know how to overcome this problem, and anyway how is the default gateway related to incoming UDP?

View 3 Replies View Related

Networking :: Sending / Receiving Between Two Systems Using IPv6 Addresses

Mar 8, 2010

We have connected two systems with ethernet cables and have configured the two systems with ipv6 addresses. The IP of one system is 2001:0db8:0:f101::1 (let's say X::1) (This system runs OS Fedora 10) and the other is 2001:0db8:0:f101::2. (Let's say X::2) (This system runs OpenSuSE 10.3) We are able to ping from both systems to the other. We are able to ssh into the one with IP X::2 from the one with IP X::1, but not vice versa.

We have disabled iptables on both systems by using the following commands:
/etc/init.d/iptables save
/etc/init.d/iptables stop
on the fedora 10 system and
# iptables -X
# iptables -t nat -F
# iptables -t nat -X
# iptables -t mangle -F
# iptables -t mangle -X
# iptables -P INPUT ACCEPT
# iptables -P FORWARD ACCEPT
# iptables -P OUTPUT ACCEPT
on the openSuse system.

The error we get in trying to ssh from the openSuse system to the fedora system is:
ssh: connect to host 2001:0db8:0:f101::1 port 22: Connection refused

We're trying to write server and client code to send data from one system to the other using SOCK_DGRAM. The code works fine when we run both the client and server on the same system. However, we are not able to send data from one system to another when we use the IPv6 addresses to run the client and server programs.

The error we get is:
sendto(): Operation not permitted

The codes we are using for the server and client programs can be found here in beej's guide here : [URL]. We've only substituted the appropriate addresses in the right places... We've disabled the iptables...

View 1 Replies View Related

Networking :: Sending / Receiving Data Simultaneously Using BSD Sockets

Jun 25, 2010

I would like to send a data using one thread and receive a data using other thread by using a same socket connection using USD sockets. The calls i am using for sending and receiving are send(), recv(). let me know is it possible to send and receive the data parallel (Full duplex communication)?

View 2 Replies View Related

Ubuntu Networking :: Make On Broadcom WIFI BCM4321 Drivers - Receiving Some Errors?

Nov 7, 2010

I still try update my broadcom drivers, because when I try use airodump-ng i receive error.

This error:

Interface Chipset Driver

eth1 Unknown wl (monitor mode enabled)[code]....

I dont know why receive this error WARNING: modpost: missing MODULE_LICENSE() in /home/mobile/Desktop/wdriver/wl.o
see include/linux/module.h for more information

View 4 Replies View Related

General :: Networking - Interface Stops Receiving Packets As Seen By Tcpdump

Mar 30, 2011

I have a linux box with two interfaces: eth0 is a builtin and eth1 is a USB-LAN.

There is an IP configured on eth1.

eth0 is up but no IP is configured. This interface is used for sniffing with tcpdump.

The problem is that eth0 frequently stops receiving packets -- my tcpdump captures are empty, and if I look at the interface stats with ifconfig, I can see that no packets are received.

If I bounce the interface (ifconfig eth0 down; ifconfig eth0 up), it starts receiving packets again.

View 1 Replies View Related

Networking :: Socket Programming: Sending And Receiving Msgs Back And Forth

May 19, 2010

I have a server which is used by number of client Apps. Now when a client initiates a sendto request to a server it has to respond(after recvfrom) by sending a message using sendto back to client and this should be done back and forth.

What I dont understand is, does the client have to open a new port to receive packets from client? If yes, then how will server know to what port of the client(assuming server ports are well-known to clients)?

I had given up on sending messages back and forth using UDP and switched to TCP. I could send a read and write message back and forth. But the trouble comes when I have more than one client wanting to talk to server using SOCK_STREAM. The first one gets through but the second client seems to get blocked forever(but I got no error upon socket creation or upon connect with the server on the same port as the previous client)..

View 4 Replies View Related

Networking :: Segmentation Fault In Receiving Http Request From Client Code?

Feb 17, 2011

There is a segmentation fault error while receiving http request side program. Following is the code:

Code:
#include<iostream>
#include <sys/types.h>

[code]...

View 1 Replies View Related

Networking :: Slow/Lose Network History Receiving - Network Connection

Oct 12, 2009

I am losing network bandwidth and I am quite frankly I am not sure why, I don't have allot memory 495.6Mib

But I clean my PC every few days "BleachBit"

I have read some where on the magazine Network receiving suppose to be higher. so how can I fix this issue please i am having allot problems, u use cable from Comcast

I am not quite sure what Information you might need from me to give.

I use Ubuntu 8.04 LTS

View 1 Replies View Related

Ubuntu :: Receiving Files From A Phone?

Jan 11, 2010

In Preferences > Bluetooth, I can pair to a phone but when they try to send me files it says, "send failed".

View 4 Replies View Related

Ubuntu Servers :: New Email Server Not Receiving / Get That?

Jan 29, 2010

I am setting up a new email server by following the Flurdy guide. I can send but I can't receive. I can telnet in with both the IP address & telnet mail.domain.com 25 I'm not using or loading shorewall because I will be relying on the firewall that is in the router. I have been following the test section of the flurdy tutorial. I am tailing the mail.log file and only see the status as being different from the example

"status=bounced (mail for domain.com loops back to myself)"

It seems like it is getting through to the server but then getting rejected.

View 2 Replies View Related

Ubuntu Servers :: Not Receiving Mail Exim

Feb 4, 2010

I've setup Exim4 as an MTA on my VM which has a static IP. I've pointed the MX records both idential to this static IP. I can send out via command line on the VM using Exim commands and receive the mail in my home account no problem, it also displays the correct from address ie rich@mydomain.co.uk

So I'm not sure what's going on with receiving the mail. If I send a mail from my home email to rich@mydomain.co.uk (not real address), I don't get a bounce or anything, it just goes out never to be seen again.

View 3 Replies View Related

General :: Ubuntu Mailser Not Receiving Emails

Aug 2, 2010

I recently setup a mailserver on ubuntu server. I am able to send emails correctly. However, no emails show up when sent to me on this server. I can send emails to myself on the server but not outside email like yahoo.com or gmail or any other emails can reach me. My MX and A record appear to have been set up correctly. My router seems to receive hits when I receive emails. When I check the logs of the router it tells me that there was a remote attempt to send traffic to the router forwarded to the server but I don't see this traffic in any mailbox. When I do pingability.com for my site, I get the following error message:Error There was a problem while talking with the mail server. Got 'Socket Timeout Exception: connect timed out' So somehow, the email traffic seems to get to my router and my router appears to forward it to my server but it does timeout.

View 14 Replies View Related

Ubuntu :: Receiving This Error After Update Or When Installing New Software?

Jun 26, 2010

im receiving this error after update or when im installing new software i upload the screenshot

View 9 Replies View Related

Ubuntu :: Receiving Mail In Evolution (stopped Happening)?

Mar 1, 2011

Running Ubuntu 10.4 with happiness and Evolution both for 4 months and always have been able to 'receive' mail by pushing button listed as such; but NOW it is all greyed out. I cannot find or discover how to make it come back 'alive' , so to speak. I have not changed anything that I know of to cause this.

View 3 Replies View Related

General :: NO Audio - Not Receiving Any Video Out Put

Aug 10, 2010

I have installed Linux mint 7 "Gloria". Every thing is working fine except the Audio. I am not receiving any video out put. I am using Dell Studio 1558.

View 2 Replies View Related

Server :: Postfix Don't Sending / Receiving Anything?

Nov 8, 2010

Yesterday i run a postfix everything works fine and today it hangs up. if i dial "telnet localhost 25" i get (before day i get 220 answer and ordinary hello):

Code:
Trying 62.197.207.43...
Connected to trons.sk.
Escape character is '^]'.
and nothing go far.

[Code]....

View 2 Replies View Related

CentOS 5 :: 5.2 Servers Are Not Receiving Updates

Mar 26, 2009

I think my CentOS 5.2 servers are not receiving updates. The last update in my logs occurred on Feb 5th 2009;

Feb 05 09:55:45 Updated: nss - 3.12.2.0-4.el5.centos.i386
Feb 05 09:55:52 Updated: xulrunner - 1.9.0.6-1.el5.i386
Feb 05 09:55:53 Updated: nss-tools - 3.12.2.0-4.el5.centos.i386
Feb 05 09:56:00 Updated: firefox - 3.0.6-1.el5.centos.i386

View 6 Replies View Related

Ubuntu / Apple :: Fresh Installation - Receiving Sync Error?

Feb 17, 2010

I'm trying to run Mac OSX Leopard + Ubuntu on my Macbook White 4,1. I've read multiple user guides, but for some reason it screwed up when I hit the partition button on rEFit. I received the 'gpsync' (sp?) error. I couldn't delete any of my partitions or make them go back to normal... As we speak I'm wiping my hard drive. I would really LOVE to start over FRESH. With Mac OSX, then to install Ubuntu. How can I go about installing Ubuntu on my Macbook without getting the sync error, and screwing up my partitions. Yes I read the user guide, and yes.. I did it step by step and still received the errors. I would love to fool around on Ubuntu, but the errors were stopping me.

View 9 Replies View Related

Ubuntu Servers :: Postifx Mail Receiving Size Limit?

Apr 10, 2010

using kubuntu 9.04 on AMD 64,working with ISPconfig panel.I have postfix configured and have no problem getting mails with small attachments, but when they pass certain size I don't get them.Where can I configure this?

View 3 Replies View Related

Ubuntu Installation :: Software For Sending / Receiving SMS From Huawei Modem

Feb 12, 2011

I'm using Huawei E1550 3G modem. Any tool so that I can send and receive sms, even USSD also...

View 1 Replies View Related

Ubuntu Servers :: Dovecot - Outlook - POP3 - Extremely Slow Receiving?

Jul 11, 2011

recently I've replaced an old windows mailserver with a new one running 10.04 LTS (postfix - dovecot) but I got a strange problem with MS Outlook 2003 and 2007 on Win XP. These MUAs receive new messages extremely slow. Some of messages are received repeatedly. All I found in /var/log/mail.log is login and then (after 1 minute) disconnection for inactivity. No errors.:

Jul 11 10:36:51 dovecot: pop3-login: Login: user=(user@domain.org), method=NTLM, rip=xxx.xxx.xxx.xxx, lip=xxx.xxx.xxx.xxx Jul 11 10:37:07 dovecot: POP3(user@domain.org): Disconnected for inactivity top=0/0, retr=1/5434, del=0/12, size=954793 nothing more. And outlooks wait and wait reporting "receiving". What they are waiting for? Is there something dovecot should send them?

At the same time Mozilla Thunderbird and Opera Mail on the same network with the same setup don't have any problems. I just don't get it. Does anyone know what to do to get it work please?

[Code]...

View 4 Replies View Related

Debian :: Kmail Not Receiving Mails From Gmail Through Pop?

Mar 26, 2010

I have recently configured the kmail to receive mails from gmail through the pop. I have followed the gmail's tutorial,[URl]I was able to send messages, but not to receive them.To say the true, I received just one mail and never more.

View 2 Replies View Related

Fedora :: KMail And Gmail - Using Port 993 For Receiving

Jul 20, 2010

Having issue here with Gmail and Kmail. Sending is cool, receiving is stuck. Is anybody using 993 port for receive? That's what I am trying and it's not working.

View 2 Replies View Related

General :: POSTFIX Receiving Outside Email Restriction

Jun 1, 2011

recently i was raised my question about external and internal emailing using one domain name.Now i have another question about restriction.I can able to set email account and permit only local and external

now my question this kind of setup external and internal one thing i've noticed is that using prinzz1@domain.com(local only) was able to receive email from outside.is it possible to block all outside email if the prinzz1@domain.com is local only?

View 11 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved