DEFUN (show_evpn_nh_l3vni_ip,
show_evpn_nh_l3vni_ip_cmd,
- "show evpn next-hops l3vni " CMD_VNI_RANGE " ip WORD",
+ "show evpn next-hops l3vni " CMD_VNI_RANGE " ip WORD [json]",
SHOW_STR
"EVPN\n"
"Remote Vteps\n"
"L3-VNI\n"
"VNI number\n"
"Ip address\n"
- "Host address (ipv4 or ipv6)\n")
+ "Host address (ipv4 or ipv6)\n"
+ JSON_STR)
{
vni_t l3vni;
- u_char uj = use_json(argc, argv);
struct ipaddr ip;
+ u_char uj = use_json(argc, argv);
l3vni = strtoul(argv[4]->arg, NULL, 10);
if (str2ipaddr(argv[6]->arg, &ip) != 0) {
vty_out(vty, "%% Malformed Neighbor address\n");
return CMD_WARNING;
}
- zebra_vxlan_print_specific_nh_l3vni(vty, l3vni, &ip);
+ zebra_vxlan_print_specific_nh_l3vni(vty, l3vni, &ip, uj);
return CMD_SUCCESS;
}
static void zvni_print_neigh_hash(struct hash_backet *backet, void *ctxt);
static void zvni_print_neigh_hash_all_vni(struct hash_backet *backet,
void **args);
-static void zl3vni_print_nh(zebra_neigh_t *n, struct vty *vty);
+static void zl3vni_print_nh(zebra_neigh_t *n, struct vty *vty,
+ json_object *json);
static void zl3vni_print_rmac(zebra_mac_t *zrmac, struct vty *vty);
static void zvni_print_mac(zebra_mac_t *mac, void *ctxt);
static void zvni_print_mac_hash(struct hash_backet *backet, void *ctxt);
/* print a specific next hop for an l3vni */
static void zl3vni_print_nh(zebra_neigh_t *n,
- struct vty *vty)
+ struct vty *vty,
+ json_object *json)
{
char buf1[ETHER_ADDR_STRLEN];
char buf2[INET6_ADDRSTRLEN];
struct listnode *node = NULL;
struct prefix *p = NULL;
+ json_object *json_hosts = NULL;
- vty_out(vty, "Ip: %s\n",
- ipaddr2str(&n->ip, buf1, sizeof(buf1)));
- vty_out(vty, " RMAC: %s\n",
- prefix_mac2str(&n->emac, buf1, sizeof(buf1)));
- vty_out(vty, " Host-List:\n");
- for (ALL_LIST_ELEMENTS_RO(n->host_list, node, p))
- vty_out(vty, " %s\n",
- prefix2str(p, buf2, sizeof(buf2)));
+ if (!json) {
+ vty_out(vty, "Ip: %s\n",
+ ipaddr2str(&n->ip, buf2, sizeof(buf2)));
+ vty_out(vty, " RMAC: %s\n",
+ prefix_mac2str(&n->emac, buf1, sizeof(buf1)));
+ vty_out(vty, " Host-List:\n");
+ for (ALL_LIST_ELEMENTS_RO(n->host_list, node, p))
+ vty_out(vty, " %s\n",
+ prefix2str(p, buf2, sizeof(buf2)));
+ } else {
+ json_hosts = json_object_new_array();
+ json_object_string_add(json, "ip",
+ ipaddr2str(&(n->ip), buf2,
+ sizeof(buf2)));
+ json_object_string_add(json, "rmac",
+ prefix_mac2str(&n->emac, buf2,
+ sizeof(buf2)));
+ for (ALL_LIST_ELEMENTS_RO(n->host_list, node, p))
+ json_object_array_add(json_hosts,
+ json_object_new_string(
+ prefix2str(p, buf2,
+ sizeof(buf2))));
+ json_object_object_add(json, "hosts", json_hosts);
+ }
}
/* Print a specific RMAC entry */
void zebra_vxlan_print_specific_nh_l3vni(struct vty *vty,
vni_t l3vni,
- struct ipaddr *ip)
+ struct ipaddr *ip,
+ u_char use_json)
{
zebra_l3vni_t *zl3vni = NULL;
zebra_neigh_t *n = NULL;
+ json_object *json = NULL;
- if (!is_evpn_enabled())
+ if (!is_evpn_enabled()) {
+ if (use_json)
+ vty_out(vty, "{}\n");
return;
+ }
+
+ if (use_json)
+ json = json_object_new_object();
zl3vni = zl3vni_lookup(l3vni);
if (!zl3vni) {
- vty_out(vty, "%% L3-VNI %u does not exist\n", l3vni);
+ if (use_json)
+ vty_out(vty, "{}\n");
+ else
+ vty_out(vty, "%% L3-VNI %u does not exist\n", l3vni);
return;
}
n = zl3vni_nh_lookup(zl3vni, ip);
if (!n) {
- vty_out(vty, "%% Requested next-hop not present for L3-VNI %u",
- l3vni);
+ if (use_json)
+ vty_out(vty, "{}\n");
+ else
+ vty_out(vty,
+ "%% Requested next-hop not present for L3-VNI %u",
+ l3vni);
return;
}
- zl3vni_print_nh(n, vty);
+ zl3vni_print_nh(n, vty, json);
+
+ if (use_json) {
+ vty_out(vty, "%s\n", json_object_to_json_string_ext(
+ json, JSON_C_TO_STRING_PRETTY));
+ json_object_free(json);
+ }
}
void zebra_vxlan_print_nh_l3vni(struct vty *vty,