Skip to main content

Posts

Showing posts from March, 2019

Openstack Logo Change Location

copy the logo png file into the following folder  /usr/local/lib/python2.7/dist-packages/openstack_dashboard/openstack_dashboard/static/dashboard/img/            1) logo.png            2) logo-splash.png Edit the following files 1)/usr/local/lib/python2.7/dist-packages/horizon/templates/auth/_splash.html 2) /usr/local/lib/python2.7/dist-packages/openstack_dashboard/openstack_dashboard/templates/header/_brand.html 

VxLAN Testing

VxLAN group-address : Specifies a multicast address in the range of 224.0.1.0 to 239.255.255.255. source   source-address : Specifies a source IP address for multicast VXLAN packets. Server 1: ======= ip link add vxlan100 type vxlan id 100 group 239.1.1.1 dev eno3 ip addr add 10.20.1.4/24 dev vxlan100 ip link set vxlan100 up Server 2: ======= ip link add vxlan100 type vxlan id 100 group 239.1.1.1 dev eno4 ip addr add 10.20.1.3/24 dev vxlan100 ip link set vxlan100 up Ping each other,