Skip to content

Commit 4865e28

Browse files
committed
update readme
1 parent 5bc5453 commit 4865e28

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

README.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ At this point, you can access the horizon dasboard at `kolla_external_vip_addres
6161
* create public network and subnet
6262
```
6363
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
6568
```
6669
* create calico network and subnet
6770
```
@@ -70,16 +73,7 @@ At this point, you can access the horizon dasboard at `kolla_external_vip_addres
7073
```
7174
* create router
7275
```
73-
openstack router create public --external --ha public
76+
openstack router create public \
77+
--external-gateway public
7478
openstack router add subnet public caliconet
7579
```
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

0 commit comments

Comments
 (0)