3 * Copyright (C) 1997, 1999 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
27 #include "sockunion.h"
32 #include "connected.h"
36 #include "zebra/interface.h"
37 #include "zebra/rtadv.h"
38 #include "zebra/rib.h"
39 #include "zebra/zserv.h"
40 #include "zebra/redistribute.h"
41 #include "zebra/debug.h"
42 #include "zebra/irdp.h"
45 /* Called when new interface is added. */
47 if_zebra_new_hook (struct interface
*ifp
)
49 struct zebra_if
*zebra_if
;
51 zebra_if
= XMALLOC (MTYPE_TMP
, sizeof (struct zebra_if
));
52 memset (zebra_if
, 0, sizeof (struct zebra_if
));
54 zebra_if
->multicast
= IF_ZEBRA_MULTICAST_UNSPEC
;
55 zebra_if
->shutdown
= IF_ZEBRA_SHUTDOWN_UNSPEC
;
59 /* Set default router advertise values. */
60 struct rtadvconf
*rtadv
;
62 rtadv
= &zebra_if
->rtadv
;
64 rtadv
->AdvSendAdvertisements
= 0;
65 rtadv
->MaxRtrAdvInterval
= RTADV_MAX_RTR_ADV_INTERVAL
;
66 rtadv
->MinRtrAdvInterval
= RTADV_MIN_RTR_ADV_INTERVAL
;
67 rtadv
->AdvIntervalTimer
= 0;
68 rtadv
->AdvManagedFlag
= 0;
69 rtadv
->AdvOtherConfigFlag
= 0;
70 rtadv
->AdvHomeAgentFlag
= 0;
71 rtadv
->AdvLinkMTU
= 0;
72 rtadv
->AdvReachableTime
= 0;
73 rtadv
->AdvRetransTimer
= 0;
74 rtadv
->AdvCurHopLimit
= 0;
75 rtadv
->AdvDefaultLifetime
= RTADV_ADV_DEFAULT_LIFETIME
;
76 rtadv
->HomeAgentPreference
= 0;
77 rtadv
->HomeAgentLifetime
= RTADV_ADV_DEFAULT_LIFETIME
;
78 rtadv
->AdvIntervalOption
= 0;
80 rtadv
->AdvPrefixList
= list_new ();
84 /* Initialize installed address chains tree. */
85 zebra_if
->ipv4_subnets
= route_table_init ();
91 /* Called when interface is deleted. */
93 if_zebra_delete_hook (struct interface
*ifp
)
95 struct zebra_if
*zebra_if
;
101 /* Free installed address chains tree. */
102 if (zebra_if
->ipv4_subnets
)
103 route_table_finish (zebra_if
->ipv4_subnets
);
105 XFREE (MTYPE_TMP
, zebra_if
);
111 /* Tie an interface address to its derived subnet list of addresses. */
113 if_subnet_add (struct interface
*ifp
, struct connected
*ifc
)
115 struct route_node
*rn
;
116 struct zebra_if
*zebra_if
;
118 struct list
*addr_list
;
120 assert (ifp
&& ifp
->info
&& ifc
);
121 zebra_if
= ifp
->info
;
123 /* Get address derived subnet node and associated address list, while marking
124 address secondary attribute appropriately. */
127 rn
= route_node_get (zebra_if
->ipv4_subnets
, &cp
);
129 if ((addr_list
= rn
->info
))
130 SET_FLAG (ifc
->flags
, ZEBRA_IFA_SECONDARY
);
133 UNSET_FLAG (ifc
->flags
, ZEBRA_IFA_SECONDARY
);
134 rn
->info
= addr_list
= list_new ();
135 route_lock_node (rn
);
138 /* Tie address at the tail of address list. */
139 listnode_add (addr_list
, ifc
);
141 /* Return list element count. */
142 return (addr_list
->count
);
145 /* Untie an interface address from its derived subnet list of addresses. */
147 if_subnet_delete (struct interface
*ifp
, struct connected
*ifc
)
149 struct route_node
*rn
;
150 struct zebra_if
*zebra_if
;
151 struct list
*addr_list
;
153 assert (ifp
&& ifp
->info
&& ifc
);
154 zebra_if
= ifp
->info
;
156 /* Get address derived subnet node. */
157 rn
= route_node_lookup (zebra_if
->ipv4_subnets
, ifc
->address
);
158 if (! (rn
&& rn
->info
))
160 route_unlock_node (rn
);
162 /* Untie address from subnet's address list. */
163 addr_list
= rn
->info
;
164 listnode_delete (addr_list
, ifc
);
165 route_unlock_node (rn
);
167 /* Return list element count, if not empty. */
168 if (addr_list
->count
)
170 /* If deleted address is primary, mark subsequent one as such and distribute. */
171 if (! CHECK_FLAG (ifc
->flags
, ZEBRA_IFA_SECONDARY
))
173 ifc
= listgetdata (listhead (addr_list
));
174 zebra_interface_address_delete_update (ifp
, ifc
);
175 UNSET_FLAG (ifc
->flags
, ZEBRA_IFA_SECONDARY
);
176 zebra_interface_address_add_update (ifp
, ifc
);
179 return addr_list
->count
;
182 /* Otherwise, free list and route node. */
183 list_free (addr_list
);
185 route_unlock_node (rn
);
190 /* if_flags_mangle: A place for hacks that require mangling
191 * or tweaking the interface flags.
193 * ******************** Solaris flags hacks **************************
195 * Solaris IFF_UP flag reflects only the primary interface as the
196 * routing socket only sends IFINFO for the primary interface. Hence
197 * ~IFF_UP does not per se imply all the logical interfaces are also
198 * down - which we only know of as addresses. Instead we must determine
199 * whether the interface really is up or not according to how many
200 * addresses are still attached. (Solaris always sends RTM_DELADDR if
201 * an interface, logical or not, goes ~IFF_UP).
203 * Ie, we mangle IFF_UP to *additionally* reflect whether or not there
204 * are addresses left in struct connected, not just the actual underlying
207 * We must hence remember the real state of IFF_UP, which we do in
208 * struct zebra_if.primary_state.
210 * Setting IFF_UP within zebra to administratively shutdown the
211 * interface will affect only the primary interface/address on Solaris.
212 ************************End Solaris flags hacks ***********************
215 if_flags_mangle (struct interface
*ifp
, uint64_t *newflags
)
218 struct zebra_if
*zif
= ifp
->info
;
220 zif
->primary_state
= *newflags
& (IFF_UP
& 0xff);
222 if (CHECK_FLAG (zif
->primary_state
, IFF_UP
)
223 || listcount(ifp
->connected
) > 0)
224 SET_FLAG (*newflags
, IFF_UP
);
226 UNSET_FLAG (*newflags
, IFF_UP
);
230 /* Update the flags field of the ifp with the new flag set provided.
231 * Take whatever actions are required for any changes in flags we care
234 * newflags should be the raw value, as obtained from the OS.
237 if_flags_update (struct interface
*ifp
, uint64_t newflags
)
239 if_flags_mangle (ifp
, &newflags
);
241 if (if_is_operative (ifp
))
243 /* operative -> inoperative? */
244 ifp
->flags
= newflags
;
245 if (!if_is_operative (ifp
))
250 /* inoperative -> operative? */
251 ifp
->flags
= newflags
;
252 if (if_is_operative (ifp
))
257 /* Wake up configured address if it is not in current kernel
260 if_addr_wakeup (struct interface
*ifp
)
262 struct listnode
*node
, *nnode
;
263 struct connected
*ifc
;
267 for (ALL_LIST_ELEMENTS (ifp
->connected
, node
, nnode
, ifc
))
271 if (CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
)
272 && ! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
))
275 if (p
->family
== AF_INET
)
277 if (! if_is_up (ifp
))
279 /* XXX: WTF is it trying to set flags here?
280 * caller has just gotten a new interface, has been
281 * handed the flags already. This code has no business
282 * trying to override administrative status of the interface.
283 * The only call path to here which doesn't originate from
284 * kernel event is irdp - what on earth is it trying to do?
286 * further RUNNING is not a settable flag on any system
287 * I (paulj) am aware of.
289 if_set_flags (ifp
, IFF_UP
| IFF_RUNNING
);
293 ret
= if_set_prefix (ifp
, ifc
);
296 zlog_warn ("Can't set interface's address: %s",
297 safe_strerror(errno
));
301 /* Add to subnet chain list. */
302 if_subnet_add (ifp
, ifc
);
304 SET_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
);
306 zebra_interface_address_add_update (ifp
, ifc
);
308 if (if_is_operative(ifp
))
309 connected_up_ipv4 (ifp
, ifc
);
312 if (p
->family
== AF_INET6
)
314 if (! if_is_up (ifp
))
316 /* XXX: See long comment above */
317 if_set_flags (ifp
, IFF_UP
| IFF_RUNNING
);
321 ret
= if_prefix_add_ipv6 (ifp
, ifc
);
324 zlog_warn ("Can't set interface's address: %s",
325 safe_strerror(errno
));
328 SET_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
);
330 zebra_interface_address_add_update (ifp
, ifc
);
332 if (if_is_operative(ifp
))
333 connected_up_ipv6 (ifp
, ifc
);
335 #endif /* HAVE_IPV6 */
340 /* Handle interface addition */
342 if_add_update (struct interface
*ifp
)
344 struct zebra_if
*if_data
;
347 if (if_data
->multicast
== IF_ZEBRA_MULTICAST_ON
)
348 if_set_flags (ifp
, IFF_MULTICAST
);
349 else if (if_data
->multicast
== IF_ZEBRA_MULTICAST_OFF
)
350 if_unset_flags (ifp
, IFF_MULTICAST
);
352 zebra_interface_add_update (ifp
);
354 if (! CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
356 SET_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
);
358 if_addr_wakeup (ifp
);
360 if (IS_ZEBRA_DEBUG_KERNEL
)
361 zlog_debug ("interface %s index %d becomes active.",
362 ifp
->name
, ifp
->ifindex
);
366 if (IS_ZEBRA_DEBUG_KERNEL
)
367 zlog_debug ("interface %s index %d is added.", ifp
->name
, ifp
->ifindex
);
371 /* Handle an interface delete event */
373 if_delete_update (struct interface
*ifp
)
375 struct listnode
*node
;
376 struct listnode
*next
;
377 struct listnode
*first
;
378 struct listnode
*last
;
379 struct connected
*ifc
;
381 struct route_node
*rn
;
382 struct zebra_if
*zebra_if
;
383 struct list
*addr_list
;
385 zebra_if
= ifp
->info
;
389 zlog_err ("interface %s index %d is still up while being deleted.",
390 ifp
->name
, ifp
->ifindex
);
394 /* Mark interface as inactive */
395 UNSET_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
);
397 if (IS_ZEBRA_DEBUG_KERNEL
)
398 zlog_debug ("interface %s index %d is now inactive.",
399 ifp
->name
, ifp
->ifindex
);
401 /* Delete connected routes from the kernel. */
405 while ((node
= (last
? last
->next
: listhead (ifp
->connected
))))
407 ifc
= listgetdata (node
);
410 if (p
->family
== AF_INET
)
412 rn
= route_node_lookup (zebra_if
->ipv4_subnets
, p
);
413 route_unlock_node (rn
);
414 addr_list
= (struct list
*) rn
->info
;
416 /* Remove addresses, secondaries first. */
417 first
= listhead (addr_list
);
418 for (node
= first
->next
; node
|| first
; node
= next
)
427 ifc
= listgetdata (node
);
430 connected_down_ipv4 (ifp
, ifc
);
432 zebra_interface_address_delete_update (ifp
, ifc
);
434 UNSET_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
);
436 /* Remove from subnet chain. */
437 list_delete_node (addr_list
, node
);
438 route_unlock_node (rn
);
440 /* Remove from interface address list (unconditionally). */
441 listnode_delete (ifp
->connected
, ifc
);
442 connected_free (ifc
);
445 /* Free chain list and respective route node. */
446 list_delete (addr_list
);
448 route_unlock_node (rn
);
451 else if (p
->family
== AF_INET6
)
453 connected_down_ipv6 (ifp
, ifc
);
455 zebra_interface_address_delete_update (ifp
, ifc
);
457 UNSET_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
);
459 if (CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
))
463 listnode_delete (ifp
->connected
, ifc
);
464 connected_free (ifc
);
467 #endif /* HAVE_IPV6 */
470 zebra_interface_delete_update (ifp
);
472 /* Update ifindex after distributing the delete message. This is in
473 case any client needs to have the old value of ifindex available
474 while processing the deletion. Each client daemon is responsible
475 for setting ifindex to IFINDEX_INTERNAL after processing the
476 interface deletion message. */
477 ifp
->ifindex
= IFINDEX_INTERNAL
;
480 /* Interface is up. */
482 if_up (struct interface
*ifp
)
484 struct listnode
*node
;
485 struct listnode
*next
;
486 struct connected
*ifc
;
489 /* Notify the protocol daemons. */
490 zebra_interface_up_update (ifp
);
492 /* Install connected routes to the kernel. */
495 for (ALL_LIST_ELEMENTS (ifp
->connected
, node
, next
, ifc
))
499 if (p
->family
== AF_INET
)
500 connected_up_ipv4 (ifp
, ifc
);
502 else if (p
->family
== AF_INET6
)
503 connected_up_ipv6 (ifp
, ifc
);
504 #endif /* HAVE_IPV6 */
508 /* Examine all static routes. */
512 /* Interface goes down. We have to manage different behavior of based
515 if_down (struct interface
*ifp
)
517 struct listnode
*node
;
518 struct listnode
*next
;
519 struct connected
*ifc
;
522 /* Notify to the protocol daemons. */
523 zebra_interface_down_update (ifp
);
525 /* Delete connected routes from the kernel. */
528 for (ALL_LIST_ELEMENTS (ifp
->connected
, node
, next
, ifc
))
532 if (p
->family
== AF_INET
)
533 connected_down_ipv4 (ifp
, ifc
);
535 else if (p
->family
== AF_INET6
)
536 connected_down_ipv6 (ifp
, ifc
);
537 #endif /* HAVE_IPV6 */
541 /* Examine all static routes which direct to the interface. */
546 if_refresh (struct interface
*ifp
)
551 /* Printout flag information into vty */
553 if_flag_dump_vty (struct vty
*vty
, uint64_t flag
)
557 #define IFF_OUT_VTY(X, Y) \
558 if ((X) && (flag & (X))) \
561 vty_out (vty, ","); \
568 IFF_OUT_VTY (IFF_UP
, "UP");
569 IFF_OUT_VTY (IFF_BROADCAST
, "BROADCAST");
570 IFF_OUT_VTY (IFF_DEBUG
, "DEBUG");
571 IFF_OUT_VTY (IFF_LOOPBACK
, "LOOPBACK");
572 IFF_OUT_VTY (IFF_POINTOPOINT
, "POINTOPOINT");
573 IFF_OUT_VTY (IFF_NOTRAILERS
, "NOTRAILERS");
574 IFF_OUT_VTY (IFF_RUNNING
, "RUNNING");
575 IFF_OUT_VTY (IFF_NOARP
, "NOARP");
576 IFF_OUT_VTY (IFF_PROMISC
, "PROMISC");
577 IFF_OUT_VTY (IFF_ALLMULTI
, "ALLMULTI");
578 IFF_OUT_VTY (IFF_OACTIVE
, "OACTIVE");
579 IFF_OUT_VTY (IFF_SIMPLEX
, "SIMPLEX");
580 IFF_OUT_VTY (IFF_LINK0
, "LINK0");
581 IFF_OUT_VTY (IFF_LINK1
, "LINK1");
582 IFF_OUT_VTY (IFF_LINK2
, "LINK2");
583 IFF_OUT_VTY (IFF_MULTICAST
, "MULTICAST");
585 IFF_OUT_VTY (IFF_VIRTUAL
, "IFF_VIRTUAL");
586 IFF_OUT_VTY (IFF_NOXMIT
, "IFF_NOXMIT");
587 #endif /* SOLARIS_IPV6 */
591 /* Output prefix string to vty. */
593 prefix_vty_out (struct vty
*vty
, struct prefix
*p
)
595 char str
[INET6_ADDRSTRLEN
];
597 inet_ntop (p
->family
, &p
->u
.prefix
, str
, sizeof (str
));
598 vty_out (vty
, "%s", str
);
602 /* Dump if address information to vty. */
604 connected_dump_vty (struct vty
*vty
, struct connected
*connected
)
607 struct interface
*ifp
;
609 /* Set interface pointer. */
610 ifp
= connected
->ifp
;
612 /* Print interface address. */
613 p
= connected
->address
;
614 vty_out (vty
, " %s ", prefix_family_str (p
));
615 prefix_vty_out (vty
, p
);
616 vty_out (vty
, "/%d", p
->prefixlen
);
618 /* If there is destination address, print it. */
619 p
= connected
->destination
;
622 if (p
->family
== AF_INET
)
623 if (ifp
->flags
& IFF_BROADCAST
)
625 vty_out (vty
, " broadcast ");
626 prefix_vty_out (vty
, p
);
629 if (ifp
->flags
& IFF_POINTOPOINT
)
631 vty_out (vty
, " pointopoint ");
632 prefix_vty_out (vty
, p
);
636 if (CHECK_FLAG (connected
->flags
, ZEBRA_IFA_SECONDARY
))
637 vty_out (vty
, " secondary");
639 if (connected
->label
)
640 vty_out (vty
, " %s", connected
->label
);
642 vty_out (vty
, "%s", VTY_NEWLINE
);
646 /* Dump interface ND information to vty. */
648 nd_dump_vty (struct vty
*vty
, struct interface
*ifp
)
650 struct zebra_if
*zif
;
651 struct rtadvconf
*rtadv
;
654 zif
= (struct zebra_if
*) ifp
->info
;
657 if (rtadv
->AdvSendAdvertisements
)
659 vty_out (vty
, " ND advertised reachable time is %d milliseconds%s",
660 rtadv
->AdvReachableTime
, VTY_NEWLINE
);
661 vty_out (vty
, " ND advertised retransmit interval is %d milliseconds%s",
662 rtadv
->AdvRetransTimer
, VTY_NEWLINE
);
663 interval
= rtadv
->MaxRtrAdvInterval
;
665 vty_out (vty
, " ND router advertisements are sent every "
666 "%d milliseconds%s", interval
,
669 vty_out (vty
, " ND router advertisements are sent every "
670 "%d seconds%s", interval
/ 1000,
672 vty_out (vty
, " ND router advertisements live for %d seconds%s",
673 rtadv
->AdvDefaultLifetime
, VTY_NEWLINE
);
674 if (rtadv
->AdvManagedFlag
)
675 vty_out (vty
, " Hosts use DHCP to obtain routable addresses.%s",
678 vty_out (vty
, " Hosts use stateless autoconfig for addresses.%s",
680 if (rtadv
->AdvHomeAgentFlag
)
681 vty_out (vty
, " ND router advertisements with "
682 "Home Agent flag bit set.%s",
684 if (rtadv
->AdvIntervalOption
)
685 vty_out (vty
, " ND router advertisements with Adv. Interval option.%s",
691 /* Interface's information print out to vty interface. */
693 if_dump_vty (struct vty
*vty
, struct interface
*ifp
)
695 #ifdef HAVE_SOCKADDR_DL
696 struct sockaddr_dl
*sdl
;
697 #endif /* HAVE_SOCKADDR_DL */
698 struct connected
*connected
;
699 struct listnode
*node
;
700 struct route_node
*rn
;
701 struct zebra_if
*zebra_if
;
703 zebra_if
= ifp
->info
;
705 vty_out (vty
, "Interface %s is ", ifp
->name
);
707 vty_out (vty
, "up, line protocol ");
709 if (CHECK_FLAG(ifp
->status
, ZEBRA_INTERFACE_LINKDETECTION
)) {
710 if (if_is_running(ifp
))
711 vty_out (vty
, "is up%s", VTY_NEWLINE
);
713 vty_out (vty
, "is down%s", VTY_NEWLINE
);
715 vty_out (vty
, "detection is disabled%s", VTY_NEWLINE
);
718 vty_out (vty
, "down%s", VTY_NEWLINE
);
722 vty_out (vty
, " Description: %s%s", ifp
->desc
,
724 if (ifp
->ifindex
== IFINDEX_INTERNAL
)
726 vty_out(vty
, " pseudo interface%s", VTY_NEWLINE
);
729 else if (! CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
731 vty_out(vty
, " index %d inactive interface%s",
737 vty_out (vty
, " index %d metric %d mtu %d ",
738 ifp
->ifindex
, ifp
->metric
, ifp
->mtu
);
740 if (ifp
->mtu6
!= ifp
->mtu
)
741 vty_out (vty
, "mtu6 %d ", ifp
->mtu6
);
743 vty_out (vty
, "%s flags: ", VTY_NEWLINE
);
745 if_flag_dump_vty (vty
, ifp
->flags
);
747 vty_out (vty
, "%s", VTY_NEWLINE
);
749 /* Hardware address. */
750 #ifdef HAVE_SOCKADDR_DL
752 if (sdl
!= NULL
&& sdl
->sdl_alen
!= 0)
757 vty_out (vty
, " HWaddr: ");
758 for (i
= 0, ptr
= (u_char
*)LLADDR (sdl
); i
< sdl
->sdl_alen
; i
++, ptr
++)
759 vty_out (vty
, "%s%02x", i
== 0 ? "" : ":", *ptr
);
760 vty_out (vty
, "%s", VTY_NEWLINE
);
763 if (ifp
->hw_addr_len
!= 0)
767 vty_out (vty
, " HWaddr: ");
768 for (i
= 0; i
< ifp
->hw_addr_len
; i
++)
769 vty_out (vty
, "%s%02x", i
== 0 ? "" : ":", ifp
->hw_addr
[i
]);
770 vty_out (vty
, "%s", VTY_NEWLINE
);
772 #endif /* HAVE_SOCKADDR_DL */
774 /* Bandwidth in kbps */
775 if (ifp
->bandwidth
!= 0)
777 vty_out(vty
, " bandwidth %u kbps", ifp
->bandwidth
);
778 vty_out(vty
, "%s", VTY_NEWLINE
);
781 for (rn
= route_top (zebra_if
->ipv4_subnets
); rn
; rn
= route_next (rn
))
786 for (ALL_LIST_ELEMENTS_RO ((struct list
*)rn
->info
, node
, connected
))
787 connected_dump_vty (vty
, connected
);
790 for (ALL_LIST_ELEMENTS_RO (ifp
->connected
, node
, connected
))
792 if (CHECK_FLAG (connected
->conf
, ZEBRA_IFC_REAL
) &&
793 (connected
->address
->family
== AF_INET6
))
794 connected_dump_vty (vty
, connected
);
798 nd_dump_vty (vty
, ifp
);
801 #ifdef HAVE_PROC_NET_DEV
802 /* Statistics print out using proc file system. */
803 vty_out (vty
, " %lu input packets (%lu multicast), %lu bytes, "
805 ifp
->stats
.rx_packets
, ifp
->stats
.rx_multicast
,
806 ifp
->stats
.rx_bytes
, ifp
->stats
.rx_dropped
, VTY_NEWLINE
);
808 vty_out (vty
, " %lu input errors, %lu length, %lu overrun,"
809 " %lu CRC, %lu frame%s",
810 ifp
->stats
.rx_errors
, ifp
->stats
.rx_length_errors
,
811 ifp
->stats
.rx_over_errors
, ifp
->stats
.rx_crc_errors
,
812 ifp
->stats
.rx_frame_errors
, VTY_NEWLINE
);
814 vty_out (vty
, " %lu fifo, %lu missed%s", ifp
->stats
.rx_fifo_errors
,
815 ifp
->stats
.rx_missed_errors
, VTY_NEWLINE
);
817 vty_out (vty
, " %lu output packets, %lu bytes, %lu dropped%s",
818 ifp
->stats
.tx_packets
, ifp
->stats
.tx_bytes
,
819 ifp
->stats
.tx_dropped
, VTY_NEWLINE
);
821 vty_out (vty
, " %lu output errors, %lu aborted, %lu carrier,"
822 " %lu fifo, %lu heartbeat%s",
823 ifp
->stats
.tx_errors
, ifp
->stats
.tx_aborted_errors
,
824 ifp
->stats
.tx_carrier_errors
, ifp
->stats
.tx_fifo_errors
,
825 ifp
->stats
.tx_heartbeat_errors
, VTY_NEWLINE
);
827 vty_out (vty
, " %lu window, %lu collisions%s",
828 ifp
->stats
.tx_window_errors
, ifp
->stats
.collisions
, VTY_NEWLINE
);
829 #endif /* HAVE_PROC_NET_DEV */
831 #ifdef HAVE_NET_RT_IFLIST
832 #if defined (__bsdi__) || defined (__NetBSD__)
833 /* Statistics print out using sysctl (). */
834 vty_out (vty
, " input packets %qu, bytes %qu, dropped %qu,"
835 " multicast packets %qu%s",
836 ifp
->stats
.ifi_ipackets
, ifp
->stats
.ifi_ibytes
,
837 ifp
->stats
.ifi_iqdrops
, ifp
->stats
.ifi_imcasts
,
840 vty_out (vty
, " input errors %qu%s",
841 ifp
->stats
.ifi_ierrors
, VTY_NEWLINE
);
843 vty_out (vty
, " output packets %qu, bytes %qu, multicast packets %qu%s",
844 ifp
->stats
.ifi_opackets
, ifp
->stats
.ifi_obytes
,
845 ifp
->stats
.ifi_omcasts
, VTY_NEWLINE
);
847 vty_out (vty
, " output errors %qu%s",
848 ifp
->stats
.ifi_oerrors
, VTY_NEWLINE
);
850 vty_out (vty
, " collisions %qu%s",
851 ifp
->stats
.ifi_collisions
, VTY_NEWLINE
);
853 /* Statistics print out using sysctl (). */
854 vty_out (vty
, " input packets %lu, bytes %lu, dropped %lu,"
855 " multicast packets %lu%s",
856 ifp
->stats
.ifi_ipackets
, ifp
->stats
.ifi_ibytes
,
857 ifp
->stats
.ifi_iqdrops
, ifp
->stats
.ifi_imcasts
,
860 vty_out (vty
, " input errors %lu%s",
861 ifp
->stats
.ifi_ierrors
, VTY_NEWLINE
);
863 vty_out (vty
, " output packets %lu, bytes %lu, multicast packets %lu%s",
864 ifp
->stats
.ifi_opackets
, ifp
->stats
.ifi_obytes
,
865 ifp
->stats
.ifi_omcasts
, VTY_NEWLINE
);
867 vty_out (vty
, " output errors %lu%s",
868 ifp
->stats
.ifi_oerrors
, VTY_NEWLINE
);
870 vty_out (vty
, " collisions %lu%s",
871 ifp
->stats
.ifi_collisions
, VTY_NEWLINE
);
872 #endif /* __bsdi__ || __NetBSD__ */
873 #endif /* HAVE_NET_RT_IFLIST */
876 /* Check supported address family. */
878 if_supported_family (int family
)
880 if (family
== AF_INET
)
883 if (family
== AF_INET6
)
885 #endif /* HAVE_IPV6 */
889 /* Wrapper hook point for zebra daemon so that ifindex can be set
890 * DEFUN macro not used as extract.pl HAS to ignore this
891 * See also interface_cmd in lib/if.c
893 DEFUN_NOSH (zebra_interface
,
896 "Select an interface to configure\n"
897 "Interface's name\n")
900 struct interface
* ifp
;
902 /* Call lib interface() */
903 if ((ret
= interface_cmd
.func (self
, vty
, argc
, argv
)) != CMD_SUCCESS
)
908 if (ifp
->ifindex
== IFINDEX_INTERNAL
)
909 /* Is this really necessary? Shouldn't status be initialized to 0
911 UNSET_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
);
916 struct cmd_node interface_node
=
923 /* Show all or specified interface to vty. */
924 DEFUN (show_interface
, show_interface_cmd
,
925 "show interface [IFNAME]",
927 "Interface status and configuration\n"
930 struct listnode
*node
;
931 struct interface
*ifp
;
933 #ifdef HAVE_PROC_NET_DEV
934 /* If system has interface statistics via proc file system, update
936 ifstat_update_proc ();
937 #endif /* HAVE_PROC_NET_DEV */
938 #ifdef HAVE_NET_RT_IFLIST
939 ifstat_update_sysctl ();
940 #endif /* HAVE_NET_RT_IFLIST */
942 /* Specified interface print. */
945 ifp
= if_lookup_by_name (argv
[0]);
948 vty_out (vty
, "%% Can't find interface %s%s", argv
[0],
952 if_dump_vty (vty
, ifp
);
956 /* All interface print. */
957 for (ALL_LIST_ELEMENTS_RO (iflist
, node
, ifp
))
958 if_dump_vty (vty
, ifp
);
963 DEFUN (show_interface_desc
,
964 show_interface_desc_cmd
,
965 "show interface description",
967 "Interface status and configuration\n"
968 "Interface description\n")
970 struct listnode
*node
;
971 struct interface
*ifp
;
973 vty_out (vty
, "Interface Status Protocol Description%s", VTY_NEWLINE
);
974 for (ALL_LIST_ELEMENTS_RO (iflist
, node
, ifp
))
978 len
= vty_out (vty
, "%s", ifp
->name
);
979 vty_out (vty
, "%*s", (16 - len
), " ");
983 vty_out (vty
, "up ");
984 if (CHECK_FLAG(ifp
->status
, ZEBRA_INTERFACE_LINKDETECTION
))
986 if (if_is_running(ifp
))
987 vty_out (vty
, "up ");
989 vty_out (vty
, "down ");
993 vty_out (vty
, "unknown ");
998 vty_out (vty
, "down down ");
1002 vty_out (vty
, "%s", ifp
->desc
);
1003 vty_out (vty
, "%s", VTY_NEWLINE
);
1011 "Set multicast flag to interface\n")
1014 struct interface
*ifp
;
1015 struct zebra_if
*if_data
;
1017 ifp
= (struct interface
*) vty
->index
;
1018 if (CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
1020 ret
= if_set_flags (ifp
, IFF_MULTICAST
);
1023 vty_out (vty
, "Can't set multicast flag%s", VTY_NEWLINE
);
1028 if_data
= ifp
->info
;
1029 if_data
->multicast
= IF_ZEBRA_MULTICAST_ON
;
1034 DEFUN (no_multicast
,
1038 "Unset multicast flag to interface\n")
1041 struct interface
*ifp
;
1042 struct zebra_if
*if_data
;
1044 ifp
= (struct interface
*) vty
->index
;
1045 if (CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
1047 ret
= if_unset_flags (ifp
, IFF_MULTICAST
);
1050 vty_out (vty
, "Can't unset multicast flag%s", VTY_NEWLINE
);
1055 if_data
= ifp
->info
;
1056 if_data
->multicast
= IF_ZEBRA_MULTICAST_OFF
;
1064 "Enable link detection on interface\n")
1066 struct interface
*ifp
;
1067 int if_was_operative
;
1069 ifp
= (struct interface
*) vty
->index
;
1070 if_was_operative
= if_is_operative(ifp
);
1071 SET_FLAG(ifp
->status
, ZEBRA_INTERFACE_LINKDETECTION
);
1073 /* When linkdetection is enabled, if might come down */
1074 if (!if_is_operative(ifp
) && if_was_operative
) if_down(ifp
);
1076 /* FIXME: Will defer status change forwarding if interface
1077 does not come down! */
1083 DEFUN (no_linkdetect
,
1087 "Disable link detection on interface\n")
1089 struct interface
*ifp
;
1090 int if_was_operative
;
1092 ifp
= (struct interface
*) vty
->index
;
1093 if_was_operative
= if_is_operative(ifp
);
1094 UNSET_FLAG(ifp
->status
, ZEBRA_INTERFACE_LINKDETECTION
);
1096 /* Interface may come up after disabling link detection */
1097 if (if_is_operative(ifp
) && !if_was_operative
) if_up(ifp
);
1099 /* FIXME: see linkdetect_cmd */
1107 "Shutdown the selected interface\n")
1110 struct interface
*ifp
;
1111 struct zebra_if
*if_data
;
1113 ifp
= (struct interface
*) vty
->index
;
1114 ret
= if_unset_flags (ifp
, IFF_UP
);
1117 vty_out (vty
, "Can't shutdown interface%s", VTY_NEWLINE
);
1121 if_data
= ifp
->info
;
1122 if_data
->shutdown
= IF_ZEBRA_SHUTDOWN_ON
;
1127 DEFUN (no_shutdown_if
,
1131 "Shutdown the selected interface\n")
1134 struct interface
*ifp
;
1135 struct zebra_if
*if_data
;
1137 ifp
= (struct interface
*) vty
->index
;
1138 ret
= if_set_flags (ifp
, IFF_UP
| IFF_RUNNING
);
1141 vty_out (vty
, "Can't up interface%s", VTY_NEWLINE
);
1145 if_data
= ifp
->info
;
1146 if_data
->shutdown
= IF_ZEBRA_SHUTDOWN_OFF
;
1151 DEFUN (bandwidth_if
,
1153 "bandwidth <1-10000000>",
1154 "Set bandwidth informational parameter\n"
1155 "Bandwidth in kilobits\n")
1157 struct interface
*ifp
;
1158 unsigned int bandwidth
;
1160 ifp
= (struct interface
*) vty
->index
;
1161 bandwidth
= strtol(argv
[0], NULL
, 10);
1163 /* bandwidth range is <1-10000000> */
1164 if (bandwidth
< 1 || bandwidth
> 10000000)
1166 vty_out (vty
, "Bandwidth is invalid%s", VTY_NEWLINE
);
1170 ifp
->bandwidth
= bandwidth
;
1172 /* force protocols to recalculate routes due to cost change */
1173 if (if_is_operative (ifp
))
1174 zebra_interface_up_update (ifp
);
1179 DEFUN (no_bandwidth_if
,
1180 no_bandwidth_if_cmd
,
1183 "Set bandwidth informational parameter\n")
1185 struct interface
*ifp
;
1187 ifp
= (struct interface
*) vty
->index
;
1191 /* force protocols to recalculate routes due to cost change */
1192 if (if_is_operative (ifp
))
1193 zebra_interface_up_update (ifp
);
1198 ALIAS (no_bandwidth_if
,
1199 no_bandwidth_if_val_cmd
,
1200 "no bandwidth <1-10000000>",
1202 "Set bandwidth informational parameter\n"
1203 "Bandwidth in kilobits\n")
1206 ip_address_install (struct vty
*vty
, struct interface
*ifp
,
1207 const char *addr_str
, const char *peer_str
,
1210 struct prefix_ipv4 cp
;
1211 struct connected
*ifc
;
1212 struct prefix_ipv4
*p
;
1215 ret
= str2prefix_ipv4 (addr_str
, &cp
);
1218 vty_out (vty
, "%% Malformed address %s", VTY_NEWLINE
);
1222 ifc
= connected_check (ifp
, (struct prefix
*) &cp
);
1225 ifc
= connected_new ();
1229 p
= prefix_ipv4_new ();
1231 ifc
->address
= (struct prefix
*) p
;
1234 if (p
->prefixlen
<= IPV4_MAX_PREFIXLEN
-2)
1236 p
= prefix_ipv4_new ();
1238 p
->prefix
.s_addr
= ipv4_broadcast_addr(p
->prefix
.s_addr
,p
->prefixlen
);
1239 ifc
->destination
= (struct prefix
*) p
;
1244 ifc
->label
= XSTRDUP (MTYPE_CONNECTED_LABEL
, label
);
1246 /* Add to linked list. */
1247 listnode_add (ifp
->connected
, ifc
);
1250 /* This address is configured from zebra. */
1251 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
))
1252 SET_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
);
1254 /* In case of this route need to install kernel. */
1255 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
)
1256 && CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
1258 /* Some system need to up the interface to set IP address. */
1259 if (! if_is_up (ifp
))
1261 if_set_flags (ifp
, IFF_UP
| IFF_RUNNING
);
1265 ret
= if_set_prefix (ifp
, ifc
);
1268 vty_out (vty
, "%% Can't set interface IP address: %s.%s",
1269 safe_strerror(errno
), VTY_NEWLINE
);
1273 /* Add to subnet chain list (while marking secondary attribute). */
1274 if_subnet_add (ifp
, ifc
);
1276 /* IP address propery set. */
1277 SET_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
);
1279 /* Update interface address information to protocol daemon. */
1280 zebra_interface_address_add_update (ifp
, ifc
);
1282 /* If interface is up register connected route. */
1283 if (if_is_operative(ifp
))
1284 connected_up_ipv4 (ifp
, ifc
);
1291 ip_address_uninstall (struct vty
*vty
, struct interface
*ifp
,
1292 const char *addr_str
, const char *peer_str
,
1295 struct prefix_ipv4 cp
;
1296 struct connected
*ifc
;
1299 /* Convert to prefix structure. */
1300 ret
= str2prefix_ipv4 (addr_str
, &cp
);
1303 vty_out (vty
, "%% Malformed address %s", VTY_NEWLINE
);
1307 /* Check current interface address. */
1308 ifc
= connected_check (ifp
, (struct prefix
*) &cp
);
1311 vty_out (vty
, "%% Can't find address%s", VTY_NEWLINE
);
1315 /* This is not configured address. */
1316 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
))
1319 /* This is not real address or interface is not active. */
1320 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
)
1321 || ! CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
1323 listnode_delete (ifp
->connected
, ifc
);
1324 connected_free (ifc
);
1328 /* This is real route. */
1329 ret
= if_unset_prefix (ifp
, ifc
);
1332 vty_out (vty
, "%% Can't unset interface IP address: %s.%s",
1333 safe_strerror(errno
), VTY_NEWLINE
);
1338 /* Redistribute this information. */
1339 zebra_interface_address_delete_update (ifp
, ifc
);
1341 /* Remove connected route. */
1342 connected_down_ipv4 (ifp
, ifc
);
1344 /* Free address information. */
1345 listnode_delete (ifp
->connected
, ifc
);
1346 connected_free (ifc
);
1354 "ip address A.B.C.D/M",
1355 "Interface Internet Protocol config commands\n"
1356 "Set the IP address of an interface\n"
1357 "IP address (e.g. 10.0.0.1/8)\n")
1359 return ip_address_install (vty
, vty
->index
, argv
[0], NULL
, NULL
);
1362 DEFUN (no_ip_address
,
1364 "no ip address A.B.C.D/M",
1366 "Interface Internet Protocol config commands\n"
1367 "Set the IP address of an interface\n"
1368 "IP Address (e.g. 10.0.0.1/8)")
1370 return ip_address_uninstall (vty
, vty
->index
, argv
[0], NULL
, NULL
);
1374 DEFUN (ip_address_label
,
1375 ip_address_label_cmd
,
1376 "ip address A.B.C.D/M label LINE",
1377 "Interface Internet Protocol config commands\n"
1378 "Set the IP address of an interface\n"
1379 "IP address (e.g. 10.0.0.1/8)\n"
1380 "Label of this address\n"
1383 return ip_address_install (vty
, vty
->index
, argv
[0], NULL
, argv
[1]);
1386 DEFUN (no_ip_address_label
,
1387 no_ip_address_label_cmd
,
1388 "no ip address A.B.C.D/M label LINE",
1390 "Interface Internet Protocol config commands\n"
1391 "Set the IP address of an interface\n"
1392 "IP address (e.g. 10.0.0.1/8)\n"
1393 "Label of this address\n"
1396 return ip_address_uninstall (vty
, vty
->index
, argv
[0], NULL
, argv
[1]);
1398 #endif /* HAVE_NETLINK */
1402 ipv6_address_install (struct vty
*vty
, struct interface
*ifp
,
1403 const char *addr_str
, const char *peer_str
,
1404 const char *label
, int secondary
)
1406 struct prefix_ipv6 cp
;
1407 struct connected
*ifc
;
1408 struct prefix_ipv6
*p
;
1411 ret
= str2prefix_ipv6 (addr_str
, &cp
);
1414 vty_out (vty
, "%% Malformed address %s", VTY_NEWLINE
);
1418 ifc
= connected_check (ifp
, (struct prefix
*) &cp
);
1421 ifc
= connected_new ();
1425 p
= prefix_ipv6_new ();
1427 ifc
->address
= (struct prefix
*) p
;
1431 SET_FLAG (ifc
->flags
, ZEBRA_IFA_SECONDARY
);
1435 ifc
->label
= XSTRDUP (MTYPE_CONNECTED_LABEL
, label
);
1437 /* Add to linked list. */
1438 listnode_add (ifp
->connected
, ifc
);
1441 /* This address is configured from zebra. */
1442 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
))
1443 SET_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
);
1445 /* In case of this route need to install kernel. */
1446 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
)
1447 && CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
1449 /* Some system need to up the interface to set IP address. */
1450 if (! if_is_up (ifp
))
1452 if_set_flags (ifp
, IFF_UP
| IFF_RUNNING
);
1456 ret
= if_prefix_add_ipv6 (ifp
, ifc
);
1460 vty_out (vty
, "%% Can't set interface IP address: %s.%s",
1461 safe_strerror(errno
), VTY_NEWLINE
);
1465 /* IP address propery set. */
1466 SET_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
);
1468 /* Update interface address information to protocol daemon. */
1469 zebra_interface_address_add_update (ifp
, ifc
);
1471 /* If interface is up register connected route. */
1472 if (if_is_operative(ifp
))
1473 connected_up_ipv6 (ifp
, ifc
);
1480 ipv6_address_uninstall (struct vty
*vty
, struct interface
*ifp
,
1481 const char *addr_str
, const char *peer_str
,
1482 const char *label
, int secondry
)
1484 struct prefix_ipv6 cp
;
1485 struct connected
*ifc
;
1488 /* Convert to prefix structure. */
1489 ret
= str2prefix_ipv6 (addr_str
, &cp
);
1492 vty_out (vty
, "%% Malformed address %s", VTY_NEWLINE
);
1496 /* Check current interface address. */
1497 ifc
= connected_check (ifp
, (struct prefix
*) &cp
);
1500 vty_out (vty
, "%% Can't find address%s", VTY_NEWLINE
);
1504 /* This is not configured address. */
1505 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
))
1508 /* This is not real address or interface is not active. */
1509 if (! CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_REAL
)
1510 || ! CHECK_FLAG (ifp
->status
, ZEBRA_INTERFACE_ACTIVE
))
1512 listnode_delete (ifp
->connected
, ifc
);
1513 connected_free (ifc
);
1517 /* This is real route. */
1518 ret
= if_prefix_delete_ipv6 (ifp
, ifc
);
1521 vty_out (vty
, "%% Can't unset interface IP address: %s.%s",
1522 safe_strerror(errno
), VTY_NEWLINE
);
1526 /* Redistribute this information. */
1527 zebra_interface_address_delete_update (ifp
, ifc
);
1529 /* Remove connected route. */
1530 connected_down_ipv6 (ifp
, ifc
);
1532 /* Free address information. */
1533 listnode_delete (ifp
->connected
, ifc
);
1534 connected_free (ifc
);
1539 DEFUN (ipv6_address
,
1541 "ipv6 address X:X::X:X/M",
1542 "Interface IPv6 config commands\n"
1543 "Set the IP address of an interface\n"
1544 "IPv6 address (e.g. 3ffe:506::1/48)\n")
1546 return ipv6_address_install (vty
, vty
->index
, argv
[0], NULL
, NULL
, 0);
1549 DEFUN (no_ipv6_address
,
1550 no_ipv6_address_cmd
,
1551 "no ipv6 address X:X::X:X/M",
1553 "Interface IPv6 config commands\n"
1554 "Set the IP address of an interface\n"
1555 "IPv6 address (e.g. 3ffe:506::1/48)\n")
1557 return ipv6_address_uninstall (vty
, vty
->index
, argv
[0], NULL
, NULL
, 0);
1559 #endif /* HAVE_IPV6 */
1562 if_config_write (struct vty
*vty
)
1564 struct listnode
*node
;
1565 struct interface
*ifp
;
1568 for (ALL_LIST_ELEMENTS_RO (iflist
, node
, ifp
))
1570 struct zebra_if
*if_data
;
1571 struct listnode
*addrnode
;
1572 struct connected
*ifc
;
1575 if_data
= ifp
->info
;
1577 vty_out (vty
, "interface %s%s", ifp
->name
,
1581 vty_out (vty
, " description %s%s", ifp
->desc
,
1584 /* Assign bandwidth here to avoid unnecessary interface flap
1585 while processing config script */
1586 if (ifp
->bandwidth
!= 0)
1587 vty_out(vty
, " bandwidth %u%s", ifp
->bandwidth
, VTY_NEWLINE
);
1589 if (CHECK_FLAG(ifp
->status
, ZEBRA_INTERFACE_LINKDETECTION
))
1590 vty_out(vty
, " link-detect%s", VTY_NEWLINE
);
1592 for (ALL_LIST_ELEMENTS_RO (ifp
->connected
, addrnode
, ifc
))
1594 if (CHECK_FLAG (ifc
->conf
, ZEBRA_IFC_CONFIGURED
))
1597 vty_out (vty
, " ip%s address %s/%d",
1598 p
->family
== AF_INET
? "" : "v6",
1599 inet_ntop (p
->family
, &p
->u
.prefix
, buf
, BUFSIZ
),
1603 vty_out (vty
, " label %s", ifc
->label
);
1605 vty_out (vty
, "%s", VTY_NEWLINE
);
1611 if (if_data
->shutdown
== IF_ZEBRA_SHUTDOWN_ON
)
1612 vty_out (vty
, " shutdown%s", VTY_NEWLINE
);
1614 if (if_data
->multicast
!= IF_ZEBRA_MULTICAST_UNSPEC
)
1615 vty_out (vty
, " %smulticast%s",
1616 if_data
->multicast
== IF_ZEBRA_MULTICAST_ON
? "" : "no ",
1621 rtadv_config_write (vty
, ifp
);
1625 irdp_config_write (vty
, ifp
);
1628 vty_out (vty
, "!%s", VTY_NEWLINE
);
1633 /* Allocate and initialize interface vector. */
1635 zebra_if_init (void)
1637 /* Initialize interface and new hook. */
1639 if_add_hook (IF_NEW_HOOK
, if_zebra_new_hook
);
1640 if_add_hook (IF_DELETE_HOOK
, if_zebra_delete_hook
);
1642 /* Install configuration write function. */
1643 install_node (&interface_node
, if_config_write
);
1645 install_element (VIEW_NODE
, &show_interface_cmd
);
1646 install_element (ENABLE_NODE
, &show_interface_cmd
);
1647 install_element (ENABLE_NODE
, &show_interface_desc_cmd
);
1648 install_element (CONFIG_NODE
, &zebra_interface_cmd
);
1649 install_element (CONFIG_NODE
, &no_interface_cmd
);
1650 install_default (INTERFACE_NODE
);
1651 install_element (INTERFACE_NODE
, &interface_desc_cmd
);
1652 install_element (INTERFACE_NODE
, &no_interface_desc_cmd
);
1653 install_element (INTERFACE_NODE
, &multicast_cmd
);
1654 install_element (INTERFACE_NODE
, &no_multicast_cmd
);
1655 install_element (INTERFACE_NODE
, &linkdetect_cmd
);
1656 install_element (INTERFACE_NODE
, &no_linkdetect_cmd
);
1657 install_element (INTERFACE_NODE
, &shutdown_if_cmd
);
1658 install_element (INTERFACE_NODE
, &no_shutdown_if_cmd
);
1659 install_element (INTERFACE_NODE
, &bandwidth_if_cmd
);
1660 install_element (INTERFACE_NODE
, &no_bandwidth_if_cmd
);
1661 install_element (INTERFACE_NODE
, &no_bandwidth_if_val_cmd
);
1662 install_element (INTERFACE_NODE
, &ip_address_cmd
);
1663 install_element (INTERFACE_NODE
, &no_ip_address_cmd
);
1665 install_element (INTERFACE_NODE
, &ipv6_address_cmd
);
1666 install_element (INTERFACE_NODE
, &no_ipv6_address_cmd
);
1667 #endif /* HAVE_IPV6 */
1669 install_element (INTERFACE_NODE
, &ip_address_label_cmd
);
1670 install_element (INTERFACE_NODE
, &no_ip_address_label_cmd
);
1671 #endif /* HAVE_NETLINK */