到目前为止,我已经完成了我的单服务器openstack安装。但现在。我仍然无法设置网络设置。以下是我目前的网络设置:
到目前为止,我试图使用我的公共ip建立公共网络,但没有结果。我应该如何设置我的网络,这样我才能从我的公共ip获得浮动ip。假设我的公共ip是192.168.1.0/24,我想给出浮动ip,范围从192.168.1.100到192.168.1.200。
发布于 2018-08-31 01:01:15
在OpenStack设置期间和openstack内部,您需要将公共网络配置为“提供者网络”,您需要将网络配置为外部网络。
发布于 2019-12-22 15:32:27
代理arp和iptables怎么办?类似于:
echo 1 > /proc/sys/net/ipv4/conf/ens160/proxy_arp
iptables -t nat -A POSTROUTING -o ens160 -j MASQUERADE
https://stackoverflow.com/questions/52074209
复制相似问题