전체 구성을 XML 파일로 내보내려면 ilomconfig export config 명령을 사용합니다.
ilomconfig export config --xmlfile=filename.xml
여기서 filename.xml은 ILOM 구성을 내보내는 대상 파일을 나타냅니다.
예:
# ilomconfig export config --xmlfile=config.xml Do you want to enter a passphrase to back up sensitive data? [y/n]? y Enter passphrase: ******** Wrote backup of ILOM configuration to 'config.xml'.
echo passphrase | ilomconfig export config --xmlfile=filename.xml
여기서 passphrase는 사용할 문장암호입니다.
또는
cat file_with_passphrase | ilomconfig export config --xmlfile=filename.xml
여기서 file_with_passphrase는 문장암호가 들어 있는 파일입니다.
예:
# echo passphrase | ilomconfig export config --xmlfile=config.xml Enter passphrase: ******** Wrote backup of ILOM configuration to 'config.xml'.
문장암호는 명령줄을 통해 자동으로 제공됩니다.
ilomconfig export config --xmlfile=filename.xml -y
여기서 filename.xml은 ILOM 구성을 내보내는 대상 파일을 나타냅니다.
예:
# ilomconfig export config --xmlfile=config.xml -y Wrote backup of ILOM configuration to 'config.xml'.
이 옵션은 문장암호를 사용하지 않고 ILOM 구성을 내보냅니다.