File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,10 @@ At this point, you can access the horizon dasboard at `kolla_external_vip_addres
61
61
* create public network and subnet
62
62
```
63
63
openstack network create --external --default --provider-physical-network physnet1 --provider-network-type flat public
64
- openstack subnet create --no-dhcp --network public --subnet-range
64
+ openstack subnet create --no-dhcp --network public \
65
+ --subnet-range 172.18.200.0/24 \
66
+ --allocation-pool start=172.18.200.100,end=172.18.200.200 \
67
+ public
65
68
```
66
69
* create calico network and subnet
67
70
```
@@ -70,16 +73,7 @@ At this point, you can access the horizon dasboard at `kolla_external_vip_addres
70
73
```
71
74
* create router
72
75
```
73
- openstack router create public --external --ha public
76
+ openstack router create public \
77
+ --external-gateway public
74
78
openstack router add subnet public caliconet
75
79
```
76
-
77
- * add veth-pair systemd netdev
78
- ```
79
- [NetDev]
80
- Name=veth-cali0
81
- Kind=veth
82
- [Peer]
83
- Name=veth-caliN
84
- ```
85
- * add host ip config to handle routing
You can’t perform that action at this time.
0 commit comments