Interfaces in non-management VDOMs as the source IP address of the DNS conditional forwarding server
Interfaces that are in non-management VDOMs can be the source IP address of the DNS conditional forwarding server.
-
When
vdom-dnsis enabled in a VDOM, only the IP addresses of interfaces in that VDOM can be configured as thesource-ip. -
When
vdom-dnsis disabled (default), only the IP address of interfaces in the management VDOM can be configured as thesource-ip.
For more information on VDOM DNS, see Important DNS CLI commands.
In this example:
-
vdom1is a non-management VDOM -
port8is assigned tovdom1and has IP address 13.13.13.13 -
port1is assigned to the management VDOM (root) and has IP address 172.16.200.1
To configure the interfaces:
config global
config system interface
edit "port8"
set vdom "vdom1"
set ip 13.13.13.13 255.255.255.0
next
edit "port1"
set vdom "root"
set ip 172.16.200.1 255.255.255.0
next
end
end
To test configuring a source IP address when vdom-dns is disabled:
config vdom
edit vdom1
config system vdom-dns
set vdom-dns disable
end
next
end
-
port8cannot be used as the source IP address in a DNS database because it is assigned tovdom1, and not to a management VDOM:config vdom edit vdom1 config system dns-database edit "1" set source-ip 13.13.13.13 13.13.13.13 does not match any interface ip in vdom root. node_check_object fail! for source-ip 13.13.13.13 -
port1can be used as the source IP address in a DNS database because it is assigned to the management VDOM:config vdom edit vdom1 config system dns-database edit "1" set source-ip 172.16.200.1 next end next end
To test configuring a source IP address when vdom-dns is enabled:
config vdom
edit vdom1
config system vdom-dns
set vdom-dns enable
end
next
end
-
port8can be used as the source IP address in a DNS database because it is assigned to thevdom1:config vdom edit vdom1 config system dns-database edit "1" set source-ip 13.13.13.13 next end next end -
port1cannot be used as the source IP address in a DNS database because it is assigned to the management VDOM, and not tovdom1:config vdom edit vdom1 config system dns-database edit "1" set source-ip 172.16.200.1 172.16.200.1 does not match any interface ip in vdom vdom1. node_check_object fail! for source-ip 172.16.200.1