Siemens SE505

From DD-WRT Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 01:59, 5 March 2007 (edit)
Proflan (Talk | contribs)

← Previous diff
Revision as of 02:25, 5 March 2007 (edit) (undo)
Proflan (Talk | contribs)

Next diff →
Line 1: Line 1:
-This describes how to flash your Siemens SE505 Router using tftp and Suse Linux+This describes how to flash your Siemens SE505 Router using tftp and Suse Linux. For flashing the Siemens Gigaset SE505, you have to use the dd-wrt.v23_mini_generic.bin. Since the Siemens default settings do not fit to the Linksys/dd-wrt ones you have additionally to check your configuration details after flashing.
=Preparation= =Preparation=
Line 9: Line 9:
==Create a virtual Network Interface on your Linux Box== ==Create a virtual Network Interface on your Linux Box==
-Your router can only be flashed from the IP 192.168.2.100. The easiest way is to create a virtual network interface. This can be done by yast oder you simply type as root user:+Your router can only be flashed from the IP 192.168.2.100. The easiest way is to create a virtual network interface.
 +In Linux, most network interfaces (e.g. eth0 or ppp0) are associated to a physical device. However, there are exceptions to this rule. This can be done by yast oder you simply type as root user:
#ifconfig -a eth0:1 192.168.2.100 #ifconfig -a eth0:1 192.168.2.100
Line 36: Line 37:
#tftp -v 192.168.2.1 -m binary -c put dd-wrt.v23_mini_generic.bin #tftp -v 192.168.2.1 -m binary -c put dd-wrt.v23_mini_generic.bin
-After 5 to 10 minutes you should be able to acces your routers new webinterface.+=Configuration=
 +After 5 to 10 minutes you should be able to access your router's new webinterface on http://192.168.1.1.
 +The preset '''username''' is root, '''password''' ist admin.
 + 
 + 
 +=Related Links=
 + 
 +* [http://handsonhowto.com/virt.html IP Masquerade and Virtual Ethernet Interfaces]
 +* [http://de.susewiki.org/index.php?title=Smart Infos at smart (german)]
 +* [http://www.dslrouter-hilfe.de/home/siemens-reset.php Reset to Default Firmware (german)]
 +* [http://wiki.opennet-initiative.de/index.php/Siemens_SE505 Differences between SE505 version 1 and 2]

Revision as of 02:25, 5 March 2007

This describes how to flash your Siemens SE505 Router using tftp and Suse Linux. For flashing the Siemens Gigaset SE505, you have to use the dd-wrt.v23_mini_generic.bin. Since the Siemens default settings do not fit to the Linksys/dd-wrt ones you have additionally to check your configuration details after flashing.

Contents

Preparation

Install the tftp package on your Linux Box

Trivial File Transfer Protocol (TFTP) is a very simple Filetransferprotocol. Using Suse Linux you can do this by yast or typing as root user:

#smart install tftp

Create a virtual Network Interface on your Linux Box

Your router can only be flashed from the IP 192.168.2.100. The easiest way is to create a virtual network interface. In Linux, most network interfaces (e.g. eth0 or ppp0) are associated to a physical device. However, there are exceptions to this rule. This can be done by yast oder you simply type as root user:

#ifconfig -a eth0:1 192.168.2.100
#route add -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.2.100 dev eth0:1

ifconfig should now print somethinge like:

eth0:1    Link encap:Ethernet  HWaddr 00:00:00:00:00:00
          inet addr:192.168.2.100  Bcast:192.168.2.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:10 Base address:0xdc00

Restore the Router-IP

If you changed your router's IP, you have to restore the default IP to 192.168.2.1. This can be done by accessing your router via webinterface.

Flashing the router

Download the new Firmware

Download the new DD-WRT Firmware (generic/mini) and save it to your Linux Box. Remember the directory.

Reboot the Router

This can be done by using the router's webinterface (http://192.168.2.1). Klick the reboot button in the Management Menu

Immediately start the tftp transfer

After klicking the reboot button you have to start the transfer immediately on your Linux Box. Remember that you have to do this in the directory where the .bin file was saved.

#tftp -v 192.168.2.1 -m binary -c put dd-wrt.v23_mini_generic.bin

Configuration

After 5 to 10 minutes you should be able to access your router's new webinterface on http://192.168.1.1. The preset username is root, password ist admin.


Related Links