hi, i have 3 node to integrating contrail and openstack. they all on same subnet.
lets give example subnet : 10.90.90.0/24 node pod9-openstack-controller : 10.90.90.10 node pod9-contrail-controller : 10.90.90.20 node pod9-contrail-compute : 10.90.90.30 i follow this tutorial to add external network to openstack. https://github.com/Juniper/contrail-controller/wiki/Simple-Gateway and update the fab files. this is my fab files host1 = '[email protected]' host2 = '[email protected]' host3 = '[email protected]' ext_routers = ['10.90.90.1'] router_asn = 64512 host_build = '[email protected]' env.roledefs = { 'all': [host1, host2, host3], 'cfgm': [host2], 'openstack': [host1], 'control': [host2], 'compute': [host3], 'collector': [host2], 'webui': [host2], 'vgw': [host3], 'database': [host2], 'build': [host_build], 'storage-master': [host2], 'storage-compute': [host3], } env.hostnames = { host1: 'pod9-openstack-controller', host2: 'pod9-contrail-controller', host3: 'pod9-contrail-compute', } env.openstack_admin_password = 'rahasia' env.passwords = { host1: 'root', host2: 'root', host3: 'root', host_build: 'root', } env.ostypes = { host1: 'ubuntu', host2: 'ubuntu', host3: 'ubuntu', } env.vgw = { host3: { 'vgw1': { 'vn':'default-domain:admin:public:public', 'ipam-subnets': ['10.90.90.0/24'] } } } minimum_diskGB = 1 #To disable installing contrail interface rename package env.interface_rename = False okey, run this command and success. cd /opt/contrail/utils/ fab -c fabrc install_contrail but when i run this command. cd /opt/contrail/utils; fab setup_all; cd ~ host3 where i install vgw1 is down, and cant access via ip. i try to check that eth0 ip (10.90.90.30) is lost and its create new interfaces name vgw1 with ip 10.90.90.30. but it cant ping with other. is my vgw configuration wrong? -- *Regards,* *Zufar Dhiyaulhaq*
_______________________________________________ Users mailing list [email protected] http://lists.opencontrail.org/mailman/listinfo/users_lists.opencontrail.org
