Chapter 19 Virtual Domains : Inter-VDOM routing : Example of inter-VDOM routing : Configuring the VDOM links
  
Configuring the VDOM links
To complete the connection between each VDOM and the management VDOM, you need to add the two VDOM links; one pair is the Accounting - management link and the other is for Sales - management link.
When configuring inter-VDOM links, you do not have to assign IP addresses to the links unless you are using advanced features such as dynamic routing that require them. Not assigning IP addresses results in faster configuration, and more available IP addresses on your networks.
If you require them, or if you simply want to assign IP addresses for clarity can do so.
To configure the Accounting and management VDOM link - web-based manager
1. Go to Global > Network > Interfaces.
2. Select the expand arrow to select Create New > VDOM link.
3. Enter the following information, and select OK.
Name
AccountVlnk
Interface #0
Virtual Domain
Accounting
IP/Netmask
0.0.0.0/0.0.0.0
Administrative Access
HTTPS, PING, SSH
Description
The Accounting VDOM side of the link.
Interface #1
Virtual Domain
root
IP/Netmask
0.0.0.0/0.0.0.0
Administrative Access
HTTPS, PING, SSH
Description
The Management VDOM side of the link.
To configure the Accounting and management VDOM link - CLI
config global
config system vdom-link
edit AccountVlnk
next
end
config system interface
edit AccountVlnk0
set vdom Accounting
set ip 0.0.0.0 0.0.0.0
set allowaccess https ping ssh
set description “Accounting side of the VDOM link“
next
edit AccountVlnk1
set vdom root
set ip 0.0.0.0 0.0.0.0
set allowaccess https ping ssh
set description “Management side of the VDOM link“
end
To configure the Sales and management VDOM link - web-based manager
1. Go to Global > Network > Interfaces.
2. Select the expand arrow and select Create New > VDOM link.
3. Enter the following information, and select OK.
Name
SalesVlnk
Interface #0
Virtual Domain
Sales
IP/Netmask
0.0.0.0/0.0.0.0
Administrative Access
HTTPS, PING, SSH
Description
The Sales VDOM side of the link.
Interface #1
Virtual Domain
root
IP/Netmask
0.0.0.0/0.0.0.0
Administrative Access
HTTPS, PING, SSH
Description
The Management VDOM side of the link.
To configure the Sales and management VDOM link - CLI
config global
config system vdom-link
edit SalesVlnk
end
config system interface
edit SalesVlnk0
set vdom Accounting
set ip 0.0.0.0 0.0.0.0
set allowaccess https ping ssh
set description "Sales side of the VDOM link"
next
edit SalesVlnk1
set vdom root
set ip 0.0.0.0 0.0.0.0
set allowaccess https ping ssh
set description "Management side of the VDOM link"
end
end