[Openstack] Cant ping private or floating IP

Chathura M. Sarathchandra Magurawalage 77.chathura at gmail.com
Fri Feb 15 10:42:53 UTC 2013


Hello guys,

I have tried to ping from the host of the VM but it does not work.
I have enabled PING and SSH access to the VMs in the default security
policy.

*nova list*
+--------------------------------------+--------+--------+-------------------+
| ID                                   | Name   | Status | Networks
 |
+--------------------------------------+--------+--------+-------------------+
| 2f051914-e025-4a3e-9f7d-45808ee6c0c0 | master | ACTIVE |
demo-net=10.5.5.3 |
+--------------------------------------+--------+--------+-------------------+
root at controller:~# nova show 2f051914-e025-4a3e-9f7d-45808ee6c0c0
+-------------------------------------+----------------------------------------------------------+
| Property                            | Value
                     |
+-------------------------------------+----------------------------------------------------------+
| OS-DCF:diskConfig                   | MANUAL
                      |
| OS-EXT-SRV-ATTR:host                | computenode
                          |
| OS-EXT-SRV-ATTR:hypervisor_hostname | computenode
                          |
| OS-EXT-SRV-ATTR:instance_name       | instance-00000019
                     |
| OS-EXT-STS:power_state              | 1
                     |
| OS-EXT-STS:task_state               | None
                      |
| OS-EXT-STS:vm_state                 | active
                      |
| accessIPv4                          |
                     |
| accessIPv6                          |
                     |
| config_drive                        |
                     |
| created                             | 2013-02-14T22:30:47Z
                      |
| demo-net network                    | 10.5.5.3
                      |
| flavor                              | m1.small (2)
                      |
| hostId                              |
8f838933e3ceb3fe049cc648be61162eb203ff205ddbc53d4a89485f |
| id                                  |
2f051914-e025-4a3e-9f7d-45808ee6c0c0                     |
| image                               | Ubuntu
(9a2be94f-35a9-4ac6-a3f1-a16c8bcd1b59)            |
| key_name                            | mykey
                     |
| metadata                            | {}
                      |
| name                                | master
                      |
| progress                            | 0
                     |
| security_groups                     | [{u'name': u'default'}]
                     |
| status                              | ACTIVE
                      |
| tenant_id                           | 3ee0315f4349489b8f6faa0bd1544986
                      |
| updated                             | 2013-02-14T22:30:59Z
                      |
| user_id                             | cae2f425a6464e42a617a45154be4171
                      |
+-------------------------------------+----------------------------------------------------------+
*root at controller:~# nova secgroup-list-rules default*
+-------------+-----------+---------+-----------+--------------+
| IP Protocol | From Port | To Port | IP Range  | Source Group |
+-------------+-----------+---------+-----------+--------------+
| icmp        | -1        | -1      | 0.0.0.0/0 |              |
| tcp         | 22        | 22      | 0.0.0.0/0 |              |
+-------------+-----------+---------+-----------+--------------+



How can I log into the VM from VNC? What are the credentials?

nova-api-metadata is running fine in the compute node.


*Controller: nova.conf*
[DEFAULT]

# MySQL Connection #

sql_connection=mysql://nova:password@192.168.2.225/nova

# nova-scheduler #

rabbit_password=password
scheduler_driver=nova.scheduler.simple.SimpleScheduler

# nova-api #

cc_host=192.168.2.225
auth_strategy=keystone
s3_host=192.168.2.225
ec2_host=192.168.2.225
nova_url=http://192.168.2.225:8774/v1.1/
ec2_url=http://192.168.2.225:8773/services/Cloud
keystone_ec2_url=http://192.168.2.225:5000/v2.0/ec2tokens
api_paste_config=/etc/nova/api-paste.ini
allow_admin_api=true
use_deprecated_auth=false
ec2_private_dns_show_ip=True
dmz_cidr=169.254.169.254/32
ec2_dmz_host=192.168.2.225
metadata_host=192.168.2.225
metadata_listen=0.0.0.0
enabled_apis=ec2,osapi_compute,metadata

# Networking #

network_api_class=nova.network.quantumv2.api.API
quantum_url=http://192.168.2.225:9696
quantum_auth_strategy=keystone
quantum_admin_tenant_name=service
quantum_admin_username=quantum
quantum_admin_password=password
quantum_admin_auth_url=http://192.168.2.225:35357/v2.0
libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver
linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
# Cinder #

volume_api_class=nova.volume.cinder.API

# Glance #

glance_api_servers=192.168.2.225:9292
image_service=nova.image.glance.GlanceImageService

# novnc #

novnc_enable=true
novncproxy_base_url=http://localhost:6080/vnc_auto.html
vncserver_proxyclient_address=192.168.2.225
vncserver_listen=0.0.0.0

# Misc #

logdir=/var/log/nova
state_path=/var/lib/nova
lock_path=/var/lock/nova
root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
verbose=true

multi_host=True


So about metadata:

I cant see a rule in iptables for 192.168.2.225:35357

*root at computenode:~# iptables -L -n*
Chain INPUT (policy ACCEPT)
target     prot opt source               destination
nova-compute-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     47   --  0.0.0.0/0            0.0.0.0/0

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination
nova-filter-top  all  --  0.0.0.0/0            0.0.0.0/0
nova-compute-FORWARD  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-FORWARD  all  --  0.0.0.0/0            0.0.0.0/0

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
nova-filter-top  all  --  0.0.0.0/0            0.0.0.0/0
nova-compute-OUTPUT  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-OUTPUT  all  --  0.0.0.0/0            0.0.0.0/0

Chain nova-api-metadat-FORWARD (1 references)
target     prot opt source               destination

Chain nova-api-metadat-INPUT (1 references)
target     prot opt source               destination
ACCEPT     tcp  --  0.0.0.0/0            10.10.10.1           tcp dpt:8775

Chain nova-api-metadat-OUTPUT (1 references)
target     prot opt source               destination

Chain nova-api-metadat-local (1 references)
target     prot opt source               destination

Chain nova-compute-FORWARD (1 references)
target     prot opt source               destination

Chain nova-compute-INPUT (1 references)
target     prot opt source               destination

Chain nova-compute-OUTPUT (1 references)
target     prot opt source               destination

Chain nova-compute-inst-25 (1 references)
target     prot opt source               destination
DROP       all  --  0.0.0.0/0            0.0.0.0/0            state INVALID
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0            state
RELATED,ESTABLISHED
nova-compute-provider  all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     udp  --  10.5.5.2             0.0.0.0/0            udp spt:67
dpt:68
ACCEPT     all  --  10.5.5.0/24          0.0.0.0/0           root at cronus:~#
iptables -L -n
Chain INPUT (policy ACCEPT)
target     prot opt source               destination
nova-compute-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     47   --  0.0.0.0/0            0.0.0.0/0

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination
nova-filter-top  all  --  0.0.0.0/0            0.0.0.0/0
nova-compute-FORWARD  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-FORWARD  all  --  0.0.0.0/0            0.0.0.0/0

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
nova-filter-top  all  --  0.0.0.0/0            0.0.0.0/0
nova-compute-OUTPUT  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-OUTPUT  all  --  0.0.0.0/0            0.0.0.0/0

Chain nova-api-metadat-FORWARD (1 references)
target     prot opt source               destination

Chain nova-api-metadat-INPUT (1 references)
target     prot opt source               destination
ACCEPT     tcp  --  0.0.0.0/0            10.10.10.1           tcp dpt:8775

Chain nova-api-metadat-OUTPUT (1 references)
target     prot opt source               destination

Chain nova-api-metadat-local (1 references)
target     prot opt source               destination

Chain nova-compute-FORWARD (1 references)
target     prot opt source               destination

Chain nova-compute-INPUT (1 references)
target     prot opt source               destination

Chain nova-compute-OUTPUT (1 references)
target     prot opt source               destination

Chain nova-compute-inst-25 (1 references)
target     prot opt source               destination
DROP       all  --  0.0.0.0/0            0.0.0.0/0            state INVALID
ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0            state
RELATED,ESTABLISHED
nova-compute-provider  all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     udp  --  10.5.5.2             0.0.0.0/0            udp spt:67
dpt:68
ACCEPT     all  --  10.5.5.0/24          0.0.0.0/0
ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0
ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:22
nova-compute-sg-fallback  all  --  0.0.0.0/0            0.0.0.0/0

Chain nova-compute-local (1 references)
target     prot opt source               destination
nova-compute-inst-25  all  --  0.0.0.0/0            10.5.5.3

Chain nova-compute-provider (1 references)
target     prot opt source               destination

Chain nova-compute-sg-fallback (1 references)
target     prot opt source               destination
DROP       all  --  0.0.0.0/0            0.0.0.0/0

Chain nova-filter-top (2 references)
target     prot opt source               destination
nova-compute-local  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-local  all  --  0.0.0.0/0            0.0.0.0/0
ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0
ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:22
nova-compute-sg-fallback  all  --  0.0.0.0/0            0.0.0.0/0

Chain nova-compute-local (1 references)
target     prot opt source               destination
nova-compute-inst-25  all  --  0.0.0.0/0            10.5.5.3

Chain nova-compute-provider (1 references)
target     prot opt source               destination

Chain nova-compute-sg-fallback (1 references)
target     prot opt source               destination
DROP       all  --  0.0.0.0/0            0.0.0.0/0

Chain nova-filter-top (2 references)
target     prot opt source               destination
nova-compute-local  all  --  0.0.0.0/0            0.0.0.0/0
nova-api-metadat-local  all  --  0.0.0.0/0            0.0.0.0/0

Not sure what is wrong..

Thanks for your help.

-----------------------------------------------------------------------------------------------------------------------------
Chathura Madhusanka Sarathchandra Magurawalage.
1NW.2.1, Desk 2
School of Computer Science and Electronic Engineering
University Of Essex
United Kingdom.

Email: csarata at essex.ac.uk
          chathura.sarathchandra at gmail.com <77.chathura at gmail.com>
          77.chathura at gmail.com


On 15 February 2013 09:59, Guilherme Russi <luisguilherme.cr at gmail.com>wrote:

> Ok, I'll check the configs, try the issue, and I report here.
>
> Thank you all.
>
> Guilherme.
>
>
> 2013/2/15 JuanFra Rodriguez Cardoso <juanfra.rodriguez.cardoso at gmail.com>
>
>> Hi Guilherme:
>>
>> Try to issue: 'dhclient eth1' in your VM (from VNC console). It could be
>> problem with net rules in udev.
>>
>>
>> Regards,
>> JuanFra
>>
>>
>> 2013/2/15 Guilherme Russi <luisguilherme.cr at gmail.com>
>>
>>> Hello guys,
>>>
>>>  I got the same problem, I have enabled the SSH and Ping policies, when
>>> I type "sudo ifconfig -a" inside my VM (Through VNC) the only IP showed is
>>> the lo IP.
>>>  What am I missing?
>>>
>>> Regards.
>>>
>>> Guilherme.
>>>
>>>
>>>
>>> 2013/2/15 Jean-Baptiste RANSY <jean-baptiste.ransy at alyseo.com>
>>>
>>>>  Hello Chathura;
>>>>
>>>> It's normal that your compute node have no route to the tenant network.
>>>> Quantum and openvswitch provide Layer2 link and as i can see, the VM
>>>> obtain a IP address.
>>>> So we can assume that quantum and openvswitch are setup correctly.
>>>>
>>>> Same question as JuanFra : Have you enabled PING and SSH in 'Access and
>>>> security policies'?
>>>>
>>>> Other things :
>>>>
>>>> Cloud-init (in VM) is unable to retrive metadata, does
>>>> nova-api-metadata is running on your Compute Node ?
>>>> If yes, check you nova.conf.
>>>>
>>>> Regards,
>>>>
>>>> Jean-Baptiste RANSY
>>>>
>>>>
>>>>
>>>> On 02/14/2013 11:58 PM, Chathura M. Sarathchandra Magurawalage wrote:
>>>>
>>>>  Hello,
>>>>
>>>>  I followed the folsom basic install instructions in
>>>> http://docs.openstack.org/folsom/basic-install/content/basic-install_operate.html
>>>>
>>>>  But now I am not able to ping either the private or the floating ip
>>>> of the instances.
>>>>
>>>>  Can someone please help?
>>>>
>>>>  Instance log:
>>>>
>>>>  [    0.000000] Initializing cgroup subsys cpuset
>>>> [    0.000000] Initializing cgroup subsys cpu
>>>> [    0.000000] Linux version 3.2.0-37-virtual (buildd at allspice) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #58-Ubuntu SMP Thu Jan 24 15:48:03 UTC 2013 (Ubuntu 3.2.0-37.58-virtual 3.2.35)
>>>> [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-37-virtual root=LABEL=cloudimg-rootfs ro console=ttyS0
>>>> [    0.000000] KERNEL supported cpus:
>>>> [    0.000000]   Intel GenuineIntel
>>>> [    0.000000]   AMD AuthenticAMD
>>>> [    0.000000]   Centaur CentaurHauls
>>>> [    0.000000] BIOS-provided physical RAM map:
>>>> [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009bc00 (usable)
>>>> [    0.000000]  BIOS-e820: 000000000009bc00 - 00000000000a0000 (reserved)
>>>> [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
>>>> [    0.000000]  BIOS-e820: 0000000000100000 - 000000007fffd000 (usable)
>>>> [    0.000000]  BIOS-e820: 000000007fffd000 - 0000000080000000 (reserved)
>>>> [    0.000000]  BIOS-e820: 00000000feffc000 - 00000000ff000000 (reserved)
>>>> [    0.000000]  BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
>>>> [    0.000000] NX (Execute Disable) protection: active
>>>> [    0.000000] DMI 2.4 present.
>>>> [    0.000000] No AGP bridge found
>>>> [    0.000000] last_pfn = 0x7fffd max_arch_pfn = 0x400000000
>>>> [    0.000000] x86 PAT enabled: cpu 0, old 0x70406, new 0x7010600070106
>>>> [    0.000000] found SMP MP-table at [ffff8800000fdae0] fdae0
>>>> [    0.000000] init_memory_mapping: 0000000000000000-000000007fffd000
>>>> [    0.000000] RAMDISK: 3776c000 - 37bae000
>>>> [    0.000000] ACPI: RSDP 00000000000fd980 00014 (v00 BOCHS )
>>>> [    0.000000] ACPI: RSDT 000000007fffd7b0 00034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
>>>> [    0.000000] ACPI: FACP 000000007fffff80 00074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
>>>> [    0.000000] ACPI: DSDT 000000007fffd9b0 02589 (v01   BXPC   BXDSDT 00000001 INTL 20100528)
>>>> [    0.000000] ACPI: FACS 000000007fffff40 00040
>>>> [    0.000000] ACPI: SSDT 000000007fffd910 0009E (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
>>>> [    0.000000] ACPI: APIC 000000007fffd830 00072 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
>>>> [    0.000000] ACPI: HPET 000000007fffd7f0 00038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
>>>> [    0.000000] No NUMA configuration found
>>>> [    0.000000] Faking a node at 0000000000000000-000000007fffd000
>>>> [    0.000000] Initmem setup node 0 0000000000000000-000000007fffd000
>>>> [    0.000000]   NODE_DATA [000000007fff8000 - 000000007fffcfff]
>>>> [    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
>>>> [    0.000000] kvm-clock: cpu 0, msr 0:1cf7681, boot clock
>>>> [    0.000000] Zone PFN ranges:
>>>> [    0.000000]   DMA      0x00000010 -> 0x00001000
>>>> [    0.000000]   DMA32    0x00001000 -> 0x00100000
>>>> [    0.000000]   Normal   empty
>>>> [    0.000000] Movable zone start PFN for each node
>>>> [    0.000000] early_node_map[2] active PFN ranges
>>>> [    0.000000]     0: 0x00000010 -> 0x0000009b
>>>> [    0.000000]     0: 0x00000100 -> 0x0007fffd
>>>> [    0.000000] ACPI: PM-Timer IO Port: 0xb008
>>>> [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
>>>> [    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
>>>> [    0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
>>>> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
>>>> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
>>>> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
>>>> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
>>>> [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
>>>> [    0.000000] Using ACPI (MADT) for SMP configuration information
>>>> [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
>>>> [    0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
>>>> [    0.000000] PM: Registered nosave memory: 000000000009b000 - 000000000009c000
>>>> [    0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
>>>> [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
>>>> [    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
>>>> [    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:7effc000)
>>>> [    0.000000] Booting paravirtualized kernel on KVM
>>>> [    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1
>>>> [    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88007fc00000 s82880 r8192 d23616 u2097152
>>>> [    0.000000] kvm-clock: cpu 0, msr 0:7fc13681, primary cpu clock
>>>> [    0.000000] KVM setup async PF for cpu 0
>>>> [    0.000000] kvm-stealtime: cpu 0, msr 7fc0dd40
>>>> [    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 515971
>>>> [    0.000000] Policy zone: DMA32
>>>> [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-37-virtual root=LABEL=cloudimg-rootfs ro console=ttyS0
>>>> [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
>>>> [    0.000000] Checking aperture...
>>>> [    0.000000] No AGP bridge found
>>>> [    0.000000] Memory: 2043632k/2097140k available (6541k kernel code, 468k absent, 53040k reserved, 6652k data, 924k init)
>>>> [    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
>>>> [    0.000000] Hierarchical RCU implementation.
>>>> [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
>>>> [    0.000000] NR_IRQS:4352 nr_irqs:256 16
>>>> [    0.000000] Console: colour VGA+ 80x25
>>>> [    0.000000] console [ttyS0] enabled
>>>> [    0.000000] allocated 16777216 bytes of page_cgroup
>>>> [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
>>>> [    0.000000] Detected 3392.278 MHz processor.
>>>> [    0.008000] Calibrating delay loop (skipped) preset value.. 6784.55 BogoMIPS (lpj=13569112)
>>>> [    0.008000] pid_max: default: 32768 minimum: 301
>>>> [    0.008000] Security Framework initialized
>>>> [    0.008000] AppArmor: AppArmor initialized
>>>> [    0.008000] Yama: becoming mindful.
>>>> [    0.008000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
>>>> [    0.008000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
>>>> [    0.008506] Mount-cache hash table entries: 256
>>>> [    0.008949] Initializing cgroup subsys cpuacct
>>>> [    0.009284] Initializing cgroup subsys memory
>>>> [    0.009614] Initializing cgroup subsys devices
>>>> [    0.009944] Initializing cgroup subsys freezer
>>>> [    0.010275] Initializing cgroup subsys blkio
>>>> [    0.010600] Initializing cgroup subsys perf_event
>>>> [    0.011007] CPU: CPU feature xsave disabled, no CPUID level 0xd
>>>> [    0.011445] mce: CPU supports 10 MCE banks
>>>> [    0.012175] SMP alternatives: switching to UP code
>>>> [    0.025922] Freeing SMP alternatives: 24k freed
>>>> [    0.026272] ACPI: Core revision 20110623
>>>> [    0.027168] ftrace: allocating 27027 entries in 106 pages
>>>> [    0.028197] Enabling x2apic
>>>> [    0.028413] Enabled x2apic
>>>> [    0.028726] Switched APIC routing to physical x2apic.
>>>> [    0.029767] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
>>>> [    0.030192] CPU0: Intel(R) Core(TM)2 Duo CPU     T7700  @ 2.40GHz stepping 0b
>>>> [    0.036002] Performance Events: unsupported p6 CPU model 15 no PMU driver, software events only.
>>>> [    0.036002] NMI watchdog disabled (cpu0): hardware events not enabled
>>>> [    0.036002] Brought up 1 CPUs
>>>> [    0.036002] Total of 1 processors activated (6784.55 BogoMIPS).
>>>> [    0.036002] devtmpfs: initialized
>>>> [    0.036002] EVM: security.selinux
>>>> [    0.036002] EVM: security.SMACK64
>>>> [    0.036002] EVM: security.capability
>>>> [    0.036248] print_constraints: dummy:
>>>> [    0.036566] RTC time: 22:31:07, date: 02/14/13
>>>> [    0.036913] NET: Registered protocol family 16
>>>> [    0.037321] ACPI: bus type pci registered
>>>> [    0.037678] PCI: Using configuration type 1 for base access
>>>> [    0.038557] bio: create slab <bio-0> at 0
>>>> [    0.038926] ACPI: Added _OSI(Module Device)
>>>> [    0.039233] ACPI: Added _OSI(Processor Device)
>>>> [    0.039550] ACPI: Added _OSI(3.0 _SCP Extensions)
>>>> [    0.039885] ACPI: Added _OSI(Processor Aggregator Device)
>>>> [    0.041130] ACPI: Interpreter enabled
>>>> [    0.041403] ACPI: (supports S0 S3 S4 S5)
>>>> [    0.041734] ACPI: Using IOAPIC for interrupt routing
>>>> [    0.044334] ACPI: No dock devices found.
>>>> [    0.044630] HEST: Table not found.
>>>> [    0.044877] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
>>>> [    0.045564] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
>>>> [    0.047411] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
>>>> [    0.047928] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
>>>> [    0.058677]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
>>>> [    0.061658] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
>>>> [    0.062184] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
>>>> [    0.062696] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
>>>> [    0.063206] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
>>>> [    0.063720] ACPI: PCI Interrupt Link [LNKS] (IRQs 9) *0
>>>> [    0.064322] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
>>>> [    0.064981] vgaarb: loaded
>>>> [    0.065209] vgaarb: bridge control possible 0000:00:02.0
>>>> [    0.065751] i2c-core: driver [aat2870] using legacy suspend method
>>>> [    0.066255] i2c-core: driver [aat2870] using legacy resume method
>>>> [    0.066829] SCSI subsystem initialized
>>>> [    0.067337] usbcore: registered new interface driver usbfs
>>>> [    0.067803] usbcore: registered new interface driver hub
>>>> [    0.068046] usbcore: registered new device driver usb
>>>> [    0.068566] PCI: Using ACPI for IRQ routing
>>>> [    0.069181] NetLabel: Initializing
>>>> [    0.069474] NetLabel:  domain hash size = 128
>>>> [    0.069832] NetLabel:  protocols = UNLABELED CIPSOv4
>>>> [    0.070252] NetLabel:  unlabeled traffic allowed by default
>>>> [    0.070759] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
>>>> [    0.071347] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
>>>> [    0.072122] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
>>>> [    0.084062] Switching to clocksource kvm-clock
>>>> [    0.090078] AppArmor: AppArmor Filesystem Enabled
>>>> [    0.090541] pnp: PnP ACPI init
>>>> [    0.090839] ACPI: bus type pnp registered
>>>> [    0.091810] pnp: PnP ACPI: found 8 devices
>>>> [    0.092204] ACPI: ACPI bus type pnp unregistered
>>>> [    0.098539] NET: Registered protocol family 2
>>>> [    0.099012] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
>>>> [    0.100204] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
>>>> [    0.102679] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
>>>> [    0.103620] TCP: Hash tables configured (established 262144 bind 65536)
>>>> [    0.104153] TCP reno registered
>>>> [    0.104393] UDP hash table entries: 1024 (order: 3, 32768 bytes)
>>>> [    0.104843] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
>>>> [    0.105365] NET: Registered protocol family 1
>>>> [    0.105693] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
>>>> [    0.106119] pci 0000:00:01.0: PIIX3: Enabling Passive Release
>>>> [    0.106535] pci 0000:00:01.0: Activating ISA DMA hang workarounds
>>>> [    0.107069] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
>>>> [    0.107492] pci 0000:00:01.2: PCI INT D -> Link[LNKD] -> GSI 11 (level, high) -> IRQ 11
>>>> [    0.108147] pci 0000:00:01.2: PCI INT D disabled
>>>> [    0.108765] Trying to unpack rootfs image as initramfs...
>>>> [    0.112199] audit: initializing netlink socket (disabled)
>>>> [    0.112598] type=2000 audit(1360881069.112:1): initialized
>>>> [    0.145242] HugeTLB registered 2 MB page size, pre-allocated 0 pages
>>>> [    0.152432] VFS: Disk quotas dquot_6.5.2
>>>> [    0.152785] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
>>>> [    0.153599] fuse init (API version 7.17)
>>>> [    0.153959] msgmni has been set to 3991
>>>> [    0.172219] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
>>>> [    0.172792] io scheduler noop registered
>>>> [    0.173074] io scheduler deadline registered (default)
>>>> [    0.173500] io scheduler cfq registered
>>>> [    0.173871] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
>>>> [    0.174286] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
>>>> [    0.174886] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
>>>> [    0.175412] ACPI: Power Button [PWRF]
>>>> [    0.176279] ERST: Table is not found!
>>>> [    0.176546] GHES: HEST is not enabled!
>>>> [    0.176967] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
>>>> [    0.177430] virtio-pci 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 10 (level, high) -> IRQ 10
>>>> [    0.178157] virtio-pci 0000:00:04.0: PCI INT A -> Link[LNKD] -> GSI 11 (level, high) -> IRQ 11
>>>> [    0.179213] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
>>>> [    0.179659] virtio-pci 0000:00:05.0: PCI INT A -> Link[LNKA] -> GSI 10 (level, high) -> IRQ 10
>>>> [    0.184223] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
>>>> [    0.184674] virtio-pci 0000:00:06.0: PCI INT A -> Link[LNKB] -> GSI 11 (level, high) -> IRQ 11
>>>> [    0.192076] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
>>>> [    0.213398] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
>>>> [    0.218304] Freeing initrd memory: 4360k freed
>>>> [    0.239923] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>>>> [    0.264428] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
>>>> [    0.287494] 00:06: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>>>> [    0.288120] Linux agpgart interface v0.103
>>>> [    0.289232] brd: module loaded
>>>> [    0.289871] loop: module loaded
>>>> [    0.437138]  vda: vda1
>>>> [    0.449851]  vdb: unknown partition table
>>>> [    0.451886] scsi0 : ata_piix
>>>> [    0.452540] scsi1 : ata_piix
>>>> [    0.453101] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc0e0 irq 14
>>>> [    0.454258] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc0e8 irq 15
>>>> [    0.455818] Fixed MDIO Bus: probed
>>>> [    0.456482] tun: Universal TUN/TAP device driver, 1.6
>>>> [    0.457359] tun: (C) 1999-2004 Max Krasnyansky <maxk at qualcomm.com>
>>>> [    0.544761] PPP generic driver version 2.4.2
>>>> [    0.546124] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
>>>> [    0.547314] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
>>>> [    0.548497] uhci_hcd: USB Universal Host Controller Interface driver
>>>> [    0.549644] uhci_hcd 0000:00:01.2: PCI INT D -> Link[LNKD] -> GSI 11 (level, high) -> IRQ 11
>>>> [    0.551165] uhci_hcd 0000:00:01.2: UHCI Host Controller
>>>> [    0.552202] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1
>>>> [    0.553646] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c080
>>>> [    0.554958] hub 1-0:1.0: USB hub found
>>>> [    0.555712] hub 1-0:1.0: 2 ports detected
>>>> [    0.556221] usbcore: registered new interface driver libusual
>>>> [    0.556675] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
>>>> [    0.557751] serio: i8042 KBD port at 0x60,0x64 irq 1
>>>> [    0.558140] serio: i8042 AUX port at 0x60,0x64 irq 12
>>>> [    0.558586] mousedev: PS/2 mouse device common for all mice
>>>> [    0.559213] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
>>>> [    0.560057] rtc_cmos 00:01: RTC can wake from S4
>>>> [    0.560513] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
>>>> [    0.561059] rtc0: alarms up to one day, 114 bytes nvram, hpet irqs
>>>> [    0.561582] device-mapper: uevent: version 1.0.3
>>>> [    0.561987] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel at redhat.com
>>>> [    0.562615] cpuidle: using governor ladder
>>>> [    0.562938] cpuidle: using governor menu
>>>> [    0.563662] EFI Variables Facility v0.08 2004-May-17
>>>> [    0.564927] TCP cubic registered
>>>> [    0.565697] NET: Registered protocol family 10
>>>> [    0.567432] NET: Registered protocol family 17
>>>> [    0.568097] Registering the dns_resolver key type
>>>> [    0.568540] registered taskstats version 1
>>>> [    0.572021]   Magic number: 1:838:552
>>>> [    0.572298] tty ttyS28: hash matches
>>>> [    0.572565] pci_link PNP0C0F:03: hash matches
>>>> [    0.572969] rtc_cmos 00:01: setting system clock to 2013-02-14 22:31:08 UTC (1360881068)
>>>> [    0.573553] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
>>>> [    0.574000] EDD information not available.
>>>> [    0.702117] Freeing unused kernel memory: 924k freed
>>>> [    0.703495] Write protecting the kernel read-only data: 12288k
>>>> [    0.710683] Freeing unused kernel memory: 1632k freed
>>>> [    0.714135] Freeing unused kernel memory: 1200k freed
>>>> Loading, please wait...
>>>> Begin: Loading essential drivers ... done.
>>>> [    0.725413] udevd[83]: starting version 175
>>>> Begin: Running /scripts/init-premount ... done.
>>>> Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
>>>> [    0.832322] FDC 0 is a S82078B
>>>> [    0.868071] usb 1-1: new full-speed USB device number 2 using uhci_hcd
>>>> Begin: Running /scripts/local-premount ... done.
>>>> [    1.013417] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null)
>>>> Begin: Running /scripts/local-bottom ... [    1.108091] Refined TSC clocksource calibration: 3392.124 MHz.
>>>> [    1.183531]  vda: vda1
>>>> GROWROOT: CHANGED: partition=1 start=16065 old: size=4176900 end=4192965 new: size=20948760,end=20964825
>>>> [    1.288143] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null)
>>>> done.
>>>> done.
>>>> Begin: Running /scripts/init-bottom ... done.
>>>> [    1.932456] EXT4-fs (vda1): re-mounted. Opts: (null)
>>>> cloud-init start-local running: Thu, 14 Feb 2013 22:31:11 +0000. up 3.63 seconds
>>>>
>>>> no instance data found in start-local
>>>>
>>>> ci-info: lo    : 1 127.0.0.1       255.0.0.0       .
>>>>
>>>> ci-info: eth0  : 1 10.5.5.3        255.255.255.0   fa:16:3e:08:01:ad
>>>>
>>>> ci-info: route-0: 0.0.0.0         10.5.5.1        0.0.0.0         eth0   UG
>>>>
>>>> ci-info: route-1: 10.5.5.0        0.0.0.0         255.255.255.0   eth0   U
>>>>
>>>> cloud-init start running: Thu, 14 Feb 2013 22:31:12 +0000. up 4.13 seconds
>>>>
>>>> 2013-02-14 22:34:02,313 - util.py[WARNING]: 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [50/120s]: url error [timed out]
>>>>
>>>> 2013-02-14 22:34:53,365 - util.py[WARNING]: 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [101/120s]: url error [timed out]
>>>>
>>>> 2013-02-14 22:35:11,384 - util.py[WARNING]: 'http://169.254.169.254/2009-04-04/meta-data/instance-id' failed [119/120s]: url error [timed out]
>>>>
>>>> 2013-02-14 22:35:12,386 - DataSourceEc2.py[CRITICAL]: giving up on md after 120 seconds
>>>>
>>>>
>>>>
>>>> no instance data found in start
>>>>
>>>> Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
>>>>
>>>>  * Starting AppArmor profiles       [80G
>>>> [74G[ OK ]
>>>>
>>>> landscape-client is not configured, please run landscape-config.
>>>>
>>>> acpid: starting up with proc fs
>>>>
>>>>
>>>>  * Stopping System V initialisation compatibility[74G[ OK ]
>>>>
>>>>  * Starting System V runlevel compatibility[74G[ OK ]
>>>>
>>>>  * Starting ACPI daemon[74G[ OK ]
>>>>
>>>>  * Starting save kernel messages[74G[ OK ]
>>>>
>>>>  * Starting automatic crash report generation[74G[ OK ]
>>>>
>>>> acpid: 1 rule loaded
>>>>
>>>>
>>>> acpid: waiting for events: event logging is off
>>>>
>>>>
>>>>  * Starting regular background program processing daemon[74G[ OK ]
>>>>
>>>>  * Starting deferred execution scheduler[74G[ OK ]
>>>>
>>>>  * Stopping save kernel messages[74G[ OK ]
>>>>
>>>>  * Stopping System V runlevel compatibility[74G[ OK ]
>>>>
>>>>  * Starting CPU interrupts balancing daemon[74G[ OK ]
>>>>
>>>>
>>>>
>>>>  Controller: route -n
>>>>
>>>>  Kernel IP routing table
>>>> Destination     Gateway         Genmask         Flags Metric Ref    Use
>>>> Iface
>>>> 0.0.0.0         192.168.2.253   0.0.0.0         UG    0      0
>>>>  0 eth0.2
>>>> 0.0.0.0         192.168.2.253   0.0.0.0         UG    100    0
>>>>  0 eth0.2
>>>> 10.5.5.0        0.0.0.0         255.255.255.0   U     0      0        0
>>>> tapf71b5b86-5c
>>>> 10.5.5.0        0.0.0.0         255.255.255.0   U     0      0        0
>>>> qr-4d088f3a-78
>>>> 10.10.10.0      0.0.0.0         255.255.255.0   U     0      0        0
>>>> eth0
>>>> 192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0
>>>> eth0.2
>>>> 192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0
>>>> qg-6f8374cb-cb
>>>> 192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0
>>>> br-ex
>>>>
>>>>   Compute node: route -n
>>>>
>>>>  Kernel IP routing table
>>>> Destination     Gateway         Genmask         Flags Metric Ref    Use
>>>> Iface
>>>> 0.0.0.0         192.168.2.253   0.0.0.0         UG    100    0
>>>>  0 eth0.2
>>>> 10.10.10.0      0.0.0.0         255.255.255.0   U     0      0        0
>>>> eth0
>>>> 192.168.2.0     0.0.0.0         255.255.255.0   U     0      0        0
>>>> eth0.2
>>>>
>>>>   *quantum floatingip-create --port_id
>>>> 6fa61789-31d8-47cc-b6c7-bce57a1b7fe3 26b88521-5d1e-4f40-a4f5-74f8a8136335
>>>> *
>>>>
>>>>  Created a new floatingip:
>>>> +---------------------+--------------------------------------+
>>>> | Field               | Value                                |
>>>> +---------------------+--------------------------------------+
>>>> | fixed_ip_address    | 10.5.5.3                             |
>>>> | floating_ip_address | 192.168.2.154                        |
>>>> | floating_network_id | 26b88521-5d1e-4f40-a4f5-74f8a8136335 |
>>>>  | id                  | d06ae5cd-2ffe-42ec-b7e1-1022ca4d128d |
>>>> | port_id             | 6fa61789-31d8-47cc-b6c7-bce57a1b7fe3 |
>>>> | router_id           | 1b4b108f-aefa-4548-acc4-d2441038a33f |
>>>> | tenant_id           | 3ee0315f4349489b8f6faa0bd1544986     |
>>>> +---------------------+--------------------------------------+
>>>>
>>>>  There is no route to 10.5.5.0/24 network in the compute node. Not
>>>> sure why. I assume openstack is meant to create them by default?
>>>>
>>>>  But still I cant ping the floating ip 192.168.2.154
>>>>
>>>>  Any help would be greatly appreciated.
>>>>
>>>>  Thanks
>>>>
>>>>
>>>> _______________________________________________
>>>> Mailing list: https://launchpad.net/~openstack
>>>> Post to     : openstack at lists.launchpad.net
>>>> Unsubscribe : https://launchpad.net/~openstack
>>>> More help   : https://help.launchpad.net/ListHelp
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> Mailing list: https://launchpad.net/~openstack
>>>> Post to     : openstack at lists.launchpad.net
>>>> Unsubscribe : https://launchpad.net/~openstack
>>>> More help   : https://help.launchpad.net/ListHelp
>>>>
>>>>
>>>
>>> _______________________________________________
>>> Mailing list: https://launchpad.net/~openstack
>>> Post to     : openstack at lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~openstack
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstack.org/pipermail/openstack/attachments/20130215/4695c53e/attachment.html>


More information about the Openstack mailing list