标签:boot netfilter net 内核 python 接口 安装源 tab lte
# 控制节点与计算节点,分别指定静态解析
/etc/hosts
192.168.123.201 controller
192.168.123.202 compute01
# 控制节点与计算节点,分别安装源与客户端
yum install -y centos-release-openstack-stein
yum install -y python-openstackclient
# 配置provider网络接口
cat > /etc/sysconfig/network-scripts/ifcfg-eno2 <<EOF
TYPE=Ethernet
BOOTPROTO=none
DEVICE=eno2
ONBOOT=yes
EOF
systemctl restart network
# 加载内核模块
modprobe br_netfilter
/etc/sysctl.conf
net.bridge.bridge-nf-call-iptables = 1
net.bridge.bridge-nf-call-ip6tables =1
sysctl -p
标签:boot netfilter net 内核 python 接口 安装源 tab lte
原文地址:https://www.cnblogs.com/liujitao79/p/11870640.html