事前定義されたipv4.addressを使用してコンテナを作成/起動する方法の例をお探しですか?可能ですか?私は前に試しました
lxc launch image name --config 'eth0.ipv4.address=10.0.2.2'
不明なキーでエラーが発生しましたが?これがLXDの限界だと思いますか?
答え1
私のテストではありませんがlxc launch image name --config
、理想的ではありませんが、次は私が必要なことをしました:
staticipという名前のデフォルト設定ファイルをコピーし、eth0
デバイスを削除します。
LXCN=lxcname
lxc init image name --profile staticip
lxc config device add $LXCN eth0 ipv4.address=10.0.3.2 nictype=bridged parent=virbr1