Kitz ADSL Broadband Information
adsl spacer  
Support this site
Home Broadband ISPs Tech Routers Wiki Forum
 
     
   Compare ISP   Rate your ISP
   Glossary   Glossary
 
Please login or register.

Login with username, password and session length
Advanced search  

News:

Pages: 1 ... 50 51 [52] 53 54 ... 84

Author Topic: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)  (Read 402574 times)

Ivymike

  • Reg Member
  • ***
  • Posts: 100
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #765 on: March 01, 2018, 02:05:08 PM »

where did you find telstra gui?
Logged

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #766 on: March 01, 2018, 03:07:12 PM »

hello, I've successfully upgraded and rooted to 1.1.0_002 on DGA4132.
My active profile is bank 2 and, if I understood well, it is not the best scenario for disaster recovery via BOOTP.

How can I switchover to bank 1 and have 1.1.0? (actually I have on bank 1 1.0.3, because I did double firmware flash as described in guide). Can I upgrade firmware and retain configuration?

My actual configuration is bridge mode (I have a business grade firewall on a business VDSL - no TIM) so that the static IP is fully managed by the firewall.
I've created a single interface only for bridging on combo port, so that the firewall uses it for PPPoE and the remain ports act like a separated switch where I can manage the technicolor and attach other devices. In addition to this I can use it like an access point and also have VoIP enabled without having wan traffic mixed with lan traffic.

But I read in this thread that wansensing should be disabled for bridging, while mine is active. Why do I need to disable it?
I think that my configuration is a smarter way to use the bridge mode, but I can do it only via SSH. 

I've looked inside dga4131_unlocked GUI, but the bridgemode_helper.lua puts everything in bridge (DSL with WIFI with LAN) discarding what I wrote before.
May someone can help me to write a new bridgemode_helper.lua, so that I can (and not only me) setup this "combo bridge mode" with the GUI?

The files that  I've modified are:

/etc/config/network:
Code: [Select]
config interface 'wan'
option demand '0'
option macaddr 'xxxxxxxxxxxxx'
option ipv6 '0'
option keepalive_adaptive '0'
option ifname 'wanptm0'
option proto 'bridge'
option auto '1'

config config 'config'
option wan_mode 'bridge'

-----------------------------------------------------

config interface 'lan'
option type 'bridge'
option proto 'static'
option netmask '255.255.255.0'
option ip6assign '64'
option force_link '0'
option ipv6 '0'
option ifname 'eth0 eth1 eth2 eth5'
option pppoerelay '<set by script>'
option ipaddr '192.168.1.1'

config interface 'combo'
option type 'bridge'
option proto 'static'
option netmask '255.255.255.0'
option ip6assign '64'
option force_link '0'
option ipv6 '0'
option ifname 'eth3 wanptm0'
option ipaddr '192.168.0.1'


/etc/config/firewall

Code: [Select]
config zone 'combo'             
        option name 'combo'     
        option input 'ACCEPT'   
        option output 'ACCEPT'
        option forward 'REJECT'
        option mtu_fix '1'     
        option wan '0'
option _key '????what is it????'           
        list network 'combo'
--------------------------------------------


/etc/config/dhcp

Code: [Select]
config dhcp 'combo'
option interface 'combo'
option dhcpv6 'server'
option ra 'server'
option ra_management '0'
option ra_mininterval '200'
option ra_maxinterval '600'
option ra_lifetime '1800'
option ra_hoplimit '64'
option force '1'
option leasetime '21600s'
list dhcp_option 'tag:cpewan-id,vi-encap:3561,6,"4132"'
list dhcp_option 'tag:cpewan-id,vi-encap:3561,5,"xxxxxxxxxx"'
list dhcp_option 'tag:cpewan-id,vi-encap:3561,4,"xxxxxx"'
list dhcp_option '6,192.168.0.1'
option dhcpv4 'server'
option start '10'
option limit '11'
« Last Edit: March 01, 2018, 06:24:26 PM by balteck »
Logged

shdf

  • Reg Member
  • ***
  • Posts: 379
    • Liveboxinfo
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #767 on: March 01, 2018, 03:26:22 PM »

did you install a modded GUI ?
btw you shouldn't use a beta firmware, use the FINAL 1.1.0

in my GUI and in the Ansuel GUI, inside /etc/init.d/rootdevice there is a function named transfer_bank, this is what will do the bank change stuff.

Code: [Select]
transfer_bank() {
if [ -d /overlay/bank_1 ]; then
rm -r /overlay/bank_1
fi
mkdir /overlay/bank_1
cp -r /overlay/bank_2/* /overlay/bank_1
if [ -f /overlay/bank_1/etc/init.d/rootdevice ]; then
mtd erase /dev/mtd3
mtd write /dev/mtd4 /dev/mtd3
fi
activeversion=$( cat /proc/banktable/activeversion )
passiveversion=$( cat /proc/banktable/passiveversion )

if [ "$activeversion" = "$passiveversion" ]; then
echo bank_1 > /proc/banktable/active
reboot
fi
}
Logged
DGA4130 Firmware 2.2.0 Gui 9.5.x Stable
DGA4132 Firmware 2.2.0 Gui 9.5.x Stable
MEGA : Removed

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #768 on: March 01, 2018, 04:03:13 PM »

I'didn't install a modded GUI. I've unlocked myself changing /etc/config/web and modify some file just to have a stock look and the right wan status (bridged and not DHCP connecting).

I wish to install your GUI, but after I've checked which files will be changed, I wrote my post, because the www/lua/internetmode_helper.lua use wansensing variable to check for bridge that not works on my configuration.

I know that I did a mistake and I've confused the beta with the final. That's why I asked if I can update to 1.1.0 final retaining the settings or I need to double flash (1.1.0, then 1.0.3+root, then swithover deleting overlay bank_2 that contains my settings)
« Last Edit: March 01, 2018, 04:08:30 PM by balteck »
Logged

shdf

  • Reg Member
  • ***
  • Posts: 379
    • Liveboxinfo
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #769 on: March 01, 2018, 04:19:31 PM »

make a backup of your /etc/config and redo the upgrade process, it's more simple. and once done overwrite the /etc/config with your backup.

And if you want to be on bank_1 at the end, then just flash the firmware 1.1.0 twice, then the firmware 1.0.3. i hope you understand why ;)
« Last Edit: March 01, 2018, 04:22:28 PM by shdf »
Logged
DGA4130 Firmware 2.2.0 Gui 9.5.x Stable
DGA4132 Firmware 2.2.0 Gui 9.5.x Stable
MEGA : Removed

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #770 on: March 01, 2018, 04:25:47 PM »

I followed your guide:

https://www.ilpuntotecnicoeadsl.com/forum/index.php/topic,77325.msg228676.html#msg228676

So, do I need to backup config folder and to follow the guide again, making two time the point 2?

In other words: I need to delete the content of overlay/bank_1 and /overlay/bank_2, or do I go to flash 1.1.0, then 1.0.3 + root, then root (not flash) 1.0.3 inactive without delete anything?

Better to do a factory default first?
« Last Edit: March 01, 2018, 04:53:37 PM by balteck »
Logged

shdf

  • Reg Member
  • ***
  • Posts: 379
    • Liveboxinfo
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #771 on: March 01, 2018, 05:01:08 PM »

I followed your guide:

https://www.ilpuntotecnicoeadsl.com/forum/index.php/topic,77325.msg228676.html#msg228676

So, do I need to backup config folder and to follow the guide again, making two time the point 2?

yes that's it, nothing else.
Logged
DGA4130 Firmware 2.2.0 Gui 9.5.x Stable
DGA4132 Firmware 2.2.0 Gui 9.5.x Stable
MEGA : Removed

Ivymike

  • Reg Member
  • ***
  • Posts: 100
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #772 on: March 01, 2018, 05:16:01 PM »

where can i find telstra gui to make some test?
Logged

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #773 on: March 01, 2018, 06:17:43 PM »

yes that's it, nothing else.

Perfect!. Now I'm on 1.1.0 Final and booting on Bank 1.

What do you think about make the "combo bridge mode"?
Logged

shdf

  • Reg Member
  • ***
  • Posts: 379
    • Liveboxinfo
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #774 on: March 01, 2018, 06:28:08 PM »

What do you think about make the "combo bridge mode"?
sorry but i'm not using bridge mode i can't help with something i don't use. Probably those who are using this method could help you...
But what i understood about wansensing is that it looks like it was not planned to work in bridge mode. Only for DSL, Ethernet, Mobile wwan, this is why there are problems with it in bridge mode. but as i'm not concerned with this i never look further in that thing, maybe @eclp @bilbokitz can help you.
« Last Edit: March 01, 2018, 06:38:26 PM by shdf »
Logged
DGA4130 Firmware 2.2.0 Gui 9.5.x Stable
DGA4132 Firmware 2.2.0 Gui 9.5.x Stable
MEGA : Removed

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #775 on: March 01, 2018, 06:56:08 PM »

Only for DSL, Ethernet, Mobile wwan, this is why there are problems with it in bridge mode.

Bridge mode set in my way works as aspected and there aren't any problems.
But I configurated it editing files in /etc/config and not using uci commands (that I don't know) like the GUI inside each lua files.
So I ask help to people that knows how to modify GUI (lp and lua) without using ssh and text editor.
Logged

shdf

  • Reg Member
  • ***
  • Posts: 379
    • Liveboxinfo
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #776 on: March 01, 2018, 07:04:48 PM »

But I configurated it editing files in /etc/config and not using uci commands (that I don't know) like the GUI inside each lua files.
yes, that what i was saying, they didn't planned it to work in their GUI because the bridge mode is not supposed to exist.
« Last Edit: March 01, 2018, 07:07:02 PM by shdf »
Logged
DGA4130 Firmware 2.2.0 Gui 9.5.x Stable
DGA4132 Firmware 2.2.0 Gui 9.5.x Stable
MEGA : Removed

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #777 on: March 01, 2018, 07:15:16 PM »

Did you try the setup wizard in the GUI ??

I have the original GUI with unlocked cards, so no setup Wizard is present.
Anyway I think that my method to split the router in two (a modem with ADSL/VDSL bridged to combo eth port and a multifuction device that uses the other eth ports as switch, Wi-Fi as access point, DLNA, SMB, VoIP with two FXS, etc) it wolud be unlikely to be present.

And the bridge mode that I can activate with yours or Ansuel GUI turn off everything, but modem and eth ports (all bridged together with the DSL).
Logged

Ivymike

  • Reg Member
  • ***
  • Posts: 100
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #778 on: March 01, 2018, 08:33:17 PM »

It's the third time i ask for something, or I became invisible or I was being ignored
Logged

balteck

  • Member
  • **
  • Posts: 16
Re: Modem/Router VDSL2 Technicolor DGA4130 (BCM63138)
« Reply #779 on: March 01, 2018, 08:47:10 PM »

It's the third time i ask for something, or I became invisible or I was being ignored

I really don't know where is it, but I've just applied dga4132 unlocked GUI from www.dga4132.tk and I can see the first 3 cards like Telsra GUI

« Last Edit: March 01, 2018, 08:59:06 PM by balteck »
Logged
Pages: 1 ... 50 51 [52] 53 54 ... 84