我已经使用虚拟机在本地计算机上使用 DevStack 安装了 OpenStack。然后我创建了一个可以使用 SSH 从虚拟机连接的实例。但是当我尝试使用sudo apt update
命令更新系统时,该实例无法连接到互联网并显示以下错误。
Err:1 http://security.ubuntu.com/ubuntu focal-security InRelease
Temporary failure resolving 'security.ubuntu.com'
Err:2 http://archive.ubuntu.com/ubuntu focal InRelease
Temporary failure resolving 'archive.ubuntu.com'
Err:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease
Temporary failure resolving 'archive.ubuntu.com'
Err:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease
Temporary failure resolving 'archive.ubuntu.com'
这是我的local.conf
文件内容。
[[local|localrc]]
ADMIN_PASSWORD=secret
DATABASE_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD
HOST_IP=10.0.2.15
FLOATING_RANGE=192.168.20.0/25
LOGFILE=$DEST/logs/stack.sh.log
LOGDAYS=2
SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f5
SWIFT_REPLICAS=1
SWIFT_DATA_DIR=$DEST/data
#Enable swift services
enable_service s-proxy s-object s-container s-account
#Enable heat services
enable_service h-eng h-api h-api-cfn h-api-cw
#Enable heat plugin
enable_plugin heat https://opendev.org/openstack/heat
#Enable heat dashboard plugin
enable_plugin heat-dashboard https://opendev.org/openstack/heat-dashboard
请问我是否需要在配置文件中添加其他内容或以不同方式配置 VM 的网络?