Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added NESE vl211 to networks.sh #68

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions openstack_commands/network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@ openstack subnet create \
--dns-nameserver 8.8.8.8 \
--dhcp subnet-external

# NESE storage network
openstack network create --provider-network-type vlan --provider-segment 211 --provider-physical-network datacentre --share nese-storage
openstack subnet create \
--network nese-storage \
--subnet-range 10.0.120.0/22 \
--ip-version 4 \
--allocation-pool start=10.0.121.0,end=10.0.123.254 \
naved001 marked this conversation as resolved.
Show resolved Hide resolved
--host-route destination=10.255.116.0/23,gateway=10.0.120.1 \
--host-route destination=10.247.236.0/25,gateway=10.0.120.1 \
--host-route destination=140.247.236.0/25,gateway=10.0.120.1 \
--dhcp subnet-nese-storage

# provisioning router
openstack router create provisionrouter
openstack router add subnet provisionrouter subnet-provisioning
Expand Down