Skip to main content

Featured

Basics of VXLAN

 Maximum number of VLAN is 4000 where  VXLAN can give 16 million Virtualization by adding 24 bit VNI network Identifier. This Vxlan encapsualtion is called Virtual Ethernet modul or VEM. Each VEM has IP address. The IP is assigned to interface VTEP==>> Vxlan Tunnel end point Each VTEP interfaces associated with one or more VNIs. VXLAN usage is can create multiple tunnels over a underlay network. Mainly used on Spine- Leaf Design  bum traffic for broadcast VXLAN can do the load balance between the port channel. Multiple VNI can associated with same multicast group. ========================================= HSRP VS VRRP VS GLBP HSRP and GLBP is cisco properatory VRRP is opensource protocol. HSRP active and standby and VRRP follows master and slave. VRRP can use interface IP as virtual IP. HSRP sents Hello messages but VRRP sents adverticements. GLBP is used to do for load balancing between routers. It uses different mac address for different machine traffic. SSO: ====...

printing with sep=''

Print with sep:
from __future__ import print_function
a,s,d,t,e = 22,33,44,55,66print(a,s,d,t,e)
print(a,s,d,t,e, sep='*')
 
Result:
 
22 33 44 55 66
22*33*44*55*66
 
Explanation
 
 
'from __future__ import print_function'
The above line we are using to import the future supported function like sep=''.
Because this good option is not available in our current python versions. 

Comments

Popular Posts