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 Initial Version and Version 1 of aWiMAX/cHardware/cUdev/gTelt


Ignore:
Timestamp:
Jan 13, 2015, 7:47:27 PM (9 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • aWiMAX/cHardware/cUdev/gTelt

    v1 v1  
     1=== Teltonika Modem ===
     2
     3[[TOC(WiMAX/cHardware*)]]
     4
     5==== Install Driver / Eject "CD-ROM" ====
     6
     7When first inserted into a new computer, the Teltonika device is mounted as a CDROM. It will immediatly begin installing a driver on host machine. On Ubuntu this process is non-obvious; allow the computer to sit for 5 minutes after inserting the device to give the driver time to install.
     8
     9After the time to install has passed, determine the device that the "CDROM" is associated with by running:
     10
     11{{{
     12$ dmesg
     13}}}
     14
     15Somewhere near the bottom of the messages should be a message that contains "Attached scsi CD-ROM [device]". This
     16interface must be ejected so that the device can act as a wireless transmitter rather than a CD-ROM. In most instances the CD-ROM will be associated with either sr0 or sr1. Eject the device using the command:
     17
     18{{{
     19$ eject [device]
     20}}}
     21
     22After a few moments a notification about a new ethernet interface becoming available should appear. This is the interface that the computer will use to communicate with the wireless dongle.
     23
     24In some cases after this initial setup was completed the computer would always recognize the device as an ethernet interface, and sometimes the CD-ROM device would need to be ejected each time. Reasons for this difference is unknown at the time of writing.
     25
     26==== Connect to the WebUI ====
     27
     28A web interface is provided to configure and interact with the dongle graphically. This webpage requires the most
     29recent version of Adobe Flash. To update/download Firefox and the Flash plugin run:
     30
     31{{{
     32# apt-get install firefox flashplugin-installer
     33}}}
     34
     35NOTE: Adobe has announced that it will no longer support Flash for Linux, and so in the near future Firefox may have depreciated Flash support. In this even Google has commited to maintaining Flash for Linux in it's Chrome browser, and it can be used as a viable alternative to Firefox.
     36
     37
     38If the the Teltonika dongle is recognized as a wireless interface open up the WebUI in Firefox or Chrome by navigating to 192.168.0.1 . If this IP address does not direct the browser to the WebUI then ask the previous user of the device for the new address, it is a configurable parameter and may be changed.
     39
     40Login as an administrator by CTRL-SHIFT-Clicking the Teltonika banner at the top of the page. Login credentials are also configurable, but are most likely set to:[[BR]]
     41username: admin[[BR]]
     42password: genipass[[BR]]
     43
     44Other passwords may be: admin OR EifAFKt8
     45
     46==== Configure Device ====
     47
     48The device can be configured to look for networks on a number of channels under the WiMAX->Channels tab. The GENI network has the profile:
     49
     50Frequency (kHz): 2590000[[BR]]
     51Bandwidth: 10000[[BR]]
     52FFT: 1024
     53
     54
     55Other configuration parameters can be configured by altering the config.sh file, found under the Files tab of the WebUI.
     56
     57'''WARNING:''' it is entirely possible to brick the dongle if parameters are altered in this file in a way that should not be.
     58
     59It is fairly safe to alter the fields: ipaddr (IP address where the WebUI can be reached), netmask (Subnet mask that the device will operate on), dhcpdsip (DHCP server IP address), dhcpdeip (unknown meaning at time of writing, may be expected IP address from DHCP server).
     60
     61==== Statically Set Device IP Address ====
     62
     63Telnet to the device:
     64
     65{{{
     66$ telnet [WebUI address] 700
     67}}}
     68
     69The login credentials for the telnet session are:[[BR]]
     70username: admin [[BR]]
     71password: admin01
     72
     73Within the telnet session run the following command to statically set the devices IP address:
     74
     75{{{
     76# ifconfig icc0 [desired address] netmask [desired netmask]
     77}}}
     78
     79This static address is not preserved when the Teltonika device is removed from the host machine, and it needs to be configured each time that the device is connected to the host.
     80
     81After statically setting the IP address, you need to also set up the iptables rules to send traffic to and from the host device. An easy way to do this is to use the same script that the DHCP client uses for this purpose. Run the following commands within a telnet session on the Teltonika device:
     82
     83{{{
     84# export interface=icc0
     85# export subnet=[desired subnet, e.g. 16,24]
     86# export ip=[desired address]
     87# /etc/udhcpc.script bound
     88}}}
     89
     90If you are planning to use the WiMAX interface for the default route, not just for traffic on its own subnet, you should also add
     91{{{
     92# export router=[router IP]
     93}}}
     94before /etc/udhcpc.script bound.
     95
     96==== More Information ====
     97
     98[http://wimax.orbit-lab.org/wiki/Internal/Teltonika Here.]