From Wanos Wiki
Jump to: navigation, search
(Out of band management)
(Out of band management)
Line 18: Line 18:
 
A default route will clash with the in-path address, but a specific route can be added to enable the out of band management from the whole 192.0.0.0/8 network:
 
A default route will clash with the in-path address, but a specific route can be added to enable the out of band management from the whole 192.0.0.0/8 network:
 
<pre>
 
<pre>
route add -net 192.0.0.0 netmask 255.0.0.0 gw 192.168.200.1
+
route add -net 192.0.0.0 netmask 255.0.0.0 gw 192.168.2.1
 
</pre>
 
</pre>

Revision as of 23:08, 19 January 2016

Out of band management

You can enable out of band management by adding the following information at the end of bootsync.sh

Open the bootsync.sh file by:

vi /opt/bootsync.sh

Add the following information to the of the script:

### Out of band management
ifconfig eth2 192.168.2.200 netmask 255.255.255.0 broadcast 192.168.2.255 up

This gives, the third NIC in this example, the management address of 192.168.2.200.

A default route will clash with the in-path address, but a specific route can be added to enable the out of band management from the whole 192.0.0.0/8 network:

route add -net 192.0.0.0 netmask 255.0.0.0 gw 192.168.2.1