You can change the ilom information of the Exadata compute nodes with the ipmitool tool on the corresponding compute node. The following examples shows how to change network configurations. It is also possible to change other configurations.
Changing NTP Addresses
We can specify two ntp addresses.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | [root@orcldb01 ]# ipmitool sunoem cli "set /SP/clients/ntp/server/1 address=172.16.10.11" Connected. Use ^D to exit. -> set /SP/clients/ntp/server/1 address=172.16.10.11 Set 'address' to '172.16.10.11' -> Session closed Disconnected [root@orcldb01 ]# ipmitool sunoem cli "set /SP/clients/ntp/server/2 address=172.16.10.12" Connected. Use ^D to exit. -> set /SP/clients/ntp/server/1 address=172.16.10.12 Set 'address' to '172.16.10.12' -> Session closed Disconnected |
Changing the DNS Address
1 2 3 4 5 6 7 | [root@orcldb01 ]# ipmitool sunoem cli "set /SP/clients/dns nameserver=172.16.10.10" Connected. Use ^D to exit. -> set /SP/clients/dns nameserver=172.16.10.10 Set 'nameserver' to '172.16.10.10' -> Session closed Disconnected |
Changing IP, gateway, netmask Information
1 2 3 4 5 6 7 8 9 10 | [root@orcldb01 ]# ipmitool sunoem cli "set /SP/network pendingipaddress=172.16.10.1 pendingipgateway=172.16.10.200 pendingipnetmask=255.255.255.0 commitpending=true" Connected. Use ^D to exit. -> set /SP/network pendingipaddress=172.16.10.1 pendingipgateway=172.16.10.200 pendingipnetmask=255.255.255.0 commitpending=true Set 'pendingipaddress' to '172.16.10.1' Set 'pendingipgateway' to '172.16.10.200' Set 'pendingipnetmask' to '255.255.255.0' Set 'commitpending' to 'true' -> Session closed Disconnected |