<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Nlb - Tag - Fryguy's Blog</title><link>https://hugo.fryguy.net/tags/nlb/</link><description>Nlb - Tag - Fryguy's Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Thu, 28 Oct 2010 13:55:10 +0000</lastBuildDate><atom:link href="https://hugo.fryguy.net/tags/nlb/" rel="self" type="application/rss+xml"/><item><title>Static ARP entries on NX-OS</title><link>https://hugo.fryguy.net/2010/10/28/static-arp-entries-on-nx-os/</link><pubDate>Thu, 28 Oct 2010 13:55:10 +0000</pubDate><author>Fryguy</author><guid>https://hugo.fryguy.net/2010/10/28/static-arp-entries-on-nx-os/</guid><description><![CDATA[<p>Oh the joys of Microsoft Network Load Balancing (NLB).  One of the wonderful ways that it is usually configured is using a Multicast MAC address utilizing a Unicast IP address.  Needless to say, most network devices do not like that and thus have problems when devices outside the local LAN attempt to connect to the NLB address.  In order to work around this problem you need to configure a static ARP entry on the gateway so that the devices know how to get to the server.<br>
On IOS, this is not so hard as you configure the a static ARP entry (<strong>arp 10.1.1.99 0300.5e11.1111</strong>).  That command there on the gateway will usually get things working. You may also need to define where that MAC address lives – and the command to do that would be <strong>mac-address-table static 0300.5e11.1111 vlan 200 interface fa2/3 fa2/4</strong> This information was obtained from a Cisco document can be found here if you need more information – <a href="http://www.cisco.com/en/US/products/hw/switches/ps708/products" target="_blank" rel="noopener noreffer ">http://www.cisco.com/en/US/products/hw/switches/ps708/products</a>_configuration_example09186a0080a07203.shtml<br>
Now, on the NX-OS it is a little different as you need to configure the static ARP entry under the VLAN interface in order for it to work:<br>
interface Vlan100<br>
no shutdown<br>
description [—-[ Standard VM VLAN ]—-]<br>
no ip redirects<br>
ip address 10.1.1.2/24<br>
ip arp 10.1.1.99 0300.5e11.1111<br>
N7K1# sh ip arp | inc 1111<br>
10.1.1.99       –      0300.5e11.1111   Vlan100</p>]]></description></item></channel></rss>