IPMI (Intelligent Platform Management Interface) is a powerful tool for out-of-band server management. To maximise security and confidentiality, our IPMI interfaces are protected behind a proxy by default.
For resellers and customers with specific management requirements, we offer the option to configure direct, on-demand access to your servers' IPMI interfaces. This guide explains how to request and configure this feature.
If you want direct access to your IPMIs, you can request this by creating a ticket, requesting direct IPMI IP access.
After reviewing your request, we will deliver a transport network, in this example we are using: 10.3.255.0/30
.
To set up your direct IPMI access, you can use the following commands on your machine.
In the examples, we have used the example transport network from step 1, you will have to replace this with your specific details, which we will provide. The example assumes bond0 is the primary interface on the server on which you would like direct access to the IPMIs.
The commands will not make the configuration persistent. In order to make the configuration persistent, it should be configured in the configuration files of your operating system.
# 1. Adding transport network to interface bond0
ip addr add 10.3.255.2/30 dev bond0
# 2. Adding route for IPMIs in DEL
ip route add 10.3.0.0/20 via 10.3.255.1
# 3. Adding route for IPMIs in OUM
ip route add 10.4.0.0/20 via 10.3.255.1
ip route add 10.4.48.0/20 via 10.3.255.1
# 4. setting up iptables to NAT outbound connections towards IPMIs with the interface IP
iptables -t nat -A POSTROUTING -d 10.3.0.0/20,10.4.0.0/20 -o bond0 -j SNAT --to-source 10.3.255.2
In the example we are assuming bond0 is the interface on which the transport network should be configured.
In the example, the provided transport network is: 10.3.255.0/30, this network has 4 ip addresses which will be allocated as following:
Address | Purpose |
10.3.255.0 | Network address |
10.3.255.1 | NovoServe firewall |
10.3.255.2 | Customer application |
10.3.255.3 | Broadcast address |
The allocation will always be the same: NovoServe will take the first usable IP address, the second usable IP address is reserved for the customer.
After completing step 2, your machine will be able to communicate directly with the IPMIs of your machines. Now you can set up your software which requires access to the IPMIs, you can also set up a VPN on your server, so you can connect directly to the IPMIs from your computer.
Connections to our IPMIs are monitored. Any malicious activities will result in direct IPMI access being removed.