Management Interfaces
Management interfaces are used in order to provide access to management user interfaces. NVIDIA switches support out-of-band (OOB) dedicated interfaces (e.g. mgmt0, mgmt1) and in-band dedicated interfaces. In addition, most systems feature a serial port that provides access to the CLI only.On systems with two OOB management ports, both of them may be configured on the same VLAN if needed. In this case, ARP replies to the IP of those management interfaces is answered from either of them.
If the system was set during initialization to obtain dynamic IP addresses through DHCP and you wish to switch to static assignments, perform the following steps:
Enter Config configuration mode. Run:
switch
> enableswitch
# configure terminalDisable setting IP addresses using the DHCP using the following command:
switch
(config) # nointerface
<ifname> dhcpDefine your interfaces statically using the following command:
switch
(config) #interface
<ifname> ip address <IP address> <netmask>
Enable IPv6 on this interface. Run:
switch
(config) #interface
mgmt0 ipv6 enableSet the IPv6 address to be configured automatically. Run:
switch
(config) #interface
mgmt0 ipv6 address autoconfigVerify the IPv6 address is configured correctly. Run:
switch
(config) # show interfaces mgmt0 brief
DHCP is used for automatic retrieval of management IP addresses.
For all other systems (and software versions) DHCP is disabled by default.
If a user connects through SSH, runs the wizard and turns off DHCP, the connection is immediately terminated as the management interface loses its IP address.
<localhost># ssh admin@<ip-address>
NVIDIA MLNX-OS Switch Management
Password:
NVIDIA switch
NVIDIA configuration wizard
Do you want to use the wizard for
initial configuration? yes
Step 1
: Hostname? [my-switch
]
Step 2
: Use DHCP on mgmt0 interface
? [yes] no
<localhost>#
In this case the serial connection should be used.
To configure manually the default gateway, use the “ip route” command, with “0.0.0.0” as prefix and mask. The next-hop address must be within the range of one of the IP interfaces on the system.
switch
(config)# ip route 0.0
.0.0
0.0
.0.0
10.10
.0.2
switch
(config)# show ip route
Destination Mask Gateway Interface Source Distance/Metric
default
0.0
.0.0
10.10
.0.2
mgmt0 static
0
/0
10.10
.0.0
255.255
.254.0
0.0
.0.0
mgmt0 direct 0
/0
This feature, also known as the DHCP Client Option 12, is enabled by default and assigns the switch system a hostname via DHCP as long as network manager configures hostname to the management interfaces’ (i.e. mgmt0, mgmt1) MAC address. If a network manager configures the hostname manually through any of the user interfaces, the hostname is not retrieved from the DHCP server.
To enable fetching hostname from DHCP server, run:
switch
(config interface
mgmt0) # dhcp hostname
To disable fetching hostname from DHCP server, run:
switch
(config interface
mgmt0) # no dhcp hostname
Getting the hostname through DHCP is enable by default and will change the switch hostname if the hostname is not set by the user. Therefore, if a switch is part of an HA cluster the user would need to make sure the HA master has the same HA node names as the DHCP server.