I have two WANs configured with the wizard. Also, dynamic DNS for each using dyndns.org.
ubnt@ubnt# show service dns dynamic
interface pppoe1 {
service dyndns {
host-name dns1.dyndns.org
login mylogin
password ******
}
web dyndns
}
interface pppoe2 {
service dyndns {
host-name dns2.dyndns.org
login mylogin
password ******
}
web dyndns
}
In this case, dyndns updates intermittently with the address of pppoe1 using dns2.dyndns.org and vice versa.
To solve this...
ubnt@ubnt:~$ configure
[edit]
ubnt@ubnt# delete service dns dynamic interface pppoe1 web dyndns
[edit]
ubnt@ubnt# delete service dns dynamic interface pppoe2 web dyndns
[edit]
ubnt@ubnt# set service dns dynamic interface pppoe1 service dyndns server members.dyndns.org
[edit]
ubnt@ubnt# set service dns dynamic interface pppoe2 service dyndns server members.dyndns.org
[edit]
ubnt@ubnt# commit
[edit]
ubnt@ubnt# save
Saving configuration to '/config/config.boot'...
Done
[edit]
To confirm::::
ubnt@ubnt# show service dns dynamic
interface pppoe1 {
service dyndns {
host-name dns1.dyndns.org
login mylogin
password ******
server members.dyndns.org
}
}
interface pppoe2 {
service dyndns {
host-name dns2.dyndns.org
login mylogin
password ******
server members.dyndns.org
}
}