[Q] Interesting I/Wimax errors in logcat - but Wimax is off...... - EVO 4G Q&A, Help & Troubleshooting

ROM: Fresh 3.1.0.1
KERNEL: netarchy 4.0.1
I have my 4G turned off, and I just happened to be browsing my logcat (using aLogcat) and saw these interesting entries:
I/Wimax ( 332): <DC> Try to establish a connection to DC server.
E/Wimax ( 332): <DC CONNECT> IO error: msg='/127.0.0.1:7771 - Connection refused'
****That occurs multiple times****
Anyone else seen this? Why is it happening?

I have seen that a lot on my phone. I thought it was related to the Damage Control ROM I was running, but I never really researched it too much.

That is normal.
Sent from my PC36100 using XDA App

Yeah, it clutters up logcat, but it doesn't cause any battery drain or anything. If you're trying to debug something and those messages are getting in the way just power the phone off with 4g turned off. When it comes back up it won't scroll those messages.
It's sloppy on HTC's part...but it doesn't seem to be a big deal.

Babble0n said:
I have seen that a lot on my phone. I thought it was related to the Damage Control ROM I was running, but I never really researched it too much.
Click to expand...
Click to collapse
Yeah - I thought so too - but there are a number of apk's in the \system\app directory that have DC in front of them but I am using Fresh's ROM - so I am not sure why they're there - I don't think he used DamageControl as his base....
sdc177 said:
That is normal.
Click to expand...
Click to collapse
Ok..... anyone know why? If it's continuing to keep trying to connect to a server using Wimax - why? and why is it trying to go to 127.0.0.1:7771?

ZombieReagan said:
Yeah, it clutters up logcat, but it doesn't cause any battery drain or anything. If you're trying to debug something and those messages are getting in the way just power the phone off with 4g turned off. When it comes back up it won't scroll those messages.
It's sloppy on HTC's part...but it doesn't seem to be a big deal.
Click to expand...
Click to collapse
My 4G starts up automatically when I boot....

Perhaps you should go to the Q&A board.
Sent from my PC36100 using XDA App

sdc177 said:
That is normal.
Click to expand...
Click to collapse
sdc177 said:
Perhaps you should go to the Q&A board.
Click to expand...
Click to collapse
Perhaps I will and perhaps I will get better answers than 3 and 8 word answers. Assumed this would be a development question/issue....

Yeah you're right, the Q&A board is just for asking what peoples favorite colors are, etc.
Sent from my PC36100 using XDA App

sdc177 said:
Yeah you're right, the Q&A board is just for asking what peoples favorite colors are, etc.
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
If you're asking - blue.

The 127.0.0.1 IP address is a local loopback, a lot of linux services, modules run in a local loopback. I wouldn't think this is much but don't know why something that is turned off could be trying to connect to something.
Something else on the phone may be dependent on starting that package/module for some other reason causing it to try to connect.

weehooherod said:
Lol you must have SwitchPro installed. Is auto 4G enable at boot a bug or feature?
Click to expand...
Click to collapse
ya, its a bug. the same thing happens with the 4g toggle app a member here wrote and released. He hasnt been able to fix his yet either.
http://forum.xda-developers.com/showthread.php?t=695056&highlight=toggle

spankmaster said:
ya, its a bug. the same thing happens with the 4g toggle app a member here wrote and released. He hasnt been able to fix his yet either.
http://forum.xda-developers.com/showthread.php?t=695056&highlight=toggle
Click to expand...
Click to collapse
I am using SwitchPro.... I will remove it and see what happens....

Same thing happens here. To duplicate, all you need to do is enable and disable 4th. And that starts happening.
You can check in by netstat that once you enable 4g, a couple of ports get bound on the localloop interface (127.0.0.1) on that port range.
What I haven't looked st yet, is switch process is staying behind after having the interface disabled.
I'll take a look tomorrow.
--T
Sent from my PC36100 using XDA App

tmodelli said:
Same thing happens here. To duplicate, all you need to do is enable and disable 4th. And that starts happening.
You can check in by netstat that once you enable 4g, a couple of ports get bound on the localloop interface (127.0.0.1) on that port range.
What I haven't looked st yet, is switch process is staying behind after having the interface disabled.
I'll take a look tomorrow.
--T
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Were you ever able to find anything on this? I'm not coming up with anything.

i wish I had.
My boss took over my life for the past couple of weeks.. bad, bad boss (at least he paus for the phone and sprint services!!!)
I'll try to find out soon.
--T

so, a quick look at it. the server that binds to port 7771 is:
service sequansd /system/bin/sequansd /etc/wimax/sequansd/sequansd_app.xml
user root
group root inet
socket sequansd_0 dgram 660 root root
disabled
oneshot
I'll look to see who is trying to connect to that service/port...

Looks like someone opened a ticket at Google support forums: http://code.google.com/p/android/issues/detail?id=11008
Doubt anyone will fix this unless HTC sees this. Please spread the word to anyone you may know there.

tmodelli said:
so, a quick look at it. the server that binds to port 7771 is:
service sequansd /system/bin/sequansd /etc/wimax/sequansd/sequansd_app.xml
user root
group root inet
socket sequansd_0 dgram 660 root root
disabled
oneshot
I'll look to see who is trying to connect to that service/port...
Click to expand...
Click to collapse
well this tid bit, i assume from init.rc, has helped get me started.
the most interesting sections i saw in /system/etc/wimax/sequansd/sequansd_app.xml -
Code:
<server>
<ip>127.0.0.1</ip>
<port>7771</port>
<maxClients>10</maxClients>
</server>
<debug>
<logfile>/data/wimax/log/sequansd.log</logfile>
<crashLog>/data/wimax/log/crash.log</crashLog>
</debug>
/data/wimax has all sorts of other files, including those sequansd.log files.
in my opinion, they're most interesting comments are:
Code:
sequansd.log: 9:10 45.306 >| DCX/SPY info >| Waiting for connect...
sequansd.log: 9:10 46.400 >| DCX/SPY info >| New connection 0x10E10001 from 127.0.0.1
i'm not sure where all of this is going, but i do find it interesting, 10 max clients on localhost port 7771.
when i turn on 4g, netstat changes and shows two lines with 7771:
Code:
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 127.0.0.1:7771 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:7771 127.0.0.1:36932 ESTABLISHED
any ideas? worth changing the max client number in the conf file? changing ip address or port?

I've been having 4G issues ever since I flashed Calkulin's 1.7 Rom. I looked into logcat after reading this thread and found that when the 4G is turned on the error is
E/wimax (5978): getPvtPem: No device private key
E/ (5978): Cannot get private key
These are in red. I also see a lot of logs about tethering, but I have not used the wifi tether yet. I also see logs about duplicates coming from the flurry agent

Related

Wimax connects fine but will not load web pages

First let me say i'm sorry that i didn't find information regarding this issue by searching but I cant seem to find information describing the exact problem i'm having.
I have nand unlocked and while i can connect to wimax, i can not load any pages to completion. The browser progress bar moves but will never finish. I'm about ready to do the start over method. I know it worked at some point, but way to many things have changed since i knew it worked. My MAC appears correct when i do the wimax_mtd in terminal emulator. Does anybody have any insight into my particular problem? Thanks for any help...
I am having this same problem on the most recent Fresh. The page loads very quickly but the progress bar never finishes.
This happens only while connected on wimax. FWIW, I'm pulling up to 13mbps downlink.
It's because of the HOSTS file and/or using AdFree, open said program, and switch from use 127.0.0.1 to use BTC IP
freeza said:
It's because of the HOSTS file and/or using AdFree, open said program, and switch from use 127.0.0.1 to use BTC IP
Click to expand...
Click to collapse
Good call... I am using ad free. What is the BTC ip? I don't see the option or another ip listed.
Thanks,
first when i buy evo in september its dont connect at all, after read a bunch of posts here http://forum.xda-developers.com/showthread.php?t=726877 and http://forum.xda-developers.com/showthread.php?t=726877&highlight=connection finally i got connected , but not loading a pages, sprint service wasting time
5harkology said:
Good call... I am using ad free. What is the BTC ip? I don't see the option or another ip listed.
Thanks,
Click to expand...
Click to collapse
Most recent versions of AdFree have removed BTC IP (it was slamming their servers).
You can try 0.0.0.0 for a custom IP and see how that goes.
can you explain more in detail
vasiaeva said:
can you explain more in detail
Click to expand...
Click to collapse
First, do you use the program "AdFree"?
I tried 0.0.0.0 and still seems to be doing the same thing, but not as frequently. Any other ideas?
I'm having the exact same problem and it's driving me crazy. It will get 80% full and just stop. It stops so long that it kicks the browser back to 3g to complete the page since 4g stalls.
Jjday7 said:
I'm having the exact same problem and it's driving me crazy. It will get 80% full and just stop. It stops so long that it kicks the browser back to 3g to complete the page since 4g stalls.
Click to expand...
Click to collapse
Which ROM are you running? Using ad free?
5harkology said:
Which ROM are you running? Using ad free?
Click to expand...
Click to collapse
I'm using rls5 and adfree host files are built in. I also have the app so I can update host files since they already expired since the rom was built.. I have this problem with any rom.
Jjday7 said:
I'm using rls5 and adfree host files are built in. I also have the app so I can update host files since they already expired since the rom was built.. I have this problem with any rom.
Click to expand...
Click to collapse
Same here - on myn and can't load web pages. Tried the 0.0.0.0 and no luck.
I hit revert rebooted and now it works but if I reapply the ad blocking no more web again
Hey
Has anyone came up with any solutions to this problem? I see no reply post in months. I don't have adfree..so I don't know what the problem could be. PLEASE HELP!..The one problem I have not seen touched on this forum
+1 i am also having this issue

Help with wireless tether app

I just rooted my phone mostly for the WiFi but it's doing something a little strange now. Whenever I turn on the Wireless Tether app it shows multiple access points coming from my phone, 5 to be exact. Is there something I'm missing, a way to clear the unwanted names?
Have a screenshot?
DanWalker said:
I just rooted my phone mostly for the WiFi but it's doing something a little strange now. Whenever I turn on the Wireless Tether app it shows multiple access points coming from my phone, 5 to be exact. Is there something I'm missing, a way to clear the unwanted names?
Click to expand...
Click to collapse
Sent from my PC36100 using XDA App
nuggyunlimited said:
Have a screenshot?
Click to expand...
Click to collapse
Yep, here's what my wireless connections pop up as when I turn on the "Wireless Tether" app.
Note: The Top "Walker" is my home network and the rest are all generated by the phone.
Try reseeting the app and then try activating wpa.Tht way only authorized users can access ur wifi
Sent from my PC36100 using XDA App
Kenpachiechan said:
Try reseeting the app and then try activating wpa.Tht way only authorized users can access ur wifi
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
I've done that but I still have 5 seperate access points being sent out from my phone. I can't seem to change any of the setting for 4 of them.
anyone have any ideas?
same here
You are not alone.
I used os monitor to see 5 occurrences of internet active - sometimes more.
They won't kill and effect memory terribly. Sometimes a reboot is required, however, the internet occurences are still there. The reboot only clears some memory to allow evo to run fast again.
I have no idea how to fix.
By the way, what app did you use to see those occurances. I'd like to check it out.
Thanks.
rrascal said:
You are not alone.
I used os monitor to see 5 occurrences of internet active - sometimes more.
They won't kill and effect memory terribly. Sometimes a reboot is required, however, the internet occurences are still there. The reboot only clears some memory to allow evo to run fast again.
I have no idea how to fix.
By the way, what app did you use to see those occurances. I'd like to check it out.
Thanks.
Click to expand...
Click to collapse
Sorry for the confusion that is actually a screen shot of my desktop to show multiple access points being listed. I wish there was an app that looked like that to show available wifi.
You get non of those (in your screen shot) when your phone is off?
It's a wildcard, but possible your neighbors have evo's too and running the tether software...
gpz1100 said:
You get non of those (in your screen shot) when your phone is off?
It's a wildcard, but possible your neighbors have evo's too and running the tether software...
Click to expand...
Click to collapse
Negative, I can visibly watch them pop up when I turn the tether on and they go away as soon as i turn it off. It also seemed that when I tried to rename one instead of renaming one of them, it would make another access point. Very peculiar.
FWIW...I switched to CM6 and it's all cleared up.
Yea I was gonna say, that's your computer if you change the name and your computer keeps the old ones and adds the new one. My laptop does that too but I can remove them individually.

WiFi..Problematic

It's time I've brought this to light, I can't be the only one?
WiFi, its problematic. Here's the thing -
- WiFi drops when : 40, 50, 60 minutes pass.
- Why? Reasons unknown, I've been told many things with no real answers.
A.) Go into WiFi > Advanced > Sleep Policy : Never.
I always set it to never, that it not the issue at all, I don't wanna hear this.
B.) It's my router, I cannot confirm this. Other devices seem to never drop WiFi so I don't know why mind does.
C.) It can be kernel related? Still cannot confirm this either, its an unknown issue.
- It only occurs on MIUI, Sense 3.5 and some other various roms.
Why? I don't know! It just happens..
- What about Sense 1.0/2.1/3.0, Cm7/9?
Works perfect, I never have WiFi drops. I don't get it..
- So it doesn't make sense? Your absolutely right. I'm damn confused, I don't understand why it works perfect on those opposed to the others.
What can I do? I've relentlessly caught them on logcats and no one answers me. I plan on catching it on screencast shortly and showing a video.
------------------------------------
Please if anyone knows or has these issues I'd like to know.
I want to get rid of this issue.
Other things odd about my phone -
A.) MIUI WiFi never dropped and possibly Sense 3.5.
B.) MIUI and Cm7 seem to act weird on my phone recently, will freeze or get real sluggish.
Thanks..
Edit: I captured it dropping, it happens exactly every 59 minutes.
Skip to 3:07 to see it drop and my phone information.
https://www.youtube.com/watch?v=fUg6XxSNrQU&feature=youtube_gdata_player
Sent from my HTC Droid Incredible using Tapatalk 2
Guess I'm alone huh?..
Forever alone :sly:
Sent from my ADR6300 using Tapatalk 2
Sorry, I wish I knew what was going on. I've seen wifi disconnect before for me but only on screen off so I didn't think much of it but I've never seen it disconnect when awake like that. Just curious if it happens on different wifi networks.
Unfortunately yes, not really sure what the issue is. Its like I'm the only person who has ever encountered this odd issue.
Since you've seen most of my information can I ask if you think this might be a wifi driver error? I honestly don't think it is because on the roms I mentioned I never lose wifi.
God I'm just so frustrated on this. It doesn't make sense, pulling my hair lol.
Sent from my ADR6300 using Tapatalk 2
withbloodskies said:
Unfortunately yes, not really sure what the issue is. Its like I'm the only person who has ever encountered this odd issue.
Since you've seen most of my information can I ask if you think this might be a wifi driver error? I honestly don't think it is because on the roms I mentioned I never lose wifi.
God I'm just so frustrated on this. It doesn't make sense, pulling my hair lol.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
Did you make sure wifi sleep is set to never in the ROM? Also I can try testing it but I might have to find a recovery that supports EMMC backups if any do (gave my 16gig sd card to my friend who needed it more).
I don't think it's a driver or kernel issue or it'd occur across multiple ROMs and more would be affected.
tiny4579 said:
Did you make sure wifi sleep is set to never in the ROM? Also I can try testing it but I might have to find a recovery that supports EMMC backups if any do (gave my 16gig sd card to my friend who needed it more).
I don't think it's a driver or kernel issue or it'd occur across multiple ROMs and more would be affected.
Click to expand...
Click to collapse
You mean in advance right? Always, one of the first things I do. If there is another sleep thing then I definitely wanna know about lol..
Did you not save any roms to emmc? 5.0.2.0 cwm uses internal memory to flash. I keep at least 7 roms in emmc and test versions on SD.
Sent from my ADR6300 using Tapatalk 2
withbloodskies said:
You mean in advance right? Always, one of the first things I do. If there is another sleep thing then I definitely wanna know about lol..
Did you not save any roms to emmc? 5.0.2.0 cwm uses internal memory to flash. I keep at least 7 roms in emmc and test versions on SD.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
No I didn't. I didn't even know CWM supported it. Amon_ra does and it seems to be quicker too maybe. Good suggestion! Lol. I'm testing the ROM in your video but may not be able to re-create it as I don't really have time. Know any apps to test for wifi drops. I'm hoping to be able to check both kernel logs and logcat. If you want to dump the kernel log after a wifi drop do
adb shell dmesg > klog.txt
with adb. It actually dumps the current contents of /proc/kmsg which is the current kernel log and actually ongoing so it's ever updating.
tiny4579 said:
No I didn't. I didn't even know CWM supported it. Amon_ra does and it seems to be quicker too maybe. Good suggestion! Lol. I'm testing the ROM in your video but may not be able to re-create it as I don't really have time. Know any apps to test for wifi drops. I'm hoping to be able to check both kernel logs and logcat. If you want to dump the kernel log after a wifi drop do
adb shell dmesg > klog.txt
with adb. It actually dumps the current contents of /proc/kmsg which is the current kernel log and actually ongoing so it's ever updating.
Click to expand...
Click to collapse
Mm.. can't do anything that requires a computer. I only have the Droid Incredible, my computer died a bit after I rooted my phone.
I'm currently on Nightlie ICS, I can try getting a log at again if you want but anything computer related can't do.
For some reason I feel I'm the only person with this issue, I've searched Google low and high but people had other wifi issues unrelated to mine.
Just had a thought though.. I don't know much about the hardware but you think the way some of these devs made the rom mess with my wifi driver?
I honestly don't expect an answer or find for this issue but at least get it recognized.
Sent from my ADR6300 using Tapatalk 2
withbloodskies said:
Mm.. can't do anything that requires a computer. I only have the Droid Incredible, my computer died a bit after I rooted my phone.
I'm currently on Nightlie ICS, I can try getting a log at again if you want but anything computer related can't do.
For some reason I feel I'm the only person with this issue, I've searched Google low and high but people had other wifi issues unrelated to mine.
Just had a thought though.. I don't know much about the hardware but you think the way some of these devs made the rom mess with my wifi driver?
I honestly don't expect an answer or find for this issue but at least get it recognized.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
Not likely, I don't think anyone did wifi tweaks and it works for most people which is what's weird.
But to get the log I'm requesting you can go a similar route with terminal emulator commands:
dmesg > /sdcard/klog.txt and link it
Precede dmesg with busybox if it doesn't recognize the command on your rom, so
busybox dmesg > /sdcard/klog.txt
Does clutch have this issue (based on warm so I expect so) or Nil's 3.5 ROM maybe?
tiny4579 said:
Not likely, I don't think anyone did wifi tweaks and it works for most people which is what's weird.
But to get the log I'm requesting you can go a similar route with terminal emulator commands:
dmesg > /sdcard/klog.txt and link it
Precede dmesg with busybox if it doesn't recognize the command on your rom, so
busybox dmesg > /sdcard/klog.txt
Does clutch have this issue (based on warm so I expect so) or Nil's 3.5 ROM maybe?
Click to expand...
Click to collapse
Every sense 3.5 and MIUI, I think Pons Cm7.2 did too but I'm unsure.
So in TE - I type -
dmesg/sdcard/log.txt? I've never really got a log like this and I learned about logcat my own. Hate asking nooby questions.
Edit : got it to work on ics, looked at it but should I type that in after the wifi drop or during?
Sent from my ADR6300 using Tapatalk 2
withbloodskies said:
Every sense 3.5 and MIUI, I think Pons Cm7.2 did too but I'm unsure.
So in TE - I type -
dmesg/sdcard/log.txt? I've never really got a log like this and I learned about logcat my own. Hate asking nooby questions.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
This below verbatim:
dmesg > /sdcard/klog.txt
It's the greater than symbol. It redirects output to a file.
withbloodskies said:
For some reason I feel I'm the only person with this issue, I've searched Google low and high but people had other wifi issues unrelated to mine.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
You aren't the only one its likely a large majority of users upgraded phones. I've never run into the issue but I recall people on Nils BGS roms (primary Sense 3.5 rom I used) had this issue. I know I read about the issue in other threads but nobody could resolve it since all the usual methods fail. You may be a minority but this has been an issue for some since last summer. I would say most upgraded by now so you only appear to be alone.
You sure snoop? My wifi deal is odd.. well at least I wasn't alone I suppose till now.
Anyway
- http://db.tt/ZF9c10Wb ← Klog1
- http://db.tt/P8VA9Ngw ← Klog2
Klog1 captured during the wifi drop
Klog2 captured after wifi drop
Both say something about wlan and I saw a lot of disconnect and sleep something.
Edit: Every time I Google my issue it was me I found complaining about the issue lol.
Sent from my ADR6300 using Tapatalk 2
If you search "wifi" in Nils Business GingerSense 3.5 thread you will see there are seven pages of results. Page two results the most recent reports were from Halloween where people report the issue.
At post #1619, one user mentioned using an app called "Wifi Static" resolved their issue. Another mentions that setting their router to static ip connection resolved it.
Edit: Bottom of the page, there's the specific post
http://forum.xda-developers.com/showthread.php?p=18929021&highlight=wifi#post18929021
SlimSnoopOS said:
If you search "wifi" in Nils Business GingerSense 3.5 thread you will see there are seven pages of results. Page two results the most recent reports were from Halloween where people report the issue.
At post #1619, one user mentioned using an app called "Wifi Static" resolved their issue. Another mentions that setting their router to static ip connection resolved it.
Edit: Bottom of the page, there's the specific post
http://forum.xda-developers.com/showthread.php?p=18929021&highlight=wifi#post18929021
Click to expand...
Click to collapse
Okay I do see it, what they sounds like it. So ..does it automatically assign a static IP? Not sure how to work the app, probably will read the about or FAQ.
Let me reflash a 3.5 rom real quick and try this.
As long as it works.. but what's odd is its only MIUI and sense 3.5.
Don't have this issue with OG GB or Cm7 GB, even unofficial ics.
From what I read they are saying it doesn't connect right between routers and phone? But how can it be so many routers? Its gotta be deeper than that.
Sent from my ADR6300 using Tapatalk 2
Idk man, it's been one of the most difficult to identify since it only affected a few people on the Inc. The only thing I could manage to guess is something in those roms doesn't configure correctly with certain routers. No one ever asked "which router do you have?" so that could be why it went unsolved for so long.
I don't know anything about Static ip connections or anything involved with changing wifi settings. This may help detail the different settings:
http://www.androidcentral.com/how-work-around-wifi-disconnection-issues-htc-one-x-and-one-s
Checked the kernel logs and wifi is definitely dropping but no errors. I just wanted to reassure you that I did look at what I asked you to get me. Snoop may be on to something with his suggestion though.
tiny4579 said:
Checked the kernel logs and wifi is definitely dropping but no errors. I just wanted to reassure you that I did look at what I asked you to get me. Snoop may be on to something with his suggestion though.
Click to expand...
Click to collapse
Yeah I think I got a static IP down pat.
Thank you for looking, guess HTC's GB just doesn't like most routers.
As of right now before I tried mod systemui white, it put my phone in a loop. It hasn't seemed to drop wifi.
Thanks snoop for the suggestions, definitely seemed to work.
Sent from my ADR6300 using Tapatalk 2
withbloodskies said:
Yeah I think I got a static IP down pat.
Thank you for looking, guess HTC's GB just doesn't like most routers.
As of right now before I tried mod systemui white, it put my phone in a loop. It hasn't seemed to drop wifi.
Thanks snoop for the suggestions, definitely seemed to work.
Sent from my ADR6300 using Tapatalk 2
Click to expand...
Click to collapse
So no more hourly wifi drops?

I typed sysctl -p and got error then i did sysctl -a and got a big log?

ok my question is why is there both ipv6 and ipv4 on my phone. my phone is supported with ipv4 hence i added tweaks however i see ipv6 all up in this koolaid am i supposed to delete something?
http://pastebin.com/KZVcLaaa
I think cause its dual stack compatable nevermind, i wonder when sprint will hand out IP's for IPV6
No4g4Me said:
ok my question is why is there both ipv6 and ipv4 on my phone. my phone is supported with ipv4 hence i added tweaks however i see ipv6 all up in this koolaid am i supposed to delete something?
http://pastebin.com/KZVcLaaa
Sent from my SPH-D710 using Tapatalk
Click to expand...
Click to collapse
Might want to ask a mod to move this over to [email protected] before the flame war starts..
MoHoGalore said:
Might want to ask a mod to move this over to [email protected] before the flame war starts..
Click to expand...
Click to collapse
oh man i just realized im half awake right now.
No4g4Me said:
oh man i just realized im half awake right now.
Click to expand...
Click to collapse
It's cool it happens. Just PM a mod and they'll move it.
Sent from my SPH-D710 using Tapatalk 2
asked smurf
No4g4Me said:
ok my question is why is there both ipv6 and ipv4 on my phone. my phone is supported with ipv4 hence i added tweaks however i see ipv6 all up in this koolaid am i supposed to delete something?
http://pastebin.com/KZVcLaaa
I think cause its dual stack compatable nevermind, i wonder when sprint will hand out IP's for IPV6
Click to expand...
Click to collapse
It is going to be awhile. All PC's and phones have supported ipv6 for awhile. Almost no ISP is giving them out yet. They are not going to go through the hassle of switching them until they need to. There are still plenty of ipv4 ip addresses to give you, so there is no point in giving you an ipv6 one.
OS's almost always support new standards before the standard is in practice.
rujelus22 said:
It is going to be awhile. All PC's and phones have supported ipv6 for awhile. Almost no ISP is giving them out yet. They are not going to go through the hassle of switching them until they need to. There are still plenty of ipv4 ip addresses to give you, so there is no point in giving you an ipv6 one.
OS's almost always support new standards before the standard is in practice.
Click to expand...
Click to collapse
I have to interject, just to clarify and not make this into a potential confusion point for anyone who isn't knowledgeable in networking.
There are not plenty of IPv4 addresses still (that is why ICANN is requesting returns of IP addresses that are unused by public facing networks) , but NAT has made it less pressing to switch to IPv6, but still necessary in the long term.
And yes, I am being "that guy" but I don't mean any insult.
cool im that guy that says what it should be even though i still might be wrong.
Sent from my SPH-D710 using Tapatalk
I moved this one for you. Questions go in the Q&A section.....q&a stands for Questions and Answers just in case you didnt know what the abbreviation meant
timzentu said:
I have to interject, just to clarify and not make this into a potential confusion point for anyone who isn't knowledgeable in networking.
There are not plenty of IPv4 addresses still (that is why ICANN is requesting returns of IP addresses that are unused by public facing networks) , but NAT has made it less pressing to switch to IPv6, but still necessary in the long term.
And yes, I am being "that guy" but I don't mean any insult.
Click to expand...
Click to collapse
True NAT is what they are using. I was trying to not get technical. The point I was trying to make was there is no reason for them to switch right this second, so they will not.
Sent from my SPH-D710 using Tapatalk 2

Wifi unstable

It appears that my wifi is very unstable. After transfering around 250mb, my connection stops working. Usually the connection requires me to cycle wifi in order to get it working once more.
I initialy thought that the issue could be fixed in the tmobile software update, but that was not the case. The issue persists after the update that took place last night.
Are any of you experiancing this? Any thoughts on how to resolve? I have setup a warranty replacement but id rather just send that back and keep my already setup device.
Sent from my LG-H811 using Tapatalk
Same issues here on AT&T.
TheChefSLC said:
It appears that my wifi is very unstable. After transfering around 250mb, my connection stops working. Usually the connection requires me to cycle wifi in order to get it working once more.
I initialy thought that the issue could be fixed in the tmobile software update, but that was not the case. The issue persists after the update that took place last night.
Are any of you experiancing this? Any thoughts on how to resolve? I have setup a warranty replacement but id rather just send that back and keep my already setup device.
Sent from my LG-H811 using Tapatalk
Click to expand...
Click to collapse
Please search before posting. There's like 10 threads talking about Wi-Fi.
Dennisg34 said:
Please search before posting. There's like 10 threads talking about Wi-Fi.
Click to expand...
Click to collapse
well i guess my search skills are lacking compared to yours. There is 1 post that is in the troubleshooting section that is titled with a [fix] tag. but that is not really a fix. it is simply a workaround by not using the 5ghz band. this makes it so that i cannot use my ac connection.
but since you are so much more in the know and your search skills are far better than mine. can you please point me to the threads about this issue?
TheChefSLC said:
well i guess my search skills are lacking compared to yours. There is 1 post that is in the troubleshooting section that is titled with a [fix] tag. but that is not really a fix. it is simply a workaround by not using the 5ghz band. this makes it so that i cannot use my ac connection.
but since you are so much more in the know and your search skills are far better than mine. can you please point me to the threads about this issue?
Click to expand...
Click to collapse
I don't need to do your searching for you. You maybe saw one Thread on the FIRST page, but there's pages and pages between General and Questions about this.
Sent from my G4 using your mom
Dennisg34 said:
I don't need to do your searching for you. You maybe saw one Thread on the FIRST page, but there's pages and pages between General and Questions about this.
Sent from my G4 using your mom
Click to expand...
Click to collapse
i suggest you stop assuming anything and search yourself. Also stop being a ****, its unnecessary. But i am sure it helps you feel so much more knowledgeable and better to post a "lrn 2 search" reply.
my guess is that you seen wifi blah blah blah and were like "this is the same as wifi calling not working or wifi turning off after the screen turns off" or some other basic issue.
but hey you know, here is a great search http://bfy.tw/J57
TheChefSLC said:
i suggest you stop assuming anything and search yourself. Also stop being a ****, its unnecessary. But i am sure it helps you feel so much more knowledgeable and better to post a "lrn 2 search" reply.
my guess is that you seen wifi blah blah blah and were like "this is the same as wifi calling not working or wifi turning off after the screen turns off" or some other basic issue.
but hey you know, here is a great search http://bfy.tw/J57
Click to expand...
Click to collapse
I don't need to search myself, I'm not creating the thread.
Doesn't make me feel good at all. It's rule number ONE in the forum rules. GUESS what rule 2.1 is? Language.
Sent from my G4 using your mom
I've been having the same issue. It seems to be primarily in the 5ghz band. One suggestion I saw that seems to have helped is doing a factory reset.
Nasty64 said:
I've been having the same issue. It seems to be primarily in the 5ghz band. One suggestion I saw that seems to have helped is doing a factory reset.
Click to expand...
Click to collapse
Another thread mentioned FRs don't fix some issues and I have issues on 2.4 so it seems different for all.
Sent from my G4 using your mom
I don't see how this thread is redundant, there's no need to police the forums.
OP's issue is something I've had - a factory reset, TheClefSLC, seemed to do something productive, though I still get drops when data is being transferred on a moderately large scale. As of now I think we'll have to either wait for a software/firmware update or, once the device is unlocked, experiment with ROM modifications...
Sent from my VS986 using Tapatalk
I'm returning mine tomorrow.. this is unacceptable. Wifi just stops working.
I have 5ghz off on my router, so it is doing it on 2.4 too.
Try changing the channel on the router. I had about 8-10 instances over 24 hours where the phone just stopped transmitting data with the router. I had to toggle Wi-Fi to fix it. I changed the channel on my router and haven't had an issue in 48 hours or so now. Seems to have worked.
Yes... I noticed this since day one and everyone thought I was crazy... I did make a post b4 about this but it was chalked up to i need to reset my router but my nexus 5 works awesome on the same network
Sent from my LG-H811 using XDA Free mobile app
tourbound129 said:
Try changing the channel on the router. I had about 8-10 instances over 24 hours where the phone just stopped transmitting data with the router. I had to toggle Wi-Fi to fix it. I changed the channel on my router and haven't had an issue in 48 hours or so now. Seems to have worked.
Click to expand...
Click to collapse
I think that this may just be the fix to our WiFi problems. I put my 2.4Ghz on channel 6 and my 5Ghz on 40. Seems to have done the trick, and my speeds seem faster on the 5Ghz on channel 40. well see how it goes over the next few days.
uly609 said:
I think that this may just be the fix to our WiFi problems. I put my 2.4Ghz on channel 6 and my 5Ghz on 40. Seems to have done the trick, and my speeds seem faster on the 5Ghz on channel 40. well see how it goes over the next few days.
Click to expand...
Click to collapse
The problem is when you try to access networks you don't own. [emoji29] but hopefully there'll be a solution!
Sent from my VS986 using Tapatalk
androidxen said:
The problem is when you try to access networks you don't own. [emoji29] but hopefully there'll be a solution!
Sent from my VS986 using Tapatalk
Click to expand...
Click to collapse
True that.. Hopefully we get a patch soon or root and a custom ROM that fixes this!!
tourbound129 said:
Try changing the channel on the router. I had about 8-10 instances over 24 hours where the phone just stopped transmitting data with the router. I had to toggle Wi-Fi to fix it. I changed the channel on my router and haven't had an issue in 48 hours or so now. Seems to have worked.
Click to expand...
Click to collapse
YES! Just changed to channel 6 (what someone else said) and it's been much better for me!
Dennisg34 said:
YES! Just changed to channel 6 (what someone else said) and it's been much better for me!
Click to expand...
Click to collapse
Well, it seems to put a band aid on the problem. It works fine for a little while, maybe a few hours. But after that the problems return. At least they did for me
I just tried the 2.4:6/5:40 setting with my Asus RT-AC68U. 2.4 ran a bit faster according to the Speedtest app, but 5 ran at pretty much the same speed (both were set to auto channel select beforehand). I am going to tinker around with it some more and see if I can improve upon it.
I have noticed the same issue on both 2.5 and 5ghz. I stream music thru chromecast and frequently experience lost connections. Very annoying. I hope this is an issue that is addressed soon in an update.

Categories

Resources