Huawei B525s-23a mod firmware.

Dyskusje na temat wyboru sprzętu. Jaki modem, telefon do GPRS/EDGE/UMTS/HSDPA/HSUPA, jaką przejściówkę, kabel do telefonu... itp. mam wybrać?

Moderator: Moderatorzy

ODPOWIEDZ
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

garysek pisze:Naprawdę :?: :?: :?: :szok:

Jak zaczniesz liczyć posty nad Twoim to dojdziesz do numeru 6 (właściwie przy numerze 4 mógłbyś się zatrzymać, ale to tylko cytat więc zastawmy go). W Tym moim poście jest jeden wiersz pokreślony (czyli po prostu link) - kliknij na nim...

Przepraszam, ale czy naprawdę to taki wielki problem poczytać o czym pisze się w danym temacie?

Mek88 pisze:Sorry for my english.... I have Huawei b525.... I Connect to VPN..... But i have a problem.... Some time the connection VPN go down (offline).... After the connection go offline.... The router Connect automatic in internet with the sim card lte connection..... I need the router stop the internet connection if the VPN is not connected.... Can you help me please.... Can i install a firmware to do this.... (before i have another router and it was installed OPENVPN... And it work fine)
You can write a vpn checking script and run it in cron every minute, for example.
But personally, I would advise you to use openvpn on an openwrt/lede router...
Thank you so much for your reply... can you help me to write this scripts to do that please?.... Or
Can you tell me how can I Install Open VPN in my Huawei b525 router please.
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

Mek88 pisze:Thank you so much for your reply... can you help me to write this scripts to do that please?....
I think that should be enough:

Kod: Zaznacz cały

#!/bin/sh

STATUS=`cat /tmp/vpn.status` 2> /dev/null
if (ifconfig | grep P-t-P > /dev/null); then
	if [ "$STATUS" != "UP" ]; then
		echo "UP" > /tmp/vpn.status
		echo 1 > /proc/sys/net/ipv4/ip_forward
	fi
else
	if [ "$STATUS" != "DOWN" ]; then
		echo "DOWN" > /tmp/vpn.status
		echo 0 > /proc/sys/net/ipv4/ip_forward
	fi
fi
All you need to do is give commands in the ssh console:

Kod: Zaznacz cały

wget -g -l /etc/check_vpn.sh -r /B525/check_vpn.sh -P 18033 garysek.podlasie.pl
chmod 755 /etc/check_vpn.sh
echo "*/1 * * * * /system/etc/check_vpn.sh" >> /etc/crontabs/root
cron restart
Just remember that the script checks the vpn tunnel once per minute.
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

garysek pisze:11.236.01.00.00 - old software, bridge mode doesn't work propably
11.170.61.00.07 - newer software, bridge mode OK
11.182.61.00.778 - the newest Huawei soft I have (I don't know what they changed, but Bridge mode - OK)

WEBUI:
original @rust3028 mod1.1:
@rust3028 pisze:Unlocked sections "USSD", "Contacts" and "SIM-menu" and subsection "VoIP".
Added the display of some parameters in the "Device information" section, organized their auto-update.
Unlocked access to various settings.
Unlocked the configuration of the PPTP VPN client.
Added a full selection of network type and range selection.
In the main menu added the item "?" to quickly jump to the "Device Information" section.
The default language is Russian.
Added the display of the operator name and network technology in the status bar.
Added the display of parameters in the tooltip of the signal level indicator.
Added upload / transfer rate display.
Added the display of numerical values ​​of PLMN and the names of the operators "Yota" and "Fly" in the list of found networks.
Added a system for managing the list of USSD-commands (the commands are stored in the file /data/userdata/ussd/ussd_cmd_list.xml).
I made the autocomplete field "Username" for the convenience of authorization.
The timeout for automatic "unlocking" of the web interface has increased to 20 minutes.
Corrected and added profiles for a number of Russian operators.
Added the ability to specify DNS servers in DHCP settings.
Added the ability to specify DNS servers in the profile settings.
Implemented the installation of an arbitrary IP address of the router.
Added the ability to assign an IP address to the MAC address.
and I added my modifications:
- added and set to default Polish language
- memorizing the PIN (is in 11.170.61.00.07_mod_beta3)
- set time zone to GMT+01:00 (Warsaw)
- displaying the operator name 26034 (Networks!) added
- changing the signal level icons on the main screen
- activating ipv6 support
- bridge mode activated
- in Bridge mode unblock the Network settings menu (is in 11.170.61.00.07_mod_beta3)
Firmware:
- ssh server added
- cron added
- added atc program (to execute AT commands)
- added adb server (but it is not automatically started - it can be launched manually from the console)
hello,
is this newer or just custom?
http://update.hicloud.com:8180/TDS/data ... 01.673.BIN
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

garysek pisze:11.236.01.00.00 - old software, bridge mode doesn't work propably
11.170.61.00.07 - newer software, bridge mode OK
11.182.61.00.778 - the newest Huawei soft I have (I don't know what they changed, but Bridge mode - OK)

WEBUI:
original @rust3028 mod1.1:
@rust3028 pisze:Unlocked sections "USSD", "Contacts" and "SIM-menu" and subsection "VoIP".
Added the display of some parameters in the "Device information" section, organized their auto-update.
Unlocked access to various settings.
Unlocked the configuration of the PPTP VPN client.
Added a full selection of network type and range selection.
In the main menu added the item "?" to quickly jump to the "Device Information" section.
The default language is Russian.
Added the display of the operator name and network technology in the status bar.
Added the display of parameters in the tooltip of the signal level indicator.
Added upload / transfer rate display.
Added the display of numerical values ​​of PLMN and the names of the operators "Yota" and "Fly" in the list of found networks.
Added a system for managing the list of USSD-commands (the commands are stored in the file /data/userdata/ussd/ussd_cmd_list.xml).
I made the autocomplete field "Username" for the convenience of authorization.
The timeout for automatic "unlocking" of the web interface has increased to 20 minutes.
Corrected and added profiles for a number of Russian operators.
Added the ability to specify DNS servers in DHCP settings.
Added the ability to specify DNS servers in the profile settings.
Implemented the installation of an arbitrary IP address of the router.
Added the ability to assign an IP address to the MAC address.
and I added my modifications:
- added and set to default Polish language
- memorizing the PIN (is in 11.170.61.00.07_mod_beta3)
- set time zone to GMT+01:00 (Warsaw)
- displaying the operator name 26034 (Networks!) added
- changing the signal level icons on the main screen
- activating ipv6 support
- bridge mode activated
- in Bridge mode unblock the Network settings menu (is in 11.170.61.00.07_mod_beta3)
Firmware:
- ssh server added
- cron added
- added atc program (to execute AT commands)
- added adb server (but it is not automatically started - it can be launched manually from the console)
hello,

can you add B28(700nhz) to network setting?

with regards
nilezon
Początkujący użytkownik forum
Posty: 2
Rejestracja: 2018-04-14, 20:39

Re: Huawei B525s-23a mod firmware.

Post autor: nilezon »

I just bought a B525s-23a.
Could someone please give me a very short instruction how to flash "B525s-23a_UPDATE_11.182.61.00.778_DB.exe" to get the bridge mode etc.
I don't understand much Russian or Polish, even with Google Translate :-(
Do I need to short the pins on the PCB? Then what? Any drivers needed?
Thank you
nilezon
Początkujący użytkownik forum
Posty: 2
Rejestracja: 2018-04-14, 20:39

Re: Huawei B525s-23a mod firmware.

Post autor: nilezon »

nilezon pisze:I just bought a B525s-23a.
Could someone please give me a very short instruction how to flash "B525s-23a_UPDATE_11.182.61.00.778_DB.exe" to get the bridge mode etc.
I don't understand much Russian or Polish, even with Google Translate :-(
Do I need to short the pins on the PCB? Then what? Any drivers needed?
Thank you
Never mind. I successfully updated using the guide by @robertnik in first post. Google Translate to the rescue :-)
Thank you guys!
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

][No_WaY pisze:is this newer or just custom?
http://update.hicloud.com:8180/TDS/data ... 01.673.BIN
In my opinion custom.
can you add B28(700nhz) to network setting?
I can't test this, but try to enter these two commands in the ssh console:

Kod: Zaznacz cały

wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 garysek.podlasie.pl
wget -g -l /app/webroot/WebApp/common/html/mobilenetworksettings.html.gz -r /B525/mobilenetworksettings.html.gz -P 18033 garysek.podlasie.pl
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

garysek pisze:
Mek88 pisze:Thank you so much for your reply... can you help me to write this scripts to do that please?....
I think that should be enough:

Kod: Zaznacz cały

#!/bin/sh

STATUS=`cat /tmp/vpn.status` 2> /dev/null
if (ifconfig | grep P-t-P > /dev/null); then
	if [ "$STATUS" != "UP" ]; then
		echo "UP" > /tmp/vpn.status
		echo 1 > /proc/sys/net/ipv4/ip_forward
	fi
else
	if [ "$STATUS" != "DOWN" ]; then
		echo "DOWN" > /tmp/vpn.status
		echo 0 > /proc/sys/net/ipv4/ip_forward
	fi
fi
All you need to do is give commands in the ssh console:

Kod: Zaznacz cały

wget -g -l /etc/check_vpn.sh -r /B525/check_vpn.sh -P 18033 garysek.podlasie.pl
chmod 755 /etc/check_vpn.sh
echo "*/1 * * * * /system/etc/check_vpn.sh" >> /etc/crontabs/root
cron restart
Just remember that the script checks the vpn tunnel once per minute.
Thank you Man for your help..... But where i have to plug in the script you have write?.... I have not find a menu on the router to write that code
dzejk
Guru bezprzewodowy
Posty: 7187
Rejestracja: 2014-10-17, 14:37
Lokalizacja: internet

Re: Huawei B525s-23a mod firmware.

Post autor: dzejk »

He said it clearly: "All you need to do is give commands in the ssh console".
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

garysek pisze:
][No_WaY pisze:is this newer or just custom?
http://update.hicloud.com:8180/TDS/data ... 01.673.BIN
In my opinion custom.
can you add B28(700nhz) to network setting?
I can't test this, but try to enter these two commands in the ssh console:

Kod: Zaznacz cały

wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 garysek.podlasie.pl
wget -g -l /app/webroot/WebApp/common/html/mobilenetworksettings.html.gz -r /B525/mobilenetworksettings.html.gz -P 18033 garysek.podlasie.pl
what is the password for the ssh? :)
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

dzejk pisze:He said it clearly: "All you need to do is give commands in the ssh console".
Before I have to install the modded firmware... And AFTER is possible to access in the ssh console? Is it correct?
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

@mek88, It obvious that we write about the modified software. SSH works on it only.
][No_WaY pisze:what is the password for the ssh? :)
Didn't you really try to connect without a password?
login: root
no pass
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

garysek pisze:@mek88, It obvious that we write about the modified software. SSH works on it only.
][No_WaY pisze:what is the password for the ssh? :)
Didn't you really try to connect without a password?
login: root
no pass
i have flash the firmware B525s-23a_UPDATE_11.182.61.00.778_DB ....
but i cant enter to the rooter ... what is the password and the login ??? i have try admin admin ... its not work
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

garysek pisze:@mek88, It obvious that we write about the modified software. SSH works on it only.
][No_WaY pisze:what is the password for the ssh? :)
Didn't you really try to connect without a password?
login: root
no pass
thanks :facepalm:
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

][No_WaY pisze:
garysek pisze:
][No_WaY pisze:is this newer or just custom?
http://update.hicloud.com:8180/TDS/data ... 01.673.BIN
In my opinion custom.
can you add B28(700nhz) to network setting?
I can't test this, but try to enter these two commands in the ssh console:

Kod: Zaznacz cały

wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 garysek.podlasie.pl
wget -g -l /app/webroot/WebApp/common/html/mobilenetworksettings.html.gz -r /B525/mobilenetworksettings.html.gz -P 18033 garysek.podlasie.pl
what is the password for the ssh? :)
this is the result from ssh
login as: root
wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 garysek.podlasie.pl <
Please check your Http URL garysek.podlasie.pl!
49|root@p722:/ # wget -g -l /app/webroot/WebApp/common/html/mobilenetworksettings.html.gz -r /B525/mobilenetworksettings.html.gz -P 18033 garysek.podlasie.pl
Please check your Http URL garysek.podlasie.pl!
49|root@p722:/ #


any comment?
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

Does Internet work? DNS OK? Can you ping this host?

Kod: Zaznacz cały

root@p722:/ # wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 garysek.podlasie.pl
The IP is [155.133.42.124]
(null)               100% |**********************************************************************************************************************************|  9108  --:--:-- ETAroot@p722:/ #
Maybe try:

Kod: Zaznacz cały

wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 155.133.42.124
Mek88 pisze: what is the password and the login ??? i have try admin admin ... its not work
Read the post you are quoting.

Edit.
If you haven't reset your settings, the password for webui doesn't change.
After resetting the settings: admin / admin
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

Thank you very much to those who helped me, I managed to insert the modded firmware in my router, to be able to complete 100% my work I ask you if you can add to the VPN section the "" NO INTERNET IF VPN IS NOT CONNECTED "" as the one in the photo
4.jpg
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

i am tryng to put the ssh script .... but it need the password to connect ... i have try everithing ... i have try to no insert any password , it not work
Schermata del 2018-04-18 20-02-59.png
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

I wrote clearly:
login: root
no pass

Who told you about user "ciao"?
Mek88
Początkujący użytkownik forum
Posty: 14
Rejestracja: 2018-04-11, 09:58

Re: Huawei B525s-23a mod firmware.

Post autor: Mek88 »

garysek pisze:I wrote clearly:
login: root
no pass

Who told you about user "ciao"?
sorry :facepalm: :facepalm: :facepalm:

now i want to try the script to disconnect internet if vpn is not connected ....
positivepl
Początkujący użytkownik forum
Posty: 4
Rejestracja: 2018-04-17, 11:24

Re: Huawei B525s-23a mod firmware.

Post autor: positivepl »

Witajcie!
Czy najnowszy sof to: B525s-23a_UPDATE_11.236.01.99.74.BIN,
a najnowszy WEBIU: B525s-23a_Update_WEBUI_11.236.01.00.00_Mod1.1.bin ?
error404
Początkujący użytkownik forum
Posty: 2
Rejestracja: 2018-04-28, 18:11

Re: Huawei B525s-23a mod firmware.

Post autor: error404 »

hi!
there is some compatible OpenVpn firmware for Huawei router who i can install? (similar GL-inet).

thanks
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

If you find, let us know...
dzejk
Guru bezprzewodowy
Posty: 7187
Rejestracja: 2014-10-17, 14:37
Lokalizacja: internet

Re: Huawei B525s-23a mod firmware.

Post autor: dzejk »

Don't know if this help, but I have seen a PPTP VPN Client in E3372h https://translate.googleusercontent.com ... ry51447840
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

@dzejk PPTP i L2TP jak najbardziej działa na B525 (i B528). Konfigurowane z GUI i testowane osobiście, ale tylko testowane - OPENVPN zapewne nawet używane byłoby.
error404
Początkujący użytkownik forum
Posty: 2
Rejestracja: 2018-04-28, 18:11

Re: Huawei B525s-23a mod firmware.

Post autor: error404 »

garysek pisze:@dzejk PPTP i L2TP jak najbardziej działa na B525 (i B528). Konfigurowane z GUI i testowane osobiście, ale tylko testowane - OPENVPN zapewne nawet używane byłoby.
surely l2tp is the best solution to browse with a higher download / upoad, but to be able to manage .Openvpn files would be even more interesting for management.
so for now (that you know) nobody tried to install a firmware on the B525?
angben
Początkujący użytkownik forum
Posty: 4
Rejestracja: 2018-04-22, 13:39

Re: Huawei B525s-23a mod firmware.

Post autor: angben »

hi to all... i have b525 router too and i have installed correctly 1.1 firmware mod. There's a way to down the connection if the vpn stop work?
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

garysek pisze:11.236.01.00.00 - old software, bridge mode doesn't work propably
11.170.61.00.07 - newer software, bridge mode OK
11.182.61.00.778 - the newest Huawei soft I have (I don't know what they changed, but Bridge mode - OK)

WEBUI:
original @rust3028 mod1.1:
@rust3028 pisze:Unlocked sections "USSD", "Contacts" and "SIM-menu" and subsection "VoIP".
Added the display of some parameters in the "Device information" section, organized their auto-update.
Unlocked access to various settings.
Unlocked the configuration of the PPTP VPN client.
Added a full selection of network type and range selection.
In the main menu added the item "?" to quickly jump to the "Device Information" section.
The default language is Russian.
Added the display of the operator name and network technology in the status bar.
Added the display of parameters in the tooltip of the signal level indicator.
Added upload / transfer rate display.
Added the display of numerical values ​​of PLMN and the names of the operators "Yota" and "Fly" in the list of found networks.
Added a system for managing the list of USSD-commands (the commands are stored in the file /data/userdata/ussd/ussd_cmd_list.xml).
I made the autocomplete field "Username" for the convenience of authorization.
The timeout for automatic "unlocking" of the web interface has increased to 20 minutes.
Corrected and added profiles for a number of Russian operators.
Added the ability to specify DNS servers in DHCP settings.
Added the ability to specify DNS servers in the profile settings.
Implemented the installation of an arbitrary IP address of the router.
Added the ability to assign an IP address to the MAC address.
and I added my modifications:
- added and set to default Polish language
- memorizing the PIN (is in 11.170.61.00.07_mod_beta3)
- set time zone to GMT+01:00 (Warsaw)
- displaying the operator name 26034 (Networks!) added
- changing the signal level icons on the main screen
- activating ipv6 support
- bridge mode activated
- in Bridge mode unblock the Network settings menu (is in 11.170.61.00.07_mod_beta3)
Firmware:
- ssh server added
- cron added
- added atc program (to execute AT commands)
- added adb server (but it is not automatically started - it can be launched manually from the console)
hello,
can you please add B28 band to band selection and add ability to disable ipv6 connection?

with regards
garysek
Stały użytkownik forum
Posty: 149
Rejestracja: 2017-04-03, 19:44

Re: Huawei B525s-23a mod firmware.

Post autor: garysek »

angben pisze:hi to all... i have b525 router too and i have installed correctly 1.1 firmware mod. There's a way to down the connection if the vpn stop work?
http://www.bez-kabli.pl/viewtopic.php?f ... 25#p574583
... but you need the firmware version 11.182.61.00.778_DB

Soon:
Obrazek

][No_WaY pisze:can you please add B28 band to band selection

Kod: Zaznacz cały

root@p722:/ # wget -g -l /app/webroot/WebApp/common/js/mobilenetworksettings.js.gz -r /B525/mobilenetworksettings.js.gz -P 18033 garysek.podlasie.pl
The IP is [185.201.112.30]
root@p722:/ # wget -g -l /app/webroot/WebApp/common/html/mobilenetworksettings.html.gz -r /B525/mobilenetworksettings.html.gz -P 18033 garysek.podlasie.pl
The IP is [185.201.112.30]
root@p722:/ #
Obrazek

But I have no way to test if it works correctly...
][No_WaY pisze:and add ability to disable ipv6 connection?
I don't understand. What exactly do you need?
][No_WaY
Użytkownik forum
Posty: 34
Rejestracja: 2018-03-15, 12:37

Re: Huawei B525s-23a mod firmware.

Post autor: ][No_WaY »

][No_WaY pisze:and add ability to disable ipv6 connection?
I don't understand. What exactly do you need?[/quote]

thanks,

I need to stop ipv6 connection trying as it not supported by my network , so it gives failed result in log file , because of that I'm trying to disable it and see if it is the reason behind traffic lag that forces me to reboot the router daily or twice per day!
ODPOWIEDZ