Skip to main content

Technicolor TG582n: Info, Configuration and Usage Options

Hi!






DANT-T and DANT-1 variants

DANT-T and DANT-1 variants



The Technicolor TG582n (quick specs, user guide) seems to be quite popular with ISPs and can be found in branded, sometimes locked*, form throughout. Fortunately, it works really well once properly configured and it is (usually) easy to unlock by flashing it with an unlocked firmware. One thing to take into consideration is that it comes in two main variants, the DANT-1 and DANT-T, with each variant only accepting it's own firmware (unless you are installing OpenWRT).

Firmware Update:

Now, when it comes to flashing the firmware, we need:
(Windows 7 is recommended)
- User privileges (username and password for user authorized to flash firmware ... for some branded ones we don't need one once router has been reset but for some like O2 we need the user SuperUser with password the Serial Number of router)



Once the firmware has been flashed successfully, one may proceed to configure the router:

(To continue reading, please click on 'Read More')

Configuration:


These routers can take on many roles and that's what also makes these popular amongst ISPs throughout the world! Using the Configuration Wizard ( thanks to now defunct modem-help.co.uk ) we can choose from templates and with the CLI access (Application Notes provide different advanced configuration scenarios) we can make many changes and tweaks.

Here is an example of configuration of the router as an adsl wifi router:




Here are some screenshots of the router's web interface once configured for our local ISP PTCL:





However, one may use the router as a Wireless Access Point/Wireless Router (IPoE, PPPoE) as well using one of the LAN ports as the WAN port:

Some routers these days auto-detect a WAN connection (on usually Ethernet port 4) when the router has not been configured for a service (like after a reset)! Same is the case with the TG582n as indicated by the sticker below the Ethernet Port 4 as shown below:

So, one may
- reset the router either via the web interface or via holding the hardware reset button pressed via pin for some time
- wait for the router to settle down after the reset
- turn off the router
- plug the LAN cable (for internet) from other router into the Ethernet Port 4 indicated by the sticker
- switch on the router

Note: In order to change settings for the TG582n while functioning as such, one may (temporarily) need to set Static IP (like IP 192.168.1.64, subnet 255.255.255.0 and gateway 192.168.1.254) to login to the web interface!

However, if we want more control over the router, we can use the CLI to convert any LAN port except Port 1 into a WAN (IPoE) port like shown below:

- reset the router either via the web interface or via holding the hardware reset button pressed via pin for some time
- telnet into router at 192.168.1.254
like if Telnet Client feature is installed in Windows OS, then we can use Command Prompt
 telnet 192.168.1.254  
- use the default username and password usually printed on the sticker at the back of the router
usually username will be Administrator with a blank password after a reset
- issue the following commands at the router's CLI (line with # indicates a comment and not a command)

 # Provide Configuration Information  
 env set var=CONF_REGION value=”World”  
 env set var=CONF_PROVIDER value=”Manual Internet over LAN”  
 env set var=CONF_DESCRIPTION value=”IPoE”  
 env set var=CONF_SERVICE value=”Internet over LAN”  
   
 # Disable WAN sensing to prevent it from interfering  
 wansensing config state = disabled  
   
 # Delete other connection settings  
 ppp relay flush  
 ppp flush  
 eth flush  
 atm flush  
 atm phonebook flush  
   
 # Remove Desired Ethernet Port (except Port 1 that cannot be removed) from Ethernet Bridge  
 # In this case, we'll use Port 4  
 eth bridge ifdelete intf=ethport4  
   
 # Add a new logical interface and connect to physical interface  
 eth ifadd intf=ethwan  
 eth ifconfig intf=ethwan dest=ethif4 wan=enabled  
 eth ifattach intf=ethwan  
   
 # Configure the IP Interface  
 ip ifadd intf=Internet_over_LAN dest=ethwan  
 ip ifconfig intf=Internet_over_LAN status=up  
 ip ifattach intf=Internet_over_LAN  
   
 # Enable DHCP on the interface so that we might get an IP   
 dhcp client ifadd intf=Internet_over_LAN  
 dhcp client ifconfig intf=Internet_over_LAN metric=10 dnsmetric=10  
 dhcp client rqoptions add intf=Internet_over_LAN option=dhcp-lease-time  
 dhcp client rqoptions add intf=Internet_over_LAN option=dhcp-renewal-time  
 dhcp client rqoptions add intf=Internet_over_LAN option=dhcp-rebinding-time  
 dhcp client rqoptions add intf=Internet_over_LAN option=subnet-mask  
 dhcp client rqoptions add intf=Internet_over_LAN option=default-routers  
 dhcp client rqoptions add intf=Internet_over_LAN option=domain-name-servers  
 dhcp client ifattach intf=Internet_over_LAN  
   
 # Enable NAT on the interface  
 nat ifconfig intf=Internet_over_LAN translation=enabled  
   
   
 # Enable the WAN GUI Interface  
 env set var=IS_NOT_DSL_DEVICE value=1  
   
 # Set System Configuration so the LEDs light up properly  
 system config WANMode=ETH WANEthPort=ethif4 defaultconnection=Internet_over_LAN  
   
 # Save the Settings  
 saveall  
(thanks to NabdaN and alcadis )


- exit via
 exit  
or initiate a reboot via
 system reboot  

Here is a VBScript that one may use (copy paste onto Notepad and use Save As with All Files (*.*) selected as Save as Type with a name like "tg582wan.vbs" including quotes ... quotes and .vbs are important to make file run as a script file, rest can be anything)


 set WshShell = WScript.CreateObject("WScript.Shell")
 WshShell.run"cmd"
 WScript.Sleep 1000
 WshShell.AppActivate "cmd"
 WshShell.SendKeys"telnet 192.168.1.254"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'write the user name to the cmd window
 WshShell.SendKeys"Administrator"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'write the password to the cmd window
 'Should be blank after a reset. If not, replace with the one printed on the sticker!
 WshShell.SendKeys("")
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Provide Configuration Information
 WshShell.SendKeys"env set var=CONF_REGION value=""World"""
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"env set var=CONF_PROVIDER value=""Manual Internet over LAN"""
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"env set var=CONF_DESCRIPTION value=""IPoE"""
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"env set var=CONF_SERVICE value=""Internet over LAN"""
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Disable WAN sensing to prevent it from interfering
 WshShell.SendKeys"wansensing config state = disabled"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Delete other connection settings
 WshShell.SendKeys"ppp relay flush"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"ppp flush"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"eth flush"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"atm flush"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"atm phonebook flush"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Remove Desired Ethernet Port (except Port 1 that cannot be removed) from Ethernet Bridge
 'In this case, we'll use Port 4
 WshShell.SendKeys"eth bridge ifdelete intf=ethport4"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Add a new logical interface and connect to physical interface
 WshShell.SendKeys"eth ifadd intf=ethwan"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"eth ifconfig intf=ethwan dest=ethif4 wan=enabled"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"eth ifattach intf=ethwan"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Configure the IP Interface
 WshShell.SendKeys"ip ifadd intf=Internet_over_LAN dest=ethwan"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"ip ifconfig intf=Internet_over_LAN status=up"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"ip ifattach intf=Internet_over_LAN"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Enable DHCP on the interface so that we might get an IP 
 WshShell.SendKeys"dhcp client ifadd intf=Internet_over_LAN"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client ifconfig intf=Internet_over_LAN metric=10 dnsmetric=10"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client rqoptions add intf=Internet_over_LAN option=dhcp-lease-time"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client rqoptions add intf=Internet_over_LAN option=dhcp-renewal-time"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client rqoptions add intf=Internet_over_LAN option=dhcp-rebinding-time"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client rqoptions add intf=Internet_over_LAN option=subnet-mask"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client rqoptions add intf=Internet_over_LAN option=default-routers"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client rqoptions add intf=Internet_over_LAN option=domain-name-servers"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 WshShell.SendKeys"dhcp client ifattach intf=Internet_over_LAN"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Enable NAT on the interface
 WshShell.SendKeys"nat ifconfig intf=Internet_over_LAN translation=enabled"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Enable the WAN GUI Interface
 WshShell.SendKeys"env set var=IS_NOT_DSL_DEVICE value=1"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Set System Configuration so the LEDs light up properly
 WshShell.SendKeys"system config WANMode=ETH WANEthPort=ethif4 defaultconnection=Internet_over_LAN"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Save the Settings
 WshShell.SendKeys"saveall"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000
 'Reboot the router
 WshShell.SendKeys"system reboot"
 WshShell.SendKeys("{Enter}")
 WScript.Sleep 1000


Here is a video that shows all three configuration options including the PPPoE one (for use behind other dsl/cable/fiber modem):


As stated in video above, if EthWAN PPPoE template is not available on the router itself as one of the built-in templates, one can use the Thomson Configuration Wizard linked-to above with template(s) under "Fiber" section. Zen.co.uk provides some templates as well for fast FTTH connection users that also might come in handy here in case of slow upload speeds.

Tweaks

- Manually changing the DNS Server (like if you want to use OpenDNS, NortonDNS, ComodoDNS, ...)



- Improving wifi performance if one doesn't need b/g modes:

Note: Some options might not be supported by all chipsets! Also, 20 MHz bandwidth might give better performance than using 40MHz in case of congested areas (lots of other wifi access points in the neighbourhood):

Update: Please see section for TG582n at the end of:

(To be continued...)

 --------------------------
* won't accept username without supported ISP domain ... could work for other ISPs that don't use username for authentication

Comments

  1. Hello Ahmad,
    I want to know if there is an adsl router for ptcl which can work in low snr or a router that can tweak snr to get stable internet.
    I am using ptcl 8mb connection
    My snr as per now is 21 for downstream
    And 6 for upstream.
    But it fluctuate goes from 21 downstream to 11--->8
    And upstream goes from 6 to 3-2 or even in negative 1
    Previously i was using 4mb and connection was pretty stable snr downstream was around 30 and upstream was 6 or 7
    I'm from a backward area where ptcl employees(lineman) has no knowledge of snr or attenuation.
    Please provide a solution by keeping in mind i'm using ptcl dsl

    ReplyDelete
    Replies
    1. Hello!

      Thanks for your confidence in me ... here are some points to consider:

      1. SNR Margin denotes the limit of fluctuation in noise on the line that the modem can handle at that particular speed for the given line ... so when you upgraded to 8Mbps from 4Mbps, the SNR Margins went down as the line wasn't touched

      2. Yes some routers do allow SNR Margin Tweaking so one may increase Target SNR Margins while sacrificing some speed! For PTCL, I have used the W150D model that supports such feature: http://ahmedfarazch.blogspot.com/2013/12/ptcltenda-w150d-and-micronet-sp3367nl.html though I had installed Micronet Taiwan's firmware for model SP3367NL on it ... but any broadcom router that allows telnet access and has xdslctl or adslctl binary that allows saving profiles should work ... I would recommend the Sky Sagem 2504n if you can find it (I can help getting it as well if needed) as it has a very advanced chipset and once unlocked with custom firmware provides graphing tools and tweaking options http://ahmedfarazch.blogspot.com/2015/02/sky-sagem-2504n-adsl-wireless-router.html

      Hope this helps!

      Regards,
      Ahmed

      Delete
    2. Since you are having trouble with upstream SNR Margins, you can also try using 2 splitters/filters one after another to try to increase upstream SNR Margins at cost of upstream speed!

      Delete
    3. Thank you for quick response. so you have mentioned two models. W150D and Sky Sagem 2504n. Which is the best and what are their prices? all i care about right now is a stable internet connection. and whats 2 spliter/filter thing
      p.s my connections is old copper wire. and they dont use DB instead joints are made on poles to connect.
      sorry for bothering. i am a noob :)

      Delete
    4. Hello Again!


      Would you be kind enough to email me so that we can discuss this in detail!

      My email id is ahmedfarazch
      and I use Gmail's service

      Regards,
      Ahmed

      Delete
  2. Hello Ahmad,

    pls provide your comment-suggestion about the firmware upgrading with DAN-T 8 hardware version.

    Thanks !!

    ReplyDelete
  3. Hello!


    You may try the DANT-T firmware here! If it doesn't work kindly send me a picture of the sticker on bottom of router as well as name of your ISP. My id is ahmedfarazch and I use Gmail.

    Regards,
    Ahmed

    ReplyDelete
    Replies
    1. Thank for your prompt reply.
      Regards

      Paolo

      Delete
    2. Hello,
      Do you have any firmware for Technicolor TG582n V2 DANT-V ?

      Delete
    3. Hello!

      Sorry, I don't have access to a TG582n DANT-V (yet)! According to openwrt wiki for TG582n, the DANT-V version uses a different (larger) flash chip. You may ask your ISP for a firmware image and kindly send me a copy as well! Thanks!

      Regards,
      Ahmed

      Delete
  4. Good Afternoon,

    I'm trying to load unlocked firmware on a Telstra branded TG582N. I have put many different firmwares in the Builds folder but when I run the upgrade tool they are listed but each says Not Compatible.

    Is that correct or do I need a more powerful username/password ?

    Any help would be appreciated

    Mal

    ReplyDelete
  5. Afternoon!

    Can you please email me the screenshot of the Information tab for your router like shown here!
    This'll help determine the variant you might have.

    (My id is ahmedfarazch and I use G-mail)

    As far as your ISP is concerned, some users say that they only use branded/custom firmware for their routers and these can be used with other ISPs. If you want newer firmware, perhaps they could also provide it.

    Regards,
    Ahmed

    ReplyDelete
  6. HI AHmed, is there a way do port forwarding on l2tp/ipsec on this device.

    ReplyDelete
    Replies
    1. Hello!

      Perhaps this might help if you are having the same problems!

      "Hi.
      Thanks for your suggestions. A MASSIVE help.
      I also had that in my setup file when i took a look and it seems that unbinding applications ESP and AH has solved the problem. My L2TP VPN is up and running very nicely now....
      Just one thing, if anyone is having the same issues... punch these commands in....
      connection unbind application ESP
      connection unbind application AH
      saveall
      I then had to restart the router for the changes to take effect.
      Thanks again for the help
      Skips"
      Source

      Regards,
      Ahmed

      Delete
  7. Hi, can you help me understanding how to recognize the T model vs the 1 model? which is the label/picture to check to be sure to have one model or the other?

    p.s. i have a model that seems ok to connect to other providers like adsl in italy, but the only think i have is a red light on the internet light , even if it seem to connect good and navigate normally. thanks a lot

    ReplyDelete
    Replies
    1. Hello!

      Can you please check under the System Information tab to verify the variant and/or board type. Although the router's web interface might be different due to different firmware/ISP, the information should mostly look like this!

      As far as connectivity is concerned, one can check the event log of the router for more information!

      Hope this helps!

      Regards,
      Ahmed

      Delete
  8. Hello I have 2 questions:

    I only know my modem is "Release Modem: AGVTF_5.3.3" since this is what I find in the 192.168.1.1 page, but nothing is written on the out of the box.

    Is it possible to dump the firmware on pc for analysis?
    Is it possible to get the precise model and then download the firmware from official productor site?

    ReplyDelete
    Replies
    1. Hello!

      Does it look like this?

      If yes and it superuser access is available, then, it should be possible. Also, one can ask the ISP to provide firmware image making it much easier!


      Regards,
      Ahmed

      Delete
  9. Hi I would like to know how to create a wireless bridge btwn TP Link TD-W8961ND to the main router which is a Technicolor TG582n explaned for beginners. Thanx in advance

    ReplyDelete
    Replies
    1. Hello!


      Wireless bridge can be set up via WDS mode! However, WDS varies from vendor to vendor and is often incompatible between different routers from different vendors.

      Specifically, in this case, one issue is that the W8961ND supports only WPA/WPA2 wifi security in WDS mode as shown here whereas the TG582n reportedly supports WEP only in WDS mode (I'll check and update later)!

      To resolve this one might:
      - use a LAN cable if possible and use either one of the routers as an Access Point

      - replace one of the routers with a similar make and model one ... and use WDS

      - replace one of the routers with a Universal Wireless Repeater

      - try third party/custom firmware as it may allow extra options and tweaks including repeater function ... there seems to be Openwrt support for TG582n but sadly it's a fairly complicated process for beginners at this time!

      In short, it is not a good idea to bridge the two routers via WDS mode ... other options are recommended!


      Regards,
      Ahmed

      Delete
  10. hi , in the command telnet i cant enter , that say invalid username/password closing connection

    ReplyDelete
    Replies
    1. Hello!

      Kindly let us know who your ISP is and if possible what variant of TG582n you are using.

      Regards,
      Ahmed

      Delete
    2. my ISP is telmex and my variant is t

      Delete
    3. telmex is my isp and variant t

      Delete
    4. In that case, have you tried:

      Username: TELMEX
      Password: WiFi Key printed on the sticker

      There is also a chance that there exists:

      Username: superman
      Password: superman

      There is also a way to edit the configuration file saved via the Backup Configuration option to get root or superuser access. Let us know if you need it!

      Hope this helps!


      Regards,
      Ahmed

      Delete
    5. neither of the two options access

      Delete
    6. Hello Again!


      Sorry to hear that you are having trouble accessing the router as the SuperUser. Can you login via Telnet using the same user account as the one used to access the GUI of the router? If yes, then, can you please try the command:

      (At the prompt =>) user list

      and list the output you get! Thanks!


      Regards,
      Ahmed

      Delete
    7. hello ahmad
      i live in lebanon and i had dsl from sodetel.net.lb
      but because of delayed to paying the bill of the phone they cut the phone line.
      so i got a broadband connection from local isp, so next i need router.
      so when i searched about tg582n that i used before as a dsl modem can convert to pppoe router or access point whatever name i get to ur blog and i used ur script on the same firmware
      Product Name: TG582n

      Serial Number: ********

      Software Release: 10.2.6.4

      Software Variant: EK

      Boot Loader Version: 1.0.5

      Product Code: ********

      Board Name: DANT-T

      and it worked but the only problem i had is the port 4 that converted to wan is sharing my connection all over the network and iam not protected behined the router..

      after searching for 2 days and specially that npr.me.uk is down and i have to find alternative in the end i found this commands that solved my problem and protected me behined router
      so just i want to share it and if u can solve what the problem in ur script:

      Create a Cable Router Turn port 4 in to a EWAN port.

      With these commands you can connect the Technicolor router to a Fibre modem.



      Commands

      ppp flush
      ppp relay flush
      eth flush
      atm flush
      atm phonebook flush
      eth bridge ifdelete intf=ethport4
      eth ifadd intf=eth_wan
      eth ifconfig intf=eth_wan dest=ethif4 vlan=default
      eth ifattach intf=eth_wan
      eth ifconfig intf=eth_wan wan=enabled
      ppp ifadd intf=Internet
      ppp ifconfig intf=Internet dest= eth_wan
      ppp ifconfig intf=Internet class=12 accomp=enabled mru=1492 format=none dnsmetric=10 idletime=0 restart=enabled
      ppp ifconfig intf=Internet user=yourusername password=yourpassword status=enabled
      ppp rtadd intf=Internet dst=0.0.0.0/0 src=0.0.0.0/0 metric=10
      nat ifconfig intf=Internet translation=enabled
      system config defaultconnection=Internet
      system config WANMode=ETH WANEthPort=ethif4
      saveall
      system reboot

      This is for PPP connection not DHCP connection types.
      Not supported with a ISP locked router (eg O2 wireless box)

      Delete
  11. TG582n can change mode to bridge ? I want use another router pppoe,Is this feasible?

    ReplyDelete
    Replies
    1. Hi!


      Yes, the router can be configured to run in bridge mode in a number of ways:
      - Check to see if the built-in Setup/Configuration Wizard offers this option
      - Thomson Configuration Wizard can also be used to apply the Template ... a manual method is shown at: https://www.voicehost.co.uk/help/technicolor-tg582n-and-tg589vn-routers ... will have to use a suitable tpl file
      - CLI can also be used to configure the router though it shouldn't be needed in most cases ... kindly see the Internet Configuration Guide at: https://1drv.ms/b/s!Av27A1CfPo_Xi1at7OG_Re3D3T_p

      Hope this helps!


      Regards,
      Ahmed

      Delete
  12. salam ahmed need help how to connect to my router thechnicolortg788vnv2 ? tak

    ReplyDelete
  13. thanks a lot for an amazing guide. it all worked in one go. tg582n converted to wifi access point. wish you all the success mate.

    ReplyDelete
    Replies
    1. Hello!

      Thank you for your valuable feedback!

      Regards,
      Ahmed

      Delete
  14. Hi!


    If the other router can support connection type of "Automatic DHCP", it should work with the tg582n using tg582n's DHCP server to get an IP address (devices on both routers might not be able to access each other ... each router doing nat and having a firewall).

    Another way would be to configure the secondary router as an Access Point (devices on both routers would likely be able to share resources ... only main router doing nat and only main router having firewall).

    So, it depends upon the configuration options for the secondary router and whether devices are to be kept separate or not.

    Any information about the secondary router?

    Regards,
    Ahmed

    ReplyDelete
  15. Hello Ahmed,
    I read your article and I found it very interesting, so that I decided to try to convert my old TG582n into a Wireless Access Point.

    I followed your guide to configure the LAN Port 4 as a WAN port but something gone wrong: I'm not able to get internet connection through TG582n.

    Morover, I found out that the TG582n cannot get an IP address (I don't know if it shoudl get one) and DHCP service seems to work only on WiFi connected device (every PC connected througn ethernet cannot get an IP address).

    It's not so important but i'd love to manage to configure it as I want.
    Anyway, thanks for letting me discover so many new nerd stuff.

    Regards,
    Francesco

    ReplyDelete
    Replies
    1. Hello!


      Thank you for your valuable feedback end encouragement! As for the router and anything connected to the other LAN ports not getting an IP address is concerned:

      - the quick method to convert to a WAP (1st method) is configured in the firmware and requires the use of a static IP address to configure the router again. Usually the wireless part and the LAN ports are bridged and anything connected to either should get an IP address from the "main" router if everything has been set up normally (DHCP server configured to hand out IP addresses)

      - a similar result to the quick method can be obtained manually by first setting up the wireless connection on TG582n, then disabling the firewall, and finally disabling the DHCP server while setting the local address of the router to one in the subnet of the "main" router (for example, if "main" router uses 192.168.1.--- range and "main" router itself uses 192.168.1.1 then 192.168.1.254 for TG582n would work, but, in case of the "main" router using 192.168.2.1 and the associated range, one would need to set 192.168.2.254 or any other unused IP in same range for TG582n)

      In case of the configuration for IPoE with the script above:
      - the TG582n stays at 192.168.1.254 and assigns IP addresses itself while also managing the firewall ... useful in the case of separating devices behind each router ... in this case, having the TG582n and the "main" router use different IP address ranges is recommended

      However, it should be noted that the script might not work on all firmware versions and/or hardware variants of the TG582n (watch out for errors) though the firmware itself might provide similar configuration options via the "Setup" feature (usually updated firmware).

      Hope this helps!

      Regards,
      Ahmed

      Delete
  16. Hello! How can I managed to use 20 or 40mHz in wireless setings of router tg582n Dant-1, generic fw version: 10.2.5.2, IPoE connection. Is it possible? And what setings may be used by telnet to speedup WiFi performance above 40 mb/sec?

    ReplyDelete
    Replies
    1. Hi!


      As per npr.me.uk (available at http://web.archive.org/web/20160731201914/http://npr.me.uk:80/telnet.html), the command to try via telnet is:
      - wireless radio channelwidth=20/40 sgi=enabled
      (remember to use 'saveall' command to save the configuration)

      There are a number of other tweaks listed there as well!

      However, it should be noted that 40MHz channel width is to be used ideally in areas with no other wireless access points around as it might cause more congestion and interference for all in areas with many access points around.


      Regards,
      Ahmed

      Delete
  17. I start the Thomson to configure the TG582n in eth4 WAN mode and it asks me for the user and the default password of the and an additional user and password. I give the following to finish and it throws me an error message: invalid username and/or password.
    Could you help me please?

    https://ibb.co/vLMckdp
    https://ibb.co/4gzwCZm

    ReplyDelete
  18. I tried to configure my TG582n in eth4 as WAN mode with Thomson Configuration Wizard, but it gives me an error, could you help me
    please?
    https://ibb.co/vLMckdp
    https://ibb.co/4gzwCZm

    ReplyDelete
  19. Hi Mr. Ahmed!

    I have a question. I followed your guide and installed the firmware called "PN FTTC R10.2.5.2 FO" on your onedrive (DANT>DANT-T>Others) and i don't know the user and password for this image, can you share it with me? i thought it was the open image :s

    ReplyDelete
  20. Hi Mr. Ahmed!

    I have a question. I followed your guide and installed the image called "PN FTTC R10.2.5.2 FO" that was in your Onedrive (DANT>DANT-T>Others) and i can't find the user and the password. I already tried "admin", "administrator" and "superuser". Thanks in advance!

    ReplyDelete

Post a Comment

Popular posts from this blog

PTCL's (newer) Wireless n 150mbps W150D xDSL Router by Tenda Part2

From the hardware point of view, the PTCL/Tenda W150D is not much different from other BCM6328 based routers but the difference surely lies in the software/firmware ... so let's take a look at the gui side of things ... From the start it was apparent that the firmware for PTCL was not 'special/locked' one and just used image replacement replacing Tenda's images/logos with those for PTCL ... anyways it also didn't seem to work well, felt kind of like a beta version of the firmware ... couldn't hold onto some settings ... my long line and difficult stats didn't help either (awaiting conversion from copper to fiber) ... so in desperation I looked at firmware updates for the router on Tenda's website knowing full well that a corrupted/interrupted/slightly-changed firmware update would brick the router with no obvious way to recover as serial & jTAG pinouts are not known (there are some test points ... but lack of interest) and no full flash backup c

BT Home Hub v2 Type A: Info, Unlock & Configuration

Hello Again! Next up is the BT Home Hub v2* Type A home ADSL Wireless Router by Thomson/Technicolor (more info at OpenWRT wiki ). Again, this router accepts only BT specific/approved domain names for username of dsl and must be 'unlocked' to be used with other ISPs. Such 'unlocking' (thanks to btsimonh and Surreliz3) also allows more configuration options, though firmware upgrade options might become limited. As with the BTHH v1 & v1.5 , this router can be 'unlocked' via jTAG method but there is also the relatively easier software method provided the firmware version currently on the BTHHv2A is lower than version 8.1.H.U.  Unlock: I 'unlocked' mine via the software method a long time ago so I won't be able to post screenshots of the process (have yet to try the jtag method on one with newer firmware that I also happen to have), but, here is the process as described on the now defunct psidoc.com website (the links may