Yota router or wimax2wifi in 15 minutes
Thanks to two people, Oleg, who made an alternative firmware with advanced features for the asus wl-500gp router http: //oleg.wl500g .info / , and Xander, who performed reverse engineering and created a yota-modem driver for linux http://code.google.com/p/madwimax/ , have the opportunity to create a yota-router http://wl500g.info/showthread.php? t = 17005
UPD: These manipulations are no longer relevant. The latest firmware from Oleg supports Yota by default, the setting is in the web interface. Link -http://code.google.com/p/wl500g/ . by Paskal .
The modem activation procedure is a bit confusing and requires some preparatory work, which only wl-500th experts are familiar with. The purpose of this article is to simplify the activation process to three simple steps:
- preparatory,
- firmware change
- running a modem activation script.
Preparatory
We will need:
- Cable with Internet (needed to download packages by router)
- An unnecessary flash drive that will now live in a router (there will be firewood on it)
- Yota modem
- Firmware from Oleg with oleg.wl500g.info/1.9.2.7-9/WL500gp-1.9.2.7-9.zip
- ASUS Firmware Restoration Application from the disk from the router kit
- We connect the USB flash drive to the lower slot,
- Modem to the top
- Cable with Internet in WAN
Firmware replacement
- Hold and hold the reset button on the back of the modem
- Disconnect for a few seconds
- We release the reset button after the power indicator flashes
- Launch ASUS Firmware Restoration Application
- Select the unpacked firmware of Oleg
- Click Upload.
Yota modem activation
- Here the router will need the Internet. If the Internet requires manual settings, we enter them through the web interface.
- After boot start-> execute-> telnet 192.168.1.1
- Username admin password admin
- Copy the code below to the clipboard
- Right-click in the window that appears
- We are waiting for about 10-15 minutes, depending on the speed of the flash drive and the Internet. At the end, the router will restart. 10 seconds after loading, the blue lamp will go out and the connection indicator on the modem will flash.
umount /opt
umount /tmp/mnt/disc0_1
echo -e -n d\n1\nn\np\n1\n512\nw | fdisk /dev/scsi/host0/bus0/target0/lun0/part1 < /tmp/fdisk.cfg
mke2fs -j /dev/scsi/host0/bus0/target0/lun0/part1
mount -o sync,noatime,rw /dev/scsi/host0/bus0/target0/lun0/part1 /opt
cd /tmp
wget http://lvk.cs.msu.su/~lasaine/madwimax/wl500g/libusb-1.0-mipsel.tgz
wget http://lvk.cs.msu.su/~lasaine/madwimax/wl500g/madwimax-latest-mipsel.tgz
wget http://lvk.cs.msu.su/~lasaine/madwimax/wl500g/udhcpc-script.tgz
cd /
tar -xzf /tmp/libusb-1.0-mipsel.tgz
tar -xzf /tmp/madwimax-latest-mipsel.tgz
tar -xzf /tmp/udhcpc-script.tgz
rm /tmp/libusb-1.0-mipsel.tgz /tmp/madwimax-latest-mipsel.tgz /tmp/udhcpc-script.tgz
mkdir -p /usr/local/sbin/
echo "#!/bin/sh" > /usr/local/sbin/post-mount
echo "mount -o sync,noatime,rw /dev/scsi/host0/bus0/target0/lun0/part1 /opt" >> /usr/local/sbin/post-mount
echo "mount -o bind /tmp/mnt/disc0_1 /opt" >> /usr/local/sbin/post-mount
echo "insmod /lib/modules/tun.o" >> /usr/local/sbin/post-mount
echo "(while true; do /opt/sbin/madwimax -qof; sleep 10; done) &" >> /usr/local/sbin/post-mount
chmod +x /usr/local/sbin/post-mount
ipkg.sh update
ipkg.sh install ipkg-opt
flashfs save
flashfs commit
flashfs enable
rebootDone! The router is connected to the network through Yota!