Workaround
Well .. I can live with that due to blog of Sandro Mathys
cat ./myfile.txt
#cloud-config
password: mysecret
chpasswd: { expire: False }
ssh_pwauth: True
fedora's password will be "mysecret" via VNC connection
[root@ip-192-169-142-57 ~(keystone_admin)]$ nova boot --flavor 2 --user-data=./myfile.txt \
--image fae71063-3ddb-4771-b464-7c8facae3e95 VF19QW
+--------------------------------------+--------------------------------------+
| Property | Value |
+--------------------------------------+--------------------------------------+
| OS-EXT-STS:task_state | scheduling |
| image | Fedora 19 x86_64 |
| OS-EXT-STS:vm_state | building |
| OS-EXT-SRV-ATTR:instance_name | instance-00000016 |
| OS-SRV-USG:launched_at | None |
| flavor | m1.small |
| id | 58da990b-a5c2-48fc-a1e9-09e4f5fa8529 |
| security_groups | [{u'name': u'default'}] |
| user_id | ae5d131493904e89b6175940af592b34 |
| OS-DCF:diskConfig | MANUAL |
| accessIPv4 | |
| accessIPv6 | |
| progress | 0 |
| OS-EXT-STS:power_state | 0 |
| OS-EXT-AZ:availability_zone | nova |
| config_drive | |
| status | BUILD |
| updated | 2014-01-22T16:00:04Z |
| hostId | |
| OS-EXT-SRV-ATTR:host | None |
| OS-SRV-USG:terminated_at | None |
| key_name | None |
| OS-EXT-SRV-ATTR:hypervisor_hostname | None |
| name | VF19QW |
| adminPass | bmi3iX4AHCM2 |
| tenant_id | 751cda6ede504ccd9562edd233b32b34 |
| created | 2014-01-22T16:00:04Z |
| os-extended-volumes:volumes_attached | [] |
| metadata | {} |
+--------------------------------------+--------------------------------------+
[root@ip-192-169-142-57 ~(keystone_admin)]$ nova list
+--------------------------------------+-----------+-----------+------------+-------------+---------------------------------+
| ID | Name | Status | Task State | Power State | Networks |
+--------------------------------------+-----------+-----------+------------+-------------+---------------------------------+
| 1155abf9-365b-4d2b-8655-f27bb5989f84 | Cirros311 | SUSPENDED | None | Shutdown | int01=10.0.0.2, 192.169.142.107 |
| abe6528c-fe1a-47d6-96b5-deb61164c833 | Cirros315 | ACTIVE | None | Running | int01=10.0.0.5, 192.169.142.106 |
| 58da990b-a5c2-48fc-a1e9-09e4f5fa8529 | VF19QW | ACTIVE | None | Running | int01=10.0.0.4 |
+--------------------------------------+-----------+-----------+------------+-------------+---------------------------------
+
[root@ip-192-169-142-57 ~(keystone_admin)]$ neutron port-list --device-id 58da990b-a5c2-48fc-a1e9-09e4f5fa8529
+--------------------------------------+------+-------------------+---------------------------------------------------------------------------------+
| id | name | mac_address | fixed_ips |
+--------------------------------------+------+-------------------+---------------------------------------------------------------------------------+
| 6554364f-64f2-4fa1-8343-61ffbf2715d3 | | fa:16:3e:40:0e:3a | {"subnet_id": "0342ee64-e844-48ce-88cb-cd721ef8664a", "ip_address": "10.0.0.4"} |
+--------------------------------------+------+-------------------+---------------------------------------------------------------------------------+
[root@ip-192-169-142-57 ~(keystone_admin)]$ neutron floatingip-create ext
Created a new floatingip:

[root@ip-192-169-142-57 ~(keystone_admin)]$ neutron floatingip-associate 8f9fdc2b-00b6-42e3-9e72-4bac099d3ce2 6554364f-64f2-4fa1-8343-61ffbf2715d3
Associated floatingip 8f9fdc2b-00b6-42e3-9e72-4bac099d3ce2
[root@ip-192-169-142-57 ~(keystone_admin)]$ ping 192.169.142.108
PING 192.169.142.108 (192.169.142.108) 56(84) bytes of data.
64 bytes from 192.169.142.108: icmp_seq=1 ttl=63 time=19.5 ms
Solution to make ssh working from Controller to instance running on Compute (192.168.1.108) :-
On cloud instance issue as root :-
$ ifconfig eth0 mtu 1400 up
Then from Controller (192.168.1.127)
[root@dfw02 ~(keystone_admin)]$ ssh fedora@192.168.1.108
fedora@192.168.1.108's password:
Last login: Tue Jan 30 10:53:22 2014 from 192.168.1.127
[fedora@vf19vlgl ~]$ ifconfig
eth0: flags=4163 mtu 1400
inet 10.0.0.6 netmask 255.255.255.0 broadcast 10.0.0.255
inet6 fe80::f816:3eff:fe4b:9790 prefixlen 64 scopeid 0x20
ether fa:16:3e:4b:97:90 txqueuelen 1000 (Ethernet)
RX packets 15986 bytes 19358438 (18.4 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 4907 bytes 490901 (479.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73 mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 0 (Local Loopback)
RX packets 14 bytes 1400 (1.3 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 14 bytes 1400 (1.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
virbr0: flags=4099 mtu 1500
inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255
ether 0e:4f:43:b0:f9:c3 txqueuelen 0 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
↧