Changes between Version 64 and Version 65 of Tutorials/Cloud/OSM


Ignore:
Timestamp:
Oct 15, 2020, 6:43:18 PM (4 years ago)
Author:
msherman
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Cloud/OSM

    v64 v65  
    199199IPV4_ADDRS_SAFE_TO_USE=172.16.100.0/24
    200200}}}
     201
     202This snipped will cause openstack to override the dhcp configuration on the control interface, so run this before running stack.sh
     203{{{#!shell-session
     204sudo ip r add default via 10.19.0.1
     205echo "DNS=10.50.0.8 10.50.0.9" | sudo tee -a /etc/systemd/resolved.conf
     206echo "Domains=~." | sudo tee -a /etc/systemd/resolved.conf
     207}}}
     208
     209After stack.sh, run this:
     210{{{#!shell-session
     211openstack security group rule create --proto icmp --dst-port 0 default
     212openstack security group rule create --proto tcp --dst-port 22 default
     213}}}
    201214[[CollapsibleEnd]]
    202215