Advertisement
pjj90292

Temporary solution to listen bind failed error.

Sep 11th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. Temporary or permanent solution to "listen socket bind failure"?
  2.  
  3. After getting stuck at the above error and without external input, I read more manuals than one would ever want to do. Linux man are not the easiest and most entertaining pieces to read and understand.
  4.  
  5. However, before getting into modifying certain files mentioned in the manuals, I tried another approach because I had seen an inet address in one of my lsof -i results that looked very similar to the inet address shown in the Sprint4GDeveloperPackxxx.
  6.  
  7. In my uncuccessful attempts to connect to wimax I had used the inet address 192.168.1.100 and related sub-addresses.
  8. Today I replaced it with:
  9. 169.254.0.0.
  10. (That is similar to the inet address shown in the above Sprint instructions and a connection address revealed by lsof -i earlier today while the 3G part of U600 was running)
  11.  
  12. It gives eth1:
  13.  
  14. eth1 Link encap:Ethernet HWaddr f4:63:49:xx:xx:
  15. inet addr:169.254.0.0 Bcast:169.254.255.255 Mask:255.255.0.0 <-----------------
  16. inet6 addr: fe80::f663:49ff:fe07:279d/64 Scope:Link
  17. UP BROADCAST MULTICAST MTU:1400 Metric:1
  18. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  19. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  20. collisions:0 txqueuelen:1000
  21. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
  22.  
  23. Thereafter:
  24.  
  25. wimaxd server started.
  26. Then: wimaxc -i, which results in > search
  27.  
  28. Search returns:
  29. Network search returned 0 base stations. <-----------------------------------
  30.  
  31. So far, so good.
  32.  
  33. CLI sudo lsof -i gives among many others:
  34. wimaxd 27428 root 5u IPv4 141276 0t0 TCP localhost:5200 (LISTEN) <-------------
  35.  
  36. This time there is even the correct port 5200.
  37.  
  38. We will see what happens when I connect the external antenna sometimes this weekend.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement