close Warning: Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 66 and Version 67 of Old/WiMAX/30


Ignore:
Timestamp:
May 14, 2014, 2:12:16 PM (10 years ago)
Author:
Nilanjan Paul
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/WiMAX/30

    v66 v67  
    636636}}}
    637637
     638To run a speed test via webservice, download ''speedtest-cli'' script:
     639{{{
     640# apt-get install python-pip
     641# pip install speedtest-cli
     642# pip install speedtest-cli --upgrade
     643}}}
     644
     645Update the routing table to ensure all traffic routed through the eth2 interface.
     646First delete the default gateway:
     647{{{
     648# route del default
     649}}}
     650
     651Now set default gateway via eth2:
     652{{{
     653# route add default gw 10.41.0.1 eth2
     654}}}
     655
     656View the routing table entries:
     657{{{
     658# route
     659Kernel IP routing table
     660Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
     661default         wmgw.outdoor.or 0.0.0.0         UG    0      0        0 eth2
     66210.10.0.0       *               255.255.0.0     U     0      0        0 eth1
     66310.41.0.0       *               255.255.0.0     U     0      0        0 eth2
     664}}}
     665
     666After the routing table has been updated, run the speedtest-cli script. The uplink and downlink speeds will be shown as measure by speedtest:
     667{{{
     668root@node7-11:~# speedtest-cli --source 10.41.41.29
     669Retrieving speedtest.net configuration...
     670Retrieving speedtest.net server list...
     671Testing from Rutgers University (128.6.192.190)...
     672Selecting best server based on ping...
     673Hosted by Atlantic Metro (New York City, NY) [42.62 km]: 19.948 ms
     674Testing download speed........................................
     675Download: 6.90 Mbits/s
     676Testing upload speed..................................................
     677Upload: 0.81 Mbits/s
     678}}}
     679