Hello everyone, I set up my first OpenStack infrastructure with packstack (answer file attached), and after some configuration testing everything was working great, with 3 compute nodes.
After that I needed to change the network configuration of both the internal and external network cards using VLAN tagging (as shown in the attached ifcfg-eth0, ifcfg-br-ex and ifcfg-br-ex.5) because we had this configuration previously on the switch. Once changed the configuration, I changed the answer file accordingly, and the network within the instances works great (ping, ssh etc), but when I assign a public floating IP to one of the instance it was working previously, but is not working anymore now. I tried many different configurations, but couldn't manage to find the right one, so I decided to ask here for help. Attached you can find my latest answer file for packstack, the ifcfg file for eth0 and br-ex, and my ifconfig result. My public IP has been obfuscated, but that should not be the problem. Hope you can help me figure out this networking problem. If you need more logging or informations please just let me know. Thanks, Francesco
[general] # Path to a Public key to install on servers. If a usable key has not # been installed on the remote servers the user will be prompted for a # password and this key will be installed so the password will not be # required again CONFIG_SSH_KEY= # Set to 'y' if you would like Packstack to install MySQL CONFIG_MYSQL_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack Image # Service (Glance) CONFIG_GLANCE_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack Block # Storage (Cinder) CONFIG_CINDER_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack Compute # (Nova) CONFIG_NOVA_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack # Networking (Neutron) CONFIG_NEUTRON_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack # Dashboard (Horizon) CONFIG_HORIZON_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack Object # Storage (Swift) CONFIG_SWIFT_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack # Metering (Ceilometer) CONFIG_CEILOMETER_INSTALL=y # Set to 'y' if you would like Packstack to install OpenStack # Orchestration (Heat) CONFIG_HEAT_INSTALL=n # Set to 'y' if you would like Packstack to install the OpenStack # Client packages. An admin "rc" file will also be installed CONFIG_CLIENT_INSTALL=y # Comma separated list of NTP servers. Leave plain if Packstack # should not install ntpd on instances. CONFIG_NTP_SERVERS=pool.ntp.org # Set to 'y' if you would like Packstack to install Nagios to monitor # OpenStack hosts CONFIG_NAGIOS_INSTALL=y # Comma separated list of servers to be excluded from installation in # case you are running Packstack the second time with the same answer # file and don't want Packstack to touch these servers. Leave plain if # you don't need to exclude any server. EXCLUDE_SERVERS= # Set to 'y' if you want to run OpenStack services in debug mode. # Otherwise set to 'n'. CONFIG_DEBUG_MODE=n # Set to 'y' if you want to use VMware vCenter as hypervisor and # storageOtherwise set to 'n'. CONFIG_VMWARE_BACKEND=n # The IP address of the server on which to install MySQL CONFIG_MYSQL_HOST=192.168.122.1 # Username for the MySQL admin user CONFIG_MYSQL_USER=root # Password for the MySQL admin user CONFIG_MYSQL_PW=28ce1b09d4674a0a # The IP address of the server on which to install the QPID service CONFIG_QPID_HOST=192.168.122.1 # Enable SSL for the QPID service CONFIG_QPID_ENABLE_SSL=n # Enable Authentication for the QPID service CONFIG_QPID_ENABLE_AUTH=n # The password for the NSS certificate database of the QPID service CONFIG_QPID_NSS_CERTDB_PW=a7880057878a4419a97bd1b2172523fd # The port in which the QPID service listens to SSL connections CONFIG_QPID_SSL_PORT=5671 # The filename of the certificate that the QPID service is going to # use CONFIG_QPID_SSL_CERT_FILE=/etc/pki/tls/certs/qpid_selfcert.pem # The filename of the private key that the QPID service is going to # use CONFIG_QPID_SSL_KEY_FILE=/etc/pki/tls/private/qpid_selfkey.pem # Auto Generates self signed SSL certificate and key CONFIG_QPID_SSL_SELF_SIGNED=y # User for qpid authentication CONFIG_QPID_AUTH_USER=qpid_user # Password for user authentication CONFIG_QPID_AUTH_PASSWORD=8900ddd5687c4ec8 # The IP address of the server on which to install Keystone CONFIG_KEYSTONE_HOST=192.168.122.1 # The password to use for the Keystone to access DB CONFIG_KEYSTONE_DB_PW=041c5050454547e7 # The token to use for the Keystone service api CONFIG_KEYSTONE_ADMIN_TOKEN=77a75464d0bd465990deb0e5eb05264c # The password to use for the Keystone admin user CONFIG_KEYSTONE_ADMIN_PW=303b874987e6454a # The password to use for the Keystone demo user CONFIG_KEYSTONE_DEMO_PW=79183c7155864604 # Kestone token format. Use either UUID or PKI CONFIG_KEYSTONE_TOKEN_FORMAT=PKI # The IP address of the server on which to install Glance CONFIG_GLANCE_HOST=192.168.122.1 # The password to use for the Glance to access DB CONFIG_GLANCE_DB_PW=c6db1908cd47466b # The password to use for the Glance to authenticate with Keystone CONFIG_GLANCE_KS_PW=f5f8ba1aa7a944c9 # The IP address of the server on which to install Cinder CONFIG_CINDER_HOST=192.168.122.1 # The password to use for the Cinder to access DB CONFIG_CINDER_DB_PW=1863fb4a27e1467e # The password to use for the Cinder to authenticate with Keystone CONFIG_CINDER_KS_PW=96868c12eee04237 # The Cinder backend to use, valid options are: lvm, gluster, nfs, # vmdk CONFIG_CINDER_BACKEND=lvm # Create Cinder's volumes group. This should only be done for testing # on a proof-of-concept installation of Cinder. This will create a # file-backed volume group and is not suitable for production usage. CONFIG_CINDER_VOLUMES_CREATE=y # Cinder's volumes group size. Note that actual volume size will be # extended with 3% more space for VG metadata. CONFIG_CINDER_VOLUMES_SIZE=20G # A single or comma separated list of gluster volume shares to mount, # eg: ip-address:/vol-name, domain:/vol-name CONFIG_CINDER_GLUSTER_MOUNTS= # A single or comma seprated list of NFS exports to mount, eg: ip- # address:/export-name CONFIG_CINDER_NFS_MOUNTS= # The IP address of the VMware vCenter datastore CONFIG_VCENTER_HOST= # The username to authenticate to VMware vCenter datastore CONFIG_VCENTER_USER= # The password to authenticate to VMware vCenter datastore CONFIG_VCENTER_PASSWORD= # The IP address of the server on which to install the Nova API # service CONFIG_NOVA_API_HOST=192.168.122.1 # The IP address of the server on which to install the Nova Cert # service CONFIG_NOVA_CERT_HOST=192.168.122.1 # The IP address of the server on which to install the Nova VNC proxy CONFIG_NOVA_VNCPROXY_HOST=11.22.33.44 # A comma separated list of IP addresses on which to install the Nova # Compute services CONFIG_NOVA_COMPUTE_HOSTS=192.168.122.1,192.168.122.2,192.168.122.3 # The IP address of the server on which to install the Nova Conductor # service CONFIG_NOVA_CONDUCTOR_HOST=192.168.122.1 # The password to use for the Nova to access DB CONFIG_NOVA_DB_PW=11999ad196564862 # The password to use for the Nova to authenticate with Keystone CONFIG_NOVA_KS_PW=2f47a4af55c74ad4 # The IP address of the server on which to install the Nova Scheduler # service CONFIG_NOVA_SCHED_HOST=192.168.122.1 # The overcommitment ratio for virtual to physical CPUs. Set to 1.0 # to disable CPU overcommitment CONFIG_NOVA_SCHED_CPU_ALLOC_RATIO=16.0 # The overcommitment ratio for virtual to physical RAM. Set to 1.0 to # disable RAM overcommitment CONFIG_NOVA_SCHED_RAM_ALLOC_RATIO=1.5 # Private interface for Flat DHCP on the Nova compute servers CONFIG_NOVA_COMPUTE_PRIVIF=eth1.6 # The list of IP addresses of the server on which to install the Nova # Network service CONFIG_NOVA_NETWORK_HOSTS=192.168.122.1 # Nova network manager CONFIG_NOVA_NETWORK_MANAGER=nova.network.manager.FlatDHCPManager # Public interface on the Nova network server CONFIG_NOVA_NETWORK_PUBIF=br-ex # Private interface for network manager on the Nova network server CONFIG_NOVA_NETWORK_PRIVIF=eth1.6 # IP Range for network manager CONFIG_NOVA_NETWORK_FIXEDRANGE=192.168.32.0/22 # IP Range for Floating IP's CONFIG_NOVA_NETWORK_FLOATRANGE=10.3.4.0/22 # Name of the default floating pool to which the specified floating # ranges are added to CONFIG_NOVA_NETWORK_DEFAULTFLOATINGPOOL=nova # Automatically assign a floating IP to new instances CONFIG_NOVA_NETWORK_AUTOASSIGNFLOATINGIP=n # First VLAN for private networks CONFIG_NOVA_NETWORK_VLAN_START=100 # Number of networks to support CONFIG_NOVA_NETWORK_NUMBER=1 # Number of addresses in each private subnet CONFIG_NOVA_NETWORK_SIZE=255 # The IP address of the VMware vCenter server CONFIG_VCENTER_HOST= # The username to authenticate to VMware vCenter server CONFIG_VCENTER_USER= # The password to authenticate to VMware vCenter server CONFIG_VCENTER_PASSWORD= # The name of the vCenter cluster CONFIG_VCENTER_CLUSTER_NAME= # The IP addresses of the server on which to install the Neutron # server CONFIG_NEUTRON_SERVER_HOST=192.168.122.1 # The password to use for Neutron to authenticate with Keystone CONFIG_NEUTRON_KS_PW=1df73261d64f48a9 # The password to use for Neutron to access DB CONFIG_NEUTRON_DB_PW=c230352780d24931 # A comma separated list of IP addresses on which to install Neutron # L3 agent CONFIG_NEUTRON_L3_HOSTS=192.168.122.1 # The name of the bridge that the Neutron L3 agent will use for # external traffic, or 'provider' if using provider networks CONFIG_NEUTRON_L3_EXT_BRIDGE=br-ex # A comma separated list of IP addresses on which to install Neutron # DHCP agent CONFIG_NEUTRON_DHCP_HOSTS=192.168.122.1 # A comma separated list of IP addresses on which to install Neutron # LBaaS agent CONFIG_NEUTRON_LBAAS_HOSTS= # The name of the L2 plugin to be used with Neutron CONFIG_NEUTRON_L2_PLUGIN=openvswitch # A comma separated list of IP addresses on which to install Neutron # metadata agent CONFIG_NEUTRON_METADATA_HOSTS=192.168.122.1 # A comma separated list of IP addresses on which to install Neutron # metadata agent CONFIG_NEUTRON_METADATA_PW=a26bb2f8386a485f # A comma separated list of network type driver entrypoints to be # loaded from the neutron.ml2.type_drivers namespace. CONFIG_NEUTRON_ML2_TYPE_DRIVERS=local # A comma separated ordered list of network_types to allocate as # tenant networks. The value 'local' is only useful for single-box # testing but provides no connectivity between hosts. CONFIG_NEUTRON_ML2_TENANT_NETWORK_TYPES=local # A comma separated ordered list of networking mechanism driver # entrypoints to be loaded from the neutron.ml2.mechanism_drivers # namespace. CONFIG_NEUTRON_ML2_MECHANISM_DRIVERS=openvswitch # A comma separated list of physical_network names with which flat # networks can be created. Use * to allow flat networks with arbitrary # physical_network names. CONFIG_NEUTRON_ML2_FLAT_NETWORKS=* # A comma separated list of <physical_network>:<vlan_min>:<vlan_max> # or <physical_network> specifying physical_network names usable for # VLAN provider and tenant networks, as well as ranges of VLAN tags on # each available for allocation to tenant networks. CONFIG_NEUTRON_ML2_VLAN_RANGES= # A comma separated list of <tun_min>:<tun_max> tuples enumerating # ranges of GRE tunnel IDs that are available for tenant network # allocation. Should be an array with tun_max +1 - tun_min > 1000000 CONFIG_NEUTRON_ML2_TUNNEL_ID_RANGES= # Multicast group for VXLAN. If unset, disables VXLAN enable sending # allocate broadcast traffic to this multicast group. When left # unconfigured, will disable multicast VXLAN mode. Should be an # Multicast IP (v4 or v6) address. CONFIG_NEUTRON_ML2_VXLAN_GROUP= # A comma separated list of <vni_min>:<vni_max> tuples enumerating # ranges of VXLAN VNI IDs that are available for tenant network # allocation. Min value is 0 and Max value is 16777215. CONFIG_NEUTRON_ML2_VNI_RANGES= # The name of the L2 agent to be used with Neutron CONFIG_NEUTRON_L2_AGENT=openvswitch # The type of network to allocate for tenant networks (eg. vlan, # local) CONFIG_NEUTRON_LB_TENANT_NETWORK_TYPE=local # A comma separated list of VLAN ranges for the Neutron linuxbridge # plugin (eg. physnet1:1:4094,physnet2,physnet3:3000:3999) CONFIG_NEUTRON_LB_VLAN_RANGES= # A comma separated list of interface mappings for the Neutron # linuxbridge plugin (eg. physnet1:br-eth1,physnet2:br-eth2,physnet3 # :br-eth3) CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS= # Type of network to allocate for tenant networks (eg. vlan, local, # gre, vxlan) CONFIG_NEUTRON_OVS_TENANT_NETWORK_TYPE=gre # A comma separated list of VLAN ranges for the Neutron openvswitch # plugin (eg. physnet1:1:4094,physnet2,physnet3:3000:3999) CONFIG_NEUTRON_OVS_VLAN_RANGES=physnet1 # A comma separated list of bridge mappings for the Neutron # openvswitch plugin (eg. physnet1:br-eth1,physnet2:br-eth2,physnet3 # :br-eth3) CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS=physnet1:br-ex # A comma separated list of colon-separated OVS bridge:interface # pairs. The interface will be added to the associated bridge. CONFIG_NEUTRON_OVS_BRIDGE_IFACES=br-ex:eth0 # A comma separated list of tunnel ranges for the Neutron openvswitch # plugin (eg. 1:1000) CONFIG_NEUTRON_OVS_TUNNEL_RANGES=1:1000 # The interface for the OVS tunnel. Packstack will override the IP # address used for tunnels on this hypervisor to the IP found on the # specified interface. (eg. eth1) CONFIG_NEUTRON_OVS_TUNNEL_IF= # VXLAN UDP port CONFIG_NEUTRON_OVS_VXLAN_UDP_PORT=4789 # The IP address of the server on which to install the OpenStack # client packages. An admin "rc" file will also be installed CONFIG_OSCLIENT_HOST=192.168.122.1 # The IP address of the server on which to install Horizon CONFIG_HORIZON_HOST=192.168.122.1 # To set up Horizon communication over https set this to "y" CONFIG_HORIZON_SSL=n # PEM encoded certificate to be used for ssl on the https server, # leave blank if one should be generated, this certificate should not # require a passphrase CONFIG_SSL_CERT= # Keyfile corresponding to the certificate if one was entered CONFIG_SSL_KEY= # The IP address on which to install the Swift proxy service # (currently only single proxy is supported) CONFIG_SWIFT_PROXY_HOSTS=192.168.122.1 # The password to use for the Swift to authenticate with Keystone CONFIG_SWIFT_KS_PW=c6644635fbb14ee9 # A comma separated list of IP addresses on which to install the # Swift Storage services, each entry should take the format # <ipaddress>[/dev], for example 127.0.0.1/vdb will install /dev/vdb # on 127.0.0.1 as a swift storage device(packstack does not create the # filesystem, you must do this first), if /dev is omitted Packstack # will create a loopback device for a test setup CONFIG_SWIFT_STORAGE_HOSTS=192.168.122.1 # Number of swift storage zones, this number MUST be no bigger than # the number of storage devices configured CONFIG_SWIFT_STORAGE_ZONES=1 # Number of swift storage replicas, this number MUST be no bigger # than the number of storage zones configured CONFIG_SWIFT_STORAGE_REPLICAS=1 # FileSystem type for storage nodes CONFIG_SWIFT_STORAGE_FSTYPE=ext4 # Shared secret for Swift CONFIG_SWIFT_HASH=2e554070f32f4398 # Size of the swift loopback file storage device CONFIG_SWIFT_STORAGE_SIZE=2G # Whether to provision for demo usage and testing. Note that # provisioning is only supported for all-in-one installations. CONFIG_PROVISION_DEMO=y # Whether to configure tempest for testing. Note that provisioning is # only supported for all-in-one installations. CONFIG_PROVISION_TEMPEST=n # The CIDR network address for the floating IP subnet CONFIG_PROVISION_DEMO_FLOATRANGE=172.24.4.224/28 # The uri of the tempest git repository to use CONFIG_PROVISION_TEMPEST_REPO_URI=https://github.com/openstack/tempest.git # The revision of the tempest git repository to use CONFIG_PROVISION_TEMPEST_REPO_REVISION=stable/havana # Whether to configure the ovs external bridge in an all-in-one # deployment CONFIG_PROVISION_ALL_IN_ONE_OVS_BRIDGE=n # The IP address of the server on which to install Heat service CONFIG_HEAT_HOST=192.168.122.1 # The password used by Heat user to authenticate against MySQL CONFIG_HEAT_DB_PW=f5c8b8b316db4a34 # The password to use for the Heat to authenticate with Keystone CONFIG_HEAT_KS_PW=d6fd640bcc744160 # Set to 'y' if you would like Packstack to install Heat CloudWatch # API CONFIG_HEAT_CLOUDWATCH_INSTALL=n # Set to 'y' if you would like Packstack to install Heat # CloudFormation API CONFIG_HEAT_CFN_INSTALL=n # The IP address of the server on which to install Heat CloudWatch # API service CONFIG_HEAT_CLOUDWATCH_HOST=192.168.122.1 # The IP address of the server on which to install Heat # CloudFormation API service CONFIG_HEAT_CFN_HOST=192.168.122.1 # The IP address of the server on which to install Ceilometer CONFIG_CEILOMETER_HOST=192.168.122.1 # Secret key for signing metering messages. CONFIG_CEILOMETER_SECRET=a80be5c6142b42b6 # The password to use for Ceilometer to authenticate with Keystone CONFIG_CEILOMETER_KS_PW=8904141b2ffb4258 # The IP address of the server on which to install the Nagios server CONFIG_NAGIOS_HOST=11.22.33.44 # The password of the nagiosadmin user on the Nagios server CONFIG_NAGIOS_PW=a04f7b8a7e224b1b # To subscribe each server to EPEL enter "y" CONFIG_USE_EPEL=y # A comma separated list of URLs to any additional yum repositories # to install CONFIG_REPO= # To subscribe each server with Red Hat subscription manager, include # this with CONFIG_RH_PW CONFIG_RH_USER= # To subscribe each server with Red Hat subscription manager, include # this with CONFIG_RH_USER CONFIG_RH_PW= # To subscribe each server to Red Hat Enterprise Linux 6 Server Beta # channel (only needed for Preview versions of RHOS) enter "y" CONFIG_RH_BETA_REPO=n # To subscribe each server with RHN Satellite,fill Satellite's URL # here. Note that either satellite's username/password or activation # key has to be provided CONFIG_SATELLITE_URL= # Username to access RHN Satellite CONFIG_SATELLITE_USER= # Password to access RHN Satellite CONFIG_SATELLITE_PW= # Activation key for subscription to RHN Satellite CONFIG_SATELLITE_AKEY= # Specify a path or URL to a SSL CA certificate to use CONFIG_SATELLITE_CACERT= # If required specify the profile name that should be used as an # identifier for the system in RHN Satellite CONFIG_SATELLITE_PROFILE= # Comma separated list of flags passed to rhnreg_ks. Valid flags are: # novirtinfo, norhnsd, nopackages CONFIG_SATELLITE_FLAGS= # Specify a HTTP proxy to use with RHN Satellite CONFIG_SATELLITE_PROXY= # Specify a username to use with an authenticated HTTP proxy CONFIG_SATELLITE_PROXY_USER= # Specify a password to use with an authenticated HTTP proxy. CONFIG_SATELLITE_PROXY_PW=
DEVICE=br-ex DEVICETYPE=ovs TYPE=OVSBridge BOOTPROTO=none ONBOOT=yes
DEVICE=br-ex.5 DEVICETYPE=ovs TYPE=OVSBridge BOOTPROTO=none IPADDR=11.22.33.44 NETMASK=255.255.255.0 GATEWAY=11.22.33.1 NETWORK=11.22.33.0 ONBOOT=yes USERCTL=no VLAN=yes
DEVICE=eth0 TYPE=OVSPort DEVICETYPE=ovs OVS_BRIDGE=br-ex ONBOOT=yes
br-ex Link encap:Ethernet HWaddr 00:14:5E:15:89:F8 inet6 addr: fe80::d4d7:caff:fe70:8768/64 Scope:Link UP BROADCAST RUNNING MTU:1500 Metric:1 RX packets:127653 errors:0 dropped:0 overruns:0 frame:0 TX packets:48118 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:10790175 (10.2 MiB) TX bytes:14967064 (14.2 MiB) br-ex.5 Link encap:Ethernet HWaddr 00:14:5E:15:89:F8 inet addr:11.22.33.44 Bcast:11.22.33.255 Mask:255.255.255.0 inet6 addr: fe80::214:5eff:fe15:89f8/64 Scope:Link UP BROADCAST RUNNING MTU:1500 Metric:1 RX packets:99299 errors:0 dropped:0 overruns:0 frame:0 TX packets:48112 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:7292621 (6.9 MiB) TX bytes:14966596 (14.2 MiB) br-int Link encap:Ethernet HWaddr 2E:1C:D2:89:17:43 inet6 addr: fe80::e890:44ff:feb7:4e91/64 Scope:Link UP BROADCAST RUNNING MTU:1500 Metric:1 RX packets:49 errors:0 dropped:0 overruns:0 frame:0 TX packets:6 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:4084 (3.9 KiB) TX bytes:468 (468.0 b) br-tun Link encap:Ethernet HWaddr CA:89:12:55:3F:4B inet6 addr: fe80::2c2c:eeff:fea1:504f/64 Scope:Link UP BROADCAST RUNNING MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:6 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 b) TX bytes:468 (468.0 b) eth0 Link encap:Ethernet HWaddr 00:14:5E:15:89:F8 inet6 addr: fe80::214:5eff:fe15:89f8/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:128970 errors:0 dropped:0 overruns:0 frame:0 TX packets:48466 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:11631391 (11.0 MiB) TX bytes:15469376 (14.7 MiB) eth1 Link encap:Ethernet HWaddr 00:14:5E:15:89:FA inet6 addr: fe80::214:5eff:fe15:89fa/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:205981 errors:0 dropped:0 overruns:0 frame:0 TX packets:125845 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:49903885 (47.5 MiB) TX bytes:27752795 (26.4 MiB) eth1.6 Link encap:Ethernet HWaddr 00:14:5E:15:89:FA inet addr:192.168.122.1 Bcast:192.168.122.255 Mask:255.255.255.0 inet6 addr: fe80::214:5eff:fe15:89fa/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:145657 errors:0 dropped:0 overruns:0 frame:0 TX packets:125790 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:41965103 (40.0 MiB) TX bytes:26742418 (25.5 MiB) int-br-ex.5 Link encap:Ethernet HWaddr 5A:77:4A:38:CA:C3 inet6 addr: fe80::5877:4aff:fe38:cac3/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:20 errors:0 dropped:0 overruns:0 frame:0 TX packets:37 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1356 (1.3 KiB) TX bytes:3188 (3.1 KiB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:1291672 errors:0 dropped:0 overruns:0 frame:0 TX packets:1291672 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:388854313 (370.8 MiB) TX bytes:388854313 (370.8 MiB) phy-br-ex.5 Link encap:Ethernet HWaddr 9E:49:88:1B:0C:A3 inet6 addr: fe80::9c49:88ff:fe1b:ca3/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:37 errors:0 dropped:0 overruns:0 frame:0 TX packets:20 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:3188 (3.1 KiB) TX bytes:1356 (1.3 KiB)
_______________________________________________ Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack Post to : openstack@lists.openstack.org Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack