Those listed below are our PROUD SatelliteGuys GOLD Sponsors!
Applied Instruments DishStore.NET Home Theater Cruise glorystar.tv satelliteavgs tele-satellite.com

Welcome HOME to SatelliteGuys!


  •  » Looking for help picking a television provider?
  •  » Need Help with your Satellite System?
  •  » Need Advice on your Home Theater Setup?
  •  » Looking for the latest industry news and rumors?

...then you have come to the right place!

DIRECTV, DISH Network, FTA Satellite, Cable TV, HDTV even 3DTV!

We Can Help! We are known as America's Satellite Information Source!
YES! I want to register an account for FREE right now!

YOU ARE AT THE PLACE WHERE INDUSTRY EXPERTS HANG OUT!

p.s.: Registered members see a lot less ads! REGISTER TODAY!

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12
  1. #1
    tonydix's Avatar
    tonydix is offline SatelliteGuys Regular
    Join Date
    Apr 22nd, 2007
    Location
    Bocas del Toro, Panama
    Posts
    180

    AzBox HD Premium Internet traffic

    ADVERTS 1
    My AzBox is connected to the internet by cat5 cable to a linksys WRT110 router. There is clearly traffic between my box and the internet and I would like to know what is going on.
    Is there anyway of monitoring the packets being sent and received by the box either via the box itself or via the router it is connected to ?
    Thanks
    Tony

  2. # ADS
    Register Today & This Ad Goes Away! Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many
     
  3. #2
    comfrey's Avatar
    comfrey is offline SatelliteGuys Regular
    Join Date
    Sep 21st, 2009
    Location
    BC
    Posts
    238
    Search using google for "azbox tcpdump". There is a site that has tcpdump v4.1.1
    Works quite well for me, I have an Elite.

  4. #3
    tonydix's Avatar
    tonydix is offline SatelliteGuys Regular
    Join Date
    Apr 22nd, 2007
    Location
    Bocas del Toro, Panama
    Posts
    180
    Thread Starter
    Thanks for this I found the software and downloaded it to my laptop. Presumably I must now transfer it to the azbox using Fileilla but what directory should I put it in
    Thanks Happy Christmas
    Tony

  5. #4
    comfrey's Avatar
    comfrey is offline SatelliteGuys Regular
    Join Date
    Sep 21st, 2009
    Location
    BC
    Posts
    238
    When I installed it I copied it to an external USB drive. Then I ssh'd into the azbox.
    Copied it to /DISK2

    Changed it to be executable 'chmod 755 tcpdump'
    Then ran it with 'tcpdump -i eth0'
    You may want to filter out your ssh session when viewing the packets.

    '/DISK2/tcpdump -i eth0 | grep -v ssh'

  6. #5

    Help Keep SatelliteGuys For All, Click a Star and Become a Supporter! This Member did! Help Support The Site And Get Rid of the Syndicated Ads, This Member did! If you enjoy the site consider supporting it, this member did! Click a Star and become a Supporting Pub Member today!
    Join Date
    Oct 12th, 2010
    Location
    46°51'20.67"N 114°01'50.57"W Montana
    Posts
    1,059
    Would the AZBox respond to the Windows Master Browser selection processes? If only to identify itself and the fact it doesn't qualify as a Master Browser?
    10'Winegard.Pinnacle.perforated, AJAK 180 H-H, GBox, BullsEyeII, Norsat 8115, 4106a
    on AZBox Ultra 1gDVR
    10'LaserC/KU mesh, PMA24 mover V-Box10, BullsEyeII+asst LNBs
    30" Winegard 2076, SG9120b, Invacom QPH-031 LNB
    SkyWalker 1, Hauppauge Nova HD S2, Hauppauge HVR 1250 ATSC
    Using MyTheatre on 4 displays

    2 NEC LT30 DLP projectors, 52" Samsung, 25.5"ASUS

  7. #6
    tonydix's Avatar
    tonydix is offline SatelliteGuys Regular
    Join Date
    Apr 22nd, 2007
    Location
    Bocas del Toro, Panama
    Posts
    180
    Thread Starter
    Many thanks for this . I did as you suggest but when I try to run 'tcpdump -i eth0 I get an error message saying command not found.
    In the directory listing for DISK2 I see tcpdump* with an asterisk after it and it is displayed in green. I am not sure what that means : my linux knowlege is poor !
    Thanks again
    Tony

  8. #7
    comfrey's Avatar
    comfrey is offline SatelliteGuys Regular
    Join Date
    Sep 21st, 2009
    Location
    BC
    Posts
    238
    You are getting close, the * means that it's executable. You could try to change to the directory first before trying to run it. Make sure that you have the ./ before the program name. This means 'just run from the current directory'


    i.e
    cd /DISK2
    ./tcpdump -i eth0

  9. #8
    tonydix's Avatar
    tonydix is offline SatelliteGuys Regular
    Join Date
    Apr 22nd, 2007
    Location
    Bocas del Toro, Panama
    Posts
    180
    Thread Starter
    Still no luck I am afraid. I still get an error message saying command not found. I guess it might be due to version differences or permissions.
    The Azbox is running 0.9.5306 and while in Putty then help gives GNU Bash 3.00.16(1)-release

    I have a laptop loaded with Ubuntu 11.10 and tcpdump works fine on that, but it wont load on the Azbox.

    Your advice is much appreciated

    Thanks

    Tony

  10. #9
    comfrey's Avatar
    comfrey is offline SatelliteGuys Regular
    Join Date
    Sep 21st, 2009
    Location
    BC
    Posts
    238
    Ok, do this and send the output or just compare what my values are.

    When you are logged into the azbox
    type 'ls -alFi /DISK2/tcpdump'

    my tcpdump file listing looks like the following:
    51 -rwxr-xr-x 1 root root 1191163 Nov 20 18:13 tcpdump*

    Note the file size and permissions for /DISK2/tcpdump should be the same.


    To be 100% sure we have the same file, find the md5sum hash with the following command:

    'md5sum /DISK2/tcpdump'

    This is my output:
    d6ab76c1c563ccc004260b32d0a32bab /DISK2/tcpdump
    Your md5sum hash should be exactly the same for this file.

  11. #10
    tonydix's Avatar
    tonydix is offline SatelliteGuys Regular
    Join Date
    Apr 22nd, 2007
    Location
    Bocas del Toro, Panama
    Posts
    180
    Thread Starter
    Many Many thanks. The permissions were correct the md5sum was correct but then I noticed you were running from root. I was trying to run from the DISK2 directory.
    I then reread your post and you were invoking with /DISK2/tcpdump. I was in DISK2 trying to invoke with tcpdump. I am not sure why one work and the other doesnt but hey ONE works.
    Many Many thanks I owe you
    several beers !!
    Tony

Page 1 of 2 1 2 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SatelliteGuys.US | 46 Miami Avenue | Newington, Connecticut 06111
Links monetized by VigLink