Zdravim
Na update IP adresy na dns servery pouzivam tento skript
# Define User Variables
:global ddnsuser "meno"
:global ddnspass "heslo"
:global ddnshost "host.ddns.com"
# Define Global Variables
:global ddnsip
:global ddnslastip
:if ([ :typeof $ddnslastip ] = nil ) do={ :global ddnslastip "0" }
:global ddnsinterface
:global ddnssystem ("mt-" . [/system package get system version] )
# Define Local Variables
:local int
# Loop thru interfaces and look for ones containing
# default gateways without routing-marks
#:foreach int in=[/ip route find dst-address=0.0.0.0/0 active=yes ] do={
# :if ([:typeof [/ip route get $int routing-mark ]] != str ) do={
# :global ddnsinterface [/ip route get $int interface]
# }
#}
:global ddnsinterface "pppoe-out1"
# Grab the current IP address on that interface.
:global ddnsip [ /ip address get [/ip address find interface=$ddnsinterface ] address ]
# Did we get an IP address to compare?
:if ([ :typeof $ddnsip ] = nil ) do={
:log info ("DDNS: No ip address present on " . $ddnsinterface . ", please check.")
} else={
:if ($ddnsip != $ddnslastip) do={
:log info "DDNS: Sending UPDATE!"
:log info [ :put [/tool dns-update name=$ddnshost address=[:pick $ddnsip 0 [:find $ddnsip "/"] ] key-name=$ddnsuser key=$ddnspass ] ]
:global ddnslastip $ddnsip
} else={
:log info "DDNS: No update required."
}
}
# End of script
Teraz nastala situacia, ked potrebujem IP adresu updatovat pre 3 dns adresy (vsetky su vytvorene na http://www.changeip.com/ pod jednym uzivatelskym kontom).
Je potrebne vytvorit dalsie skripty, alebo staci nejak upravit tento skript a to premennu ddnshost ?
Prepcte nie som programator, mozno je to pre niekoho banalita ..... vdaka