BigInteger metadata = notification.getMetadata();
boolean isGarp = srcIP.equals(targetIP);
if (!isGarp) {
- LOG.info("ArpNotification Non-Gratuitous Request Received from "
+ LOG.trace("ArpNotification Non-Gratuitous Request Received from "
+ "interface {} and IP {} having MAC {} target destination {}, ignoring..",
srcInterface, srcIP.getIpv4Address().getValue(),srcMac.getValue(),
targetIP.getIpv4Address().getValue());
return;
}
- LOG.info("ArpNotification Gratuitous Request Received from "
+ LOG.trace("ArpNotification Gratuitous Request Received from "
+ "interface {} and IP {} having MAC {} target destination {}, learning MAC",
srcInterface, srcIP.getIpv4Address().getValue(),srcMac.getValue(),
targetIP.getIpv4Address().getValue());
final String flowId, final String flowName,
final int priority, final BigInteger cookie,
List<MatchInfo> matches, List<Instruction> instructions) {
- LOG.info("ARP: installFlow called for : {}" , flowName);
final Flow flowEntity = MDSALUtil.buildFlowNew(
NwConstants.ARP_RESPONDER_TABLE, flowId, priority, flowName, 0,
0, cookie, matches, instructions);
mdSalManager.addFlowToTx(dpnId, flowEntity, writeInvTxn);
- LOG.info("ARP: Successfully installed flow for : {}" , flowName);
}
/**