About this blog
This blog is mostly about my pursuits in Data Science. Previous blog entries also dealt with storage, compute, virtualization and professional services. Currently the focus is on Data Science, including Big Data, Hadoop, Business Intelligence, Data Warehouse, Data Integration and Visualization. From time to time I will blog about other things of interest. The opinions expressed in this blog are entirely my own and should not be taken as the opinion of my employer.Blogroll
Category Archives: VRRP
Using Secondary Addresses with VRRP
VRRP on the MDS in it’s basic form looks something like this: Switch 1
1 2 3 4 5 6 7 8 9 |
interface GigabitEthernet2/1.10 ip address 192.168.10.2 255.255.255.0 switchport mtu 3000 no shutdown vrrp 10 priority 120 preempt address 192.168.10.2 no shutdown |
In the above configuration, 192.168.10.2 is the actual physical interface address and 192.168.10.2 is also the VIP address. This is common. The other side may … Continue reading