diff --git a/nsupdate/main/templates/main/includes/tabbed_router_configuration.html b/nsupdate/main/templates/main/includes/tabbed_router_configuration.html
index 53bf65b..8fa8da2 100644
--- a/nsupdate/main/templates/main/includes/tabbed_router_configuration.html
+++ b/nsupdate/main/templates/main/includes/tabbed_router_configuration.html
@@ -153,7 +153,24 @@ password='{{ update_secret|default:"<your secret>" }}'
-
Easy update URLs
+
Update URLs for browser / http user agent use
+ Interactive - will ask for username (give your hostname) and password (give your secret):
+
+ - https://{{ WWW_HOST }}/nic/update (updates hostname to point to remote ipv4 or ipv6 address)
+ - https://{{ WWW_IPV4_HOST }}/nic/update (similar, but ipv4 only)
+ - https://{{ WWW_IPV6_HOST }}/nic/update (similar, but ipv6 only)
+
+ Giving the http basic auth username and password in the URL:
+
+ - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_HOST }}/nic/update (updates hostname to point to remote ipv4 or ipv6 address)
+ - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_IPV4_HOST }}/nic/update (similar, but ipv4 only)
+ - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_IPV6_HOST }}/nic/update (similar, but ipv6 only)
+
+ As above, but manually specifying the IP address:
+
+ - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_HOST }}/nic/update?myip=127.0.0.1 (updates hostname to point to ipv4 127.0.0.1)
+ - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_HOST }}/nic/update?myip=::1 (updates hostname to point to ipv6 ::1)
+
Explanation of parameters:
{% if not host %}
@@ -166,22 +183,5 @@ password='{{ update_secret|default:"<your secret>" }}'
of course you need to use your real public IP instead of that.
- For browser / interactive use (will ask for username (give your hostname) and password (give yoursecret)):
-
- - https://{{ WWW_HOST }}/nic/update (updates hostname to point to remote ipv4 or ipv6 address)
- - https://{{ WWW_IPV4_HOST }}/nic/update (updates hostname to point to remote ipv4 address)
- - https://{{ WWW_IPV6_HOST }}/nic/update (updates hostname to point to remote ipv6 address)
-
- For browser / interactive use (give http basic auth username and password in URL):
-
- - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_HOST }}/nic/update (updates hostname to point to remote ipv4 or ipv6 address)
- - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_IPV4_HOST }}/nic/update (updates hostname to point to remote ipv4 address)
- - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_IPV6_HOST }}/nic/update (updates hostname to point to remote ipv6 address)
-
- For browser / interactive use as above, but manually specifying the IP address:
-
- - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_HOST }}/nic/update?myip=127.0.0.1 (updates hostname to point to ipv4 127.0.0.1)
- - https://{{ host.get_fqdn|default:"<your hostname>" }}:{{ update_secret|default:"<your secret>" }}@{{ WWW_HOST }}/nic/update?myip=::1 (updates hostname to point to ipv6 ::1)
-