canot config the modeme VMG1312-B30A 404 error ??
↧
VDSL IAD VMG Series | VMG1312-B30A
↧
VDSL IAD VMG Series | Re: VMG8324-B10A NAT rule with local routed subnets
A bit of a hack, but this has fixed the problem. It really needs a firmware fix, but I'm not holding my breath

- Code:
#!/usr/bin/env/ruby
require 'rubygems'
require 'net/ssh' #use gem install net-ssh
require 'net/ssh/telnet' #use gem install net-ssh-telnet
#Zyxel VMG8324-B10A manual shows how to set up multiple routed subnets on the internal network
#unfortunately, it then sets up the ip Masquerade rule to only allow the subnet on the interface of the Zyxel.
#
#I run this every 3 minutes using cron on a server to update the iptable NAT MASQUERADE rule to work with multiple subnets
# (this script is imbedded in another script that checks I can ping the zyxel, and the script has locking so only one instance of this code can ever run).
#This is really only needed when the router restarts, but I have no way to know when this happens, short of polling.
#
#An alternate fix would be to double NAT. i.e put a NAT router between the internal subnets and the Zyxel.
@local_ip_range = "192.168.1.0/24" #change this
host = 'vdsl1' #change this, or set it the the ip address of the router.
user = 'admin'
key = '1234' #Change this
vdsl_interface = "ppp2.1"
def fix_nat_rule(line)
line.strip == "2 MASQUERADE all -- #{@local_ip_range} anywhere" ? true:false
end
#Next line limits encryption algorithms so packet size doesn't overflow Zyxel sshd, causing it to disconnect before authentication.
Net::SSH::Transport::Algorithms::ALGORITHMS[:encryption] = %w(aes128-cbc 3des-cbc blowfish-cbc cast128-cbc aes192-cbc aes256-cbc none arcfour128 arcfour256 arcfour aes128-ctr aes192-ctr aes256-ctr cast128-ctr blowfish-ctr 3des-ctr)
begin
Net::SSH.start(host, user, :password => key) do |session|
t = Net::SSH::Telnet.new("Session" => session, "Prompt" => /^.*[>#] .*$/, "Telnetmode" => false)
#Get a shell
t.cmd( 'echo && bash')
#Check ip tables haven't reverted to dumb state, and fix if necessary
@output = ""
t.cmd( 'iptables -t nat -L POSTROUTING --line-numbers') { |o| @output << o } #Found sometimes we get partial lines back.
@output.each_line do |l|
if fix_nat_rule(l)
puts "fixing nat tables"
t.cmd "iptables -t nat -D POSTROUTING 2"
t.cmd "iptables -t nat -A POSTROUTING -o #{vdsl_interface} -j MASQUERADE"
end
end
#Exit sh
t.puts 'exit'
#Exit CLI
t.puts 'exit'
end
rescue Exception => error
puts "Error: #{error}"
end
↧
↧
VDSL IAD VMG Series | VMG8924-B10A SIP Issue
Gents,
I recently adquired ZyXEL VMG8924-B10A.
I configured SIP account to support telephony but does not work. Same configuration/setup in a P-2812HNU-F1 works fine.
My ISP provider Vodafone ensures configuration is right.
Router shows SIP registered OK in the panel leds, and shows an "strange" "OnRegister" status in the Account Status field inside Status window.
I would need to contact to Mr. Wood Huang (firmware developer) to ask for this bug of the firmware related to SIP registration and phone functionallity.
Thanks in advance.
I recently adquired ZyXEL VMG8924-B10A.
I configured SIP account to support telephony but does not work. Same configuration/setup in a P-2812HNU-F1 works fine.
My ISP provider Vodafone ensures configuration is right.
Router shows SIP registered OK in the panel leds, and shows an "strange" "OnRegister" status in the Account Status field inside Status window.
I would need to contact to Mr. Wood Huang (firmware developer) to ask for this bug of the firmware related to SIP registration and phone functionallity.
Thanks in advance.
↧
VDSL IAD VMG Series | VMG 1312 810A
Modem VMG 1312 810A. Had problems with the Wireless Mode only and in all APPLE devices like IPhones and Ipads. Can't see vídeos in YOUTUBE or in NEFLIX. The problem is the internal modem configuration. Would you help me about?
Anybody knows about ?
Cristian
Anybody knows about ?
Cristian
↧
VDSL IAD VMG Series | VMG 8924 when will support ntfs filesystem?
VMG 8924 when will support ntfs filesystem?
and when will released a firmware version without bugs?![Crying or Very Sad :cry:]()
and when will released a firmware version without bugs?

↧
↧
VDSL IAD VMG Series | VMG8324-B10A Ipsec VPN (IKE)
Recently purchased a VMG8324-B10A to replace 1 of 2 x Prestige 652H/HW-31 adsl routers.
The current configuration has a IPSEC VPN Tunnel between the 2 Routers.
I believe that the VPN has been setup correctly on the new router (local) i.e. all settings match existing & remote router, however having trouble getting this to work.
Have even disabled the firewall on both the local and remote devices and still no go.
One of the difficulties I am having in diagnosing the issue is that I can find no way of viewing a log of the IKE transactions on the new router - does anyone know if this is possible.
I am able to see the transactions on the remote router (Prestige 652H)...
>Send Main Mode request to [Correct IP]
>Send:[SA][VID]
>Recv:[SA][VID]
>Send:[KE][NONCE]
>Recv:[KE][NONCE]
>Send:[ID][HASH][NOTIFY:INIT_CONTACT]
>!! IKE Negotiation is in process
>!! IKE Packet Retransmit
>!! IKE Packet Retransmit
>!! IKE Packet Retransmit
>!! IKE Packet Retransmit
>Send:[HASH][DEL]
>Rule [1] Sending IKE request
>Send Main Mode request to [Correct IP]
and cycles without change or success.
Without local logs a little difficult to provide much more information, however I am hoping that someone out there will have had some experience with this model.
Thanks in advance.
The current configuration has a IPSEC VPN Tunnel between the 2 Routers.
I believe that the VPN has been setup correctly on the new router (local) i.e. all settings match existing & remote router, however having trouble getting this to work.
Have even disabled the firewall on both the local and remote devices and still no go.
One of the difficulties I am having in diagnosing the issue is that I can find no way of viewing a log of the IKE transactions on the new router - does anyone know if this is possible.
I am able to see the transactions on the remote router (Prestige 652H)...
>Send Main Mode request to [Correct IP]
>Send:[SA][VID]
>Recv:[SA][VID]
>Send:[KE][NONCE]
>Recv:[KE][NONCE]
>Send:[ID][HASH][NOTIFY:INIT_CONTACT]
>!! IKE Negotiation is in process
>!! IKE Packet Retransmit
>!! IKE Packet Retransmit
>!! IKE Packet Retransmit
>!! IKE Packet Retransmit
>Send:[HASH][DEL]
>Rule [1] Sending IKE request
>Send Main Mode request to [Correct IP]
and cycles without change or success.
Without local logs a little difficult to provide much more information, however I am hoping that someone out there will have had some experience with this model.
Thanks in advance.
↧
VDSL IAD VMG Series | Re: Dynamic DNS not updating on VMG8924
UNBELIEVABLE !!! This sh**** Zyxel!!
This router is buggy and the DDNS section in not well documented.
I discovered after many tries how to use freedns seen that is not documented anywhere! But since I need to use a comma in the hostname field the router boot loop the next time I restart it!!!!!
We want a reply and a fix to this. Someone says that after sending back the router now it is working. We want a firmware fix for this problem and a reply to our questions!
This router is buggy and the DDNS section in not well documented.
I discovered after many tries how to use freedns seen that is not documented anywhere! But since I need to use a comma in the hostname field the router boot loop the next time I restart it!!!!!




We want a reply and a fix to this. Someone says that after sending back the router now it is working. We want a firmware fix for this problem and a reply to our questions!
↧
VDSL IAD VMG Series | Re: I need your help to upgrade a EIRCOM F1000? (zyxel VMG8324)
Try these instructions: Unbranding the ZyXel VMG8324-B10A
↧
VDSL IAD VMG Series | VMG8324-B10A New Firmware needs public release ASAP
Since March Ive been in contact with Zyxel in respect of the VMG8324-10A.
I believe I was the first UK consumer to purchase this router rather than it be supplied via an ISP with their own firmware.
It immediately became apparent that in its shipped state, the original firmware wont allow you to configure & save a VDSL interface. Nor does the quick setup work for UK VDSL.
After conversations with support (who I found quite good) I have been issued with various beta firmwares to resolve any issues I reported. One month later and all is good and the router is rock steady. Im pleased with it - even wrote a review, but now others are also purchasing this router and hitting the same problem being unable to configure it with VDSL2 on the standard firmware.
Users are contacting support only to be told there is no firmware updates. This is rubbish, Ive been through 4 firmware upgrades with you and can publicly confirm that V100AAKL4b2.bin is stable.
People are now sending this router back, because in its default state it wont configure and set up a connection. This is seriously a decent router, for the past 4 weeks Ive been helping others to configure this router and passing on firmwares to get YOUR customers working. I feel like unpaid support, Ive lost track of the number of times Ive had to help others and pass on firmwares because someone at your support wont do so.
This is a damn good router you have here, totally let down by you not publicly releasing V100AAKL4b2.bin and sorting the VDSL config issue.
Im making this post so I dont have to keep repeating myself or responding to emails & PMs and queries on forums.
ZyXEL VMG8324-B10A review .
How to manually configure the VMG8324-B10A for VDSL .
VMG8324-B10A firmware
Jeeze Zyxel, get your ass in gear, do you want to sell this router or do you want UK users having to return it as unfit?
I believe I was the first UK consumer to purchase this router rather than it be supplied via an ISP with their own firmware.
It immediately became apparent that in its shipped state, the original firmware wont allow you to configure & save a VDSL interface. Nor does the quick setup work for UK VDSL.
After conversations with support (who I found quite good) I have been issued with various beta firmwares to resolve any issues I reported. One month later and all is good and the router is rock steady. Im pleased with it - even wrote a review, but now others are also purchasing this router and hitting the same problem being unable to configure it with VDSL2 on the standard firmware.
Users are contacting support only to be told there is no firmware updates. This is rubbish, Ive been through 4 firmware upgrades with you and can publicly confirm that V100AAKL4b2.bin is stable.
People are now sending this router back, because in its default state it wont configure and set up a connection. This is seriously a decent router, for the past 4 weeks Ive been helping others to configure this router and passing on firmwares to get YOUR customers working. I feel like unpaid support, Ive lost track of the number of times Ive had to help others and pass on firmwares because someone at your support wont do so.
This is a damn good router you have here, totally let down by you not publicly releasing V100AAKL4b2.bin and sorting the VDSL config issue.
Im making this post so I dont have to keep repeating myself or responding to emails & PMs and queries on forums.
ZyXEL VMG8324-B10A review .
How to manually configure the VMG8324-B10A for VDSL .
VMG8324-B10A firmware
Jeeze Zyxel, get your ass in gear, do you want to sell this router or do you want UK users having to return it as unfit?
↧
↧
VDSL IAD VMG Series | Configuration VMG8924 VoIP telecom italia
Help me, i no speak english!! I'm Italian ---- Chi mi potrebbe aiutare a configurare il mio VMG8924 con il Voip Telecom, Grazie!!!
↧
VDSL IAD VMG Series | VMG8324 WAN PORT TO INTERNET PROBLEM
Hi,
I have a F1000 (Eircom branded VMG8324.) router firmware 1.00(AAHA.4)D0
Working perfectly using VSDL.
When I attempt to use the WAN port to access the internet via a UPC CISCO cable router the WAN port gets an IP address OK from the UPC router, I can access the gateway on the UPC but cannot access the internet.
I previously had this type of setup working OK with a Draytek router.
ZyXEL WAN settings are:
Mode: Routing
Encapulation: IPoE
Obtain IP address automatically
NAT enable ( without NAT there is no route to UPC gateway )
Layout
XyZELRouter__192.168.3.254
XDSL WAN
192.168.1.23 (via DHCP)
|
| _________ ( Good internet access from here 192.168.101)
| |
UPC_CISCO_CABLE_ROUTER_192.168.1.1
|
|
Cable
c:\devwork\putty>tracert 74.125.24.94
Tracing route to de-in-f94.1e100.net [74.125.24.94]
over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms MitraStar.Home [192.168.3.254]
2 <1 ms <1 ms <1 ms 192.168.1.1
3 * * * Request timed out.
4 * * * Request timed out.
5 * * * Request timed out.
6 * * * Request timed out.
7 * * * Request timed out.
8 * * * Request timed out.
Any ideas?
I have a F1000 (Eircom branded VMG8324.) router firmware 1.00(AAHA.4)D0
Working perfectly using VSDL.
When I attempt to use the WAN port to access the internet via a UPC CISCO cable router the WAN port gets an IP address OK from the UPC router, I can access the gateway on the UPC but cannot access the internet.
I previously had this type of setup working OK with a Draytek router.
ZyXEL WAN settings are:
Mode: Routing
Encapulation: IPoE
Obtain IP address automatically
NAT enable ( without NAT there is no route to UPC gateway )
Layout
XyZELRouter__192.168.3.254
XDSL WAN
192.168.1.23 (via DHCP)
|
| _________ ( Good internet access from here 192.168.101)
| |
UPC_CISCO_CABLE_ROUTER_192.168.1.1
|
|
Cable
c:\devwork\putty>tracert 74.125.24.94
Tracing route to de-in-f94.1e100.net [74.125.24.94]
over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms MitraStar.Home [192.168.3.254]
2 <1 ms <1 ms <1 ms 192.168.1.1
3 * * * Request timed out.
4 * * * Request timed out.
5 * * * Request timed out.
6 * * * Request timed out.
7 * * * Request timed out.
8 * * * Request timed out.
Any ideas?
↧
VDSL IAD VMG Series | VMG8324 DNS entries for DHCP clients
I'm using this router, supplied by my ISP, for a couple of days now. In general i'm happy with it, except for one annoying issues: I can't access any of my (W)LAN devices by hostname. I know you can manually add DNS entries in the web-interface but this is a hassle since it requires a FQDN and static leases. My previous router would simply add DNS entries using the hostname supplied by the client in it's DHCP request (handled by dnsmasq).
On the Zyxel router, DNS is also handled by dnsmasq, but for some reason DHCP isn't enabled in dnsmasq but a separate udhcpd process is managing DHCP instead. Also I found out if I manually edit hosts files I can add aliases and simple hostnames (instead of fully-qualified including domain name). But off course these changes are lost on reboot.
Anyone have a clean solution to automatically add DNS entries for DHCP clients on this router?
On the Zyxel router, DNS is also handled by dnsmasq, but for some reason DHCP isn't enabled in dnsmasq but a separate udhcpd process is managing DHCP instead. Also I found out if I manually edit hosts files I can add aliases and simple hostnames (instead of fully-qualified including domain name). But off course these changes are lost on reboot.
Anyone have a clean solution to automatically add DNS entries for DHCP clients on this router?
↧
VDSL IAD VMG Series | Intrusion
A couple of hours after installing my new Zyxel , the syslog is full of
This never happened with my previous router.
kernel: Intrusion -> IN=ppp1.1 OUT= MAC= SRC=109.120.181.79 DST=90.180.51.127 LEN=40 TOS=0x00 PREC=0x00 TTL=249 PROTO=TCP SPT=58772 DPT=1234 WINDOW=1024 RES=0x00 SYN URGP=0 MARK=0x8000000 234
This never happened with my previous router.
↧
↧
VDSL IAD VMG Series | Re: ssh and ftp
I do not understand your answer. Of course I have an ssh client / how else would I try. And I do not need gene6 on line test. I know how to access ftp server - the problem is that the password for admin does not work. It turns out that even my country support "technical expert" does not know .
↧
VDSL IAD VMG Series | portforwarding: 80 and 443 already in use
Dear members,
i received a Zyxel VMG8324-B10A from my ISP and now i want to create portforwarding to my NAS.
I want to forward port 80 and 443 to a local IP address 192.168.1.250.
When i create the forwarding in the NAT i get the message: "Since TCP port 80 is used. The router WEB server port will be moved to 8080."
This also is the same problem with port 443.
At my knowlegde i did not use these ports in any other option of the router.
Anyone an idea?
Kind regards Bart
i received a Zyxel VMG8324-B10A from my ISP and now i want to create portforwarding to my NAS.
I want to forward port 80 and 443 to a local IP address 192.168.1.250.
When i create the forwarding in the NAT i get the message: "Since TCP port 80 is used. The router WEB server port will be moved to 8080."
This also is the same problem with port 443.
At my knowlegde i did not use these ports in any other option of the router.
Anyone an idea?
Kind regards Bart
↧
VDSL IAD VMG Series | VMG1312-B10A can't obtain address from ISP
Dear all,
I have trouble with VMG1312-B10A on VDSL line and my new ISP (wind greece).
DSL line working fine, I can connect to the internet normally using windows pppoe and my dsl router in bridge mode.
But when I setup broadband connection in routing mode, my router can't obtain ip address from ISP and nothing work in this case.
ISP confirms that with the line is everything OK but IP is not assigned.
this happens with default firmware and with upgraded too.
Current Firmware Version: 1.00(AABQ.0) & 1.00(AAJZ.3)
I have same VMG1312-B10A but connected to another ISP and everything working normally there.
Any Idea how to troubleshoot this?
Best Regards.
Dimitris
I have trouble with VMG1312-B10A on VDSL line and my new ISP (wind greece).
DSL line working fine, I can connect to the internet normally using windows pppoe and my dsl router in bridge mode.
But when I setup broadband connection in routing mode, my router can't obtain ip address from ISP and nothing work in this case.
ISP confirms that with the line is everything OK but IP is not assigned.
this happens with default firmware and with upgraded too.
Current Firmware Version: 1.00(AABQ.0) & 1.00(AAJZ.3)
I have same VMG1312-B10A but connected to another ISP and everything working normally there.
Any Idea how to troubleshoot this?
Best Regards.
Dimitris
↧
VDSL IAD VMG Series | Internet traffic light always flashing
Hi,
I recently bought a VMG8924-B10A, which seems to be working fine. However, the internet traffic light (the world icon) flashes constantly, even when there is no network traffic that I am aware of. Is this normal for the router?
Simon
I recently bought a VMG8924-B10A, which seems to be working fine. However, the internet traffic light (the world icon) flashes constantly, even when there is no network traffic that I am aware of. Is this normal for the router?
Simon
↧
↧
VDSL IAD VMG Series | Re: VMG1312-B10A can't access from SSH
No one use SSH protocol or no one have this unit ?
Looking from google about this issue, it appears to be the dropbear version 0.46 build in firmware.
There are any way to update dropbear using ftp or telnet service?
Anyone can help me?
Regards.
Looking from google about this issue, it appears to be the dropbear version 0.46 build in firmware.
There are any way to update dropbear using ftp or telnet service?
Anyone can help me?
Regards.
↧
VDSL IAD VMG Series | Re: VMG1312-B30b firmware
Thanks,
Regarding the A/B letters they are referring to annex A and annex b xdsl protocol. If I am right bought of them are using bcm chipset. How about lashing it with a VMG1312-B10a firmware?
Regarding the A/B letters they are referring to annex A and annex b xdsl protocol. If I am right bought of them are using bcm chipset. How about lashing it with a VMG1312-B10a firmware?
↧
VDSL IAD VMG Series | VM3312-B10A Firewall Settings
model number VM3312-B10A
only one user to deny all port ,same user only 80 port to permit ,how can i configuration the modem firewall ?
only one user to deny all port ,same user only 80 port to permit ,how can i configuration the modem firewall ?
↧